SecureBlackbox 2020 C++ Edition

Questions / Feedback?

SOAPResponseType Property

The type of the response.

Syntax

ANSI (Cross Platform)
int GetSOAPResponseType();

Unicode (Windows)
INT GetSOAPResponseType();

Possible Values

SRT_UNKNOWN(0), 
SRT_BINARY(1),
SRT_XMLDOCUMENT(2),
SRT_SOAPMESSAGE(3)
@property (nonatomic,readonly,assign,getter=SOAPResponseType) int SOAPResponseType;
- (int)SOAPResponseType;

Possible Values

SRT_UNKNOWN(0), 
SRT_BINARY(1),
SRT_XMLDOCUMENT(2),
SRT_SOAPMESSAGE(3)
#define PID_SOAPCLIENT_SOAPRESPONSETYPE 142

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

Default Value

0

Remarks

Use this property to learn about the type (format) of the response provided by the SOAP service.

srtUnknown0It was not possible to identify the response type. Either connection error has occurred or the service returned an unexpected HTTP status code.
srtBinary1The SOAP service has returned binary data.
srtXMLDocument2The SOAP service has returned an XML document.
srtSOAPMessage3The SOAP service has returned a SOAP message.

This property is read-only.

Data Type

Integer

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