AuthScheme Property

The authentication scheme to use when connecting.

Syntax

ANSI (Cross Platform)
int GetAuthScheme();
int SetAuthScheme(int iAuthScheme); Unicode (Windows) INT GetAuthScheme();
INT SetAuthScheme(INT iAuthScheme);

Possible Values

SM_NONE(0), 
SM_SASLANONYMOUS(1),
SM_SASLPLAIN(2)
@property (nonatomic,readwrite,assign,getter=authScheme,setter=setAuthScheme:) int authScheme;
- (int)authScheme;
- (void)setAuthScheme:(int)newAuthScheme;

Possible Values

SM_NONE(0), 
SM_SASLANONYMOUS(1),
SM_SASLPLAIN(2)
#define PID_AMQP_AUTHSCHEME 1

IPWORKSMQ_EXTERNAL void* IPWORKSMQ_CALL IPWorksMQ_AMQP_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
IPWORKSMQ_EXTERNAL int IPWORKSMQ_CALL IPWorksMQ_AMQP_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

0

Remarks

This property controls what authentication scheme the class should use when connecting to the remote host.

Valid values are:

  • smNone (0)
  • smSASLAnonymous (1) - Default
  • smSASLPlain (2)

This property is not available at design time.

Data Type

Integer

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks MQ 2020 C++ Edition - Version 20.0 [Build 8155]