SecureBlackbox 2020 C++ Edition

Questions / Feedback?

SOAPVersion Property

Specifies SOAP version.

Syntax

ANSI (Cross Platform)
int GetSOAPVersion();
int SetSOAPVersion(int iSOAPVersion); Unicode (Windows) INT GetSOAPVersion();
INT SetSOAPVersion(INT iSOAPVersion);

Possible Values

SPV_AUTO(0), 
SPV_11(1),
SPV_12(2)
@property (nonatomic,readwrite,assign,getter=SOAPVersion,setter=setSOAPVersion:) int SOAPVersion;
- (int)SOAPVersion;
- (void)setSOAPVersion:(int)newSOAPVersion;

Possible Values

SPV_AUTO(0), 
SPV_11(1),
SPV_12(2)
#define PID_SOAPCLIENT_SOAPVERSION 143

SECUREBLACKBOX_EXTERNAL void* SECUREBLACKBOX_CALL SecureBlackbox_SOAPClient_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
SECUREBLACKBOX_EXTERNAL int SECUREBLACKBOX_CALL SecureBlackbox_SOAPClient_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

0

Remarks

This property specifies the version of the SOAP protocol. This SOAP version will be used to create a SOAP message (if needed) and to communicate with the service.

spvAuto0The SOAP version is detected from the SOAP message provided. If the input does not consitute a SOAP message, version 1.2 will be used.
spv111SOAP version 1.1
spv122SOAP version 1.2

Data Type

Integer

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