System::Web::Services::Protocols::Details_SoapException Class Reference

Inherits System::Details_SystemException.

Public Member Functions

String get_Actor ()
 
System::SharedPtr< Xml::XmlQualifiedNameget_Code ()
 
System::SharedPtr< Xml::XmlNodeget_Detail ()
 
String get_Lang ()
 
String get_Role ()
 
System::SharedPtr< SoapFaultSubCode > get_SubCode ()
 
String get_Node ()
 
 Details_SoapException ()
 Constructs a new instance. More...
 
 MEMBER_FUNCTION_MAKE_OBJECT (Details_SoapException, CODEPORTING_ARGS(), CODEPORTING_ARGS())
 
 Details_SoapException (String message, System::SharedPtr< Xml::XmlQualifiedName > code)
 
 MEMBER_FUNCTION_MAKE_OBJECT (Details_SoapException, CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code), CODEPORTING_ARGS(message, code))
 
 Details_SoapException (String message, System::SharedPtr< Xml::XmlQualifiedName > code, Exception innerException)
 
 MEMBER_FUNCTION_MAKE_OBJECT (Details_SoapException, CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, Exception innerException),)
 
 Details_SoapException (String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor)
 
 MEMBER_FUNCTION_MAKE_OBJECT (Details_SoapException, CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor), CODEPORTING_ARGS(message, code, actor))
 
 Details_SoapException (String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, Exception innerException)
 
 MEMBER_FUNCTION_MAKE_OBJECT (Details_SoapException, CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, Exception innerException),)
 
 Details_SoapException (String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, System::SharedPtr< Xml::XmlNode > detail)
 
 MEMBER_FUNCTION_MAKE_OBJECT (Details_SoapException, CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, System::SharedPtr< Xml::XmlNode > detail),)
 
 Details_SoapException (String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, System::SharedPtr< Xml::XmlNode > detail, Exception innerException)
 
 MEMBER_FUNCTION_MAKE_OBJECT (Details_SoapException, CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, System::SharedPtr< Xml::XmlNode > detail, Exception innerException),)
 
 Details_SoapException (String message, System::SharedPtr< Xml::XmlQualifiedName > code, System::SharedPtr< SoapFaultSubCode > subcode)
 
 MEMBER_FUNCTION_MAKE_OBJECT (Details_SoapException, CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, System::SharedPtr< SoapFaultSubCode > subcode),)
 
 Details_SoapException (String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, String role, System::SharedPtr< Xml::XmlNode > detail, System::SharedPtr< SoapFaultSubCode > subcode, Exception innerException)
 
 MEMBER_FUNCTION_MAKE_OBJECT (Details_SoapException, CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, String role, System::SharedPtr< Xml::XmlNode > detail, System::SharedPtr< SoapFaultSubCode > subcode, Exception innerException), CODEPORTING_ARGS(message, code, actor, role, detail, subcode, innerException))
 
 Details_SoapException (String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, String role, String lang, System::SharedPtr< Xml::XmlNode > detail, System::SharedPtr< SoapFaultSubCode > subcode, Exception innerException)
 
 MEMBER_FUNCTION_MAKE_OBJECT (Details_SoapException, CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, String role, String lang, System::SharedPtr< Xml::XmlNode > detail, System::SharedPtr< SoapFaultSubCode > subcode, Exception innerException), CODEPORTING_ARGS(message, code, actor, role, lang, detail, subcode, innerException))
 

Static Public Member Functions

static bool IsClientFaultCode (System::SharedPtr< Xml::XmlQualifiedName > code)
 
static bool IsMustUnderstandFaultCode (System::SharedPtr< Xml::XmlQualifiedName > code)
 
static bool IsServerFaultCode (System::SharedPtr< Xml::XmlQualifiedName > code)
 
static bool IsVersionMismatchFaultCode (System::SharedPtr< Xml::XmlQualifiedName > code)
 

Static Public Attributes

static System::SharedPtr< Xml::XmlQualifiedNameClientFaultCode
 
static System::SharedPtr< Xml::XmlQualifiedNameDetailElementName
 A namespace qualified local name in format 'namespace:localname'. More...
 
static System::SharedPtr< Xml::XmlQualifiedNameMustUnderstandFaultCode
 A SOAP fault code that indicates if the SOAP element marked by the 'MustUnderstand' attribute is not processed. More...
 
static System::SharedPtr< Xml::XmlQualifiedNameServerFaultCode
 A SOAP fault code that represents an error occurred on the server. More...
 
static System::SharedPtr< Xml::XmlQualifiedNameVersionMismatchFaultCode
 A SOAP fault code that represents an invalid namespace. More...
 

Detailed Description

Represents the exception thrown when method is called over SOAP and an error occurs. Never create instances of this class manually. Use the SoapException class instead. Never wrap the SoapException class instances into System::SmartPtr.

Constructor & Destructor Documentation

◆ Details_SoapException() [1/10]

System::Web::Services::Protocols::Details_SoapException::Details_SoapException ( )

Constructs a new instance.

◆ Details_SoapException() [2/10]

System::Web::Services::Protocols::Details_SoapException::Details_SoapException ( String  message,
System::SharedPtr< Xml::XmlQualifiedName code 
)

Constructs a new instance.

Parameters
messageThe exception message.
codeThe exception code.

◆ Details_SoapException() [3/10]

System::Web::Services::Protocols::Details_SoapException::Details_SoapException ( String  message,
System::SharedPtr< Xml::XmlQualifiedName code,
Exception  innerException 
)

Constructs a new instance.

Parameters
messageThe exception message.
codeThe exception code.
innerExceptionThe inner exception.

◆ Details_SoapException() [4/10]

System::Web::Services::Protocols::Details_SoapException::Details_SoapException ( String  message,
System::SharedPtr< Xml::XmlQualifiedName code,
String  actor 
)

Constructs a new instance.

Parameters
messageThe exception message.
codeThe exception code.
actorThe code piece where the exception is thrown.

◆ Details_SoapException() [5/10]

System::Web::Services::Protocols::Details_SoapException::Details_SoapException ( String  message,
System::SharedPtr< Xml::XmlQualifiedName code,
String  actor,
Exception  innerException 
)

Constructs a new instance.

Parameters
messageThe exception message.
codeThe exception code.
actorThe code piece where the exception is thrown.
innerExceptionThe inner exception.

◆ Details_SoapException() [6/10]

System::Web::Services::Protocols::Details_SoapException::Details_SoapException ( String  message,
System::SharedPtr< Xml::XmlQualifiedName code,
String  actor,
System::SharedPtr< Xml::XmlNode detail 
)

Constructs a new instance.

Parameters
messageThe exception message.
codeThe exception code.
actorThe code piece where the exception is thrown.
detailDetails about the thrown exception.

◆ Details_SoapException() [7/10]

System::Web::Services::Protocols::Details_SoapException::Details_SoapException ( String  message,
System::SharedPtr< Xml::XmlQualifiedName code,
String  actor,
System::SharedPtr< Xml::XmlNode detail,
Exception  innerException 
)

Constructs a new instance.

Parameters
messageThe exception message.
codeThe exception code.
actorThe code piece where the exception is thrown.
detailDetails about the thrown exception.
innerExceptionThe inner exception.

◆ Details_SoapException() [8/10]

System::Web::Services::Protocols::Details_SoapException::Details_SoapException ( String  message,
System::SharedPtr< Xml::XmlQualifiedName code,
System::SharedPtr< SoapFaultSubCode >  subcode 
)

Constructs a new instance.

Parameters
messageThe exception message.
codeThe exception code.
subcodeOptional information from the 'subcode' XML element.

◆ Details_SoapException() [9/10]

System::Web::Services::Protocols::Details_SoapException::Details_SoapException ( String  message,
System::SharedPtr< Xml::XmlQualifiedName code,
String  actor,
String  role,
System::SharedPtr< Xml::XmlNode detail,
System::SharedPtr< SoapFaultSubCode >  subcode,
Exception  innerException 
)

Constructs a new instance.

Parameters
messageThe exception message.
codeThe exception code.
actorThe code piece where the exception is thrown.
roleThe role of the XML web service that throws the exception.
detailDetails about the thrown exception.
subcodeOptional information from the 'subcode' XML element.
innerExceptionThe inner exception.

◆ Details_SoapException() [10/10]

System::Web::Services::Protocols::Details_SoapException::Details_SoapException ( String  message,
System::SharedPtr< Xml::XmlQualifiedName code,
String  actor,
String  role,
String  lang,
System::SharedPtr< Xml::XmlNode detail,
System::SharedPtr< SoapFaultSubCode >  subcode,
Exception  innerException 
)

Constructs a new instance.

Parameters
messageThe exception message.
codeThe exception code.
actorThe code piece where the exception is thrown.
roleThe role of the XML web service that throws the exception.
langThe language, which is used to localize exception properties.
detailDetails about the thrown exception.
subcodeOptional information from the 'subcode' XML element.
innerExceptionThe inner exception.

Member Function Documentation

◆ get_Actor()

String System::Web::Services::Protocols::Details_SoapException::get_Actor ( )

Returns the code piece where the exception is thrown when SOAP version 1.1 is used.

Returns
The code piece where the exception is thrown.

◆ get_Code()

System::SharedPtr<Xml::XmlQualifiedName> System::Web::Services::Protocols::Details_SoapException::get_Code ( )

Returns a namespace qualified local name in format 'namespace:localname' that specifies the SOAP fault code.

Returns
A namespace qualified local name in format 'namespace:localname' that specifies the SOAP fault code.

◆ get_Detail()

System::SharedPtr<Xml::XmlNode> System::Web::Services::Protocols::Details_SoapException::get_Detail ( )

Returns details about the thrown exception.

Returns
Details about the thrown exception.

◆ get_Lang()

String System::Web::Services::Protocols::Details_SoapException::get_Lang ( )

Returns the language, which is used to localize exception properties.

Returns
The language, which is used to localize exception properties.

◆ get_Node()

String System::Web::Services::Protocols::Details_SoapException::get_Node ( )

Returns the code piece where the exception is thrown when SOAP version 1.2 is used.

Returns
The code piece where the exception is thrown.

◆ get_Role()

String System::Web::Services::Protocols::Details_SoapException::get_Role ( )

Returns the role of the XML web service that throws the exception.

Returns
The role of the XML web service that throws the exception.

◆ get_SubCode()

System::SharedPtr<SoapFaultSubCode> System::Web::Services::Protocols::Details_SoapException::get_SubCode ( )

Returns optional information from the 'subcode' XML element.

Returns
Optional information from the 'subcode' XML element.

◆ IsClientFaultCode()

static bool System::Web::Services::Protocols::Details_SoapException::IsClientFaultCode ( System::SharedPtr< Xml::XmlQualifiedName code)
static

Checks if the specified code is equal to the 'Client' SOAP fault code.

Parameters
codeThe SOAP fault code to check.
Returns
True when the specified code is equal to the 'Client' SOAP fault code, otherwise false.

◆ IsMustUnderstandFaultCode()

static bool System::Web::Services::Protocols::Details_SoapException::IsMustUnderstandFaultCode ( System::SharedPtr< Xml::XmlQualifiedName code)
static

Checks if the specified code is equal to the 'MustUnderstand' SOAP fault code.

Parameters
codeThe SOAP fault code to check.
Returns
True when the specified code is equal to the 'MustUnderstand' SOAP fault code, otherwise false.

◆ IsServerFaultCode()

static bool System::Web::Services::Protocols::Details_SoapException::IsServerFaultCode ( System::SharedPtr< Xml::XmlQualifiedName code)
static

Checks if the specified code is equal to the 'Server' SOAP fault code.

Parameters
codeThe SOAP fault code to check.
Returns
True when the specified code is equal to the 'Server' SOAP fault code, otherwise false.

◆ IsVersionMismatchFaultCode()

static bool System::Web::Services::Protocols::Details_SoapException::IsVersionMismatchFaultCode ( System::SharedPtr< Xml::XmlQualifiedName code)
static

Checks if the specified code is equal to the 'VersionMismatch' SOAP fault code.

Parameters
codeThe SOAP fault code to check.
Returns
True when the specified code is equal to the 'VersionMismatch' SOAP fault code, otherwise false.

◆ MEMBER_FUNCTION_MAKE_OBJECT() [1/10]

System::Web::Services::Protocols::Details_SoapException::MEMBER_FUNCTION_MAKE_OBJECT ( Details_SoapException  ,
CODEPORTING_ARGS()  ,
CODEPORTING_ARGS()   
)

◆ MEMBER_FUNCTION_MAKE_OBJECT() [2/10]

System::Web::Services::Protocols::Details_SoapException::MEMBER_FUNCTION_MAKE_OBJECT ( Details_SoapException  ,
CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code)  ,
CODEPORTING_ARGS(message, code)   
)

◆ MEMBER_FUNCTION_MAKE_OBJECT() [3/10]

System::Web::Services::Protocols::Details_SoapException::MEMBER_FUNCTION_MAKE_OBJECT ( Details_SoapException  ,
CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, Exception innerException)   
)

◆ MEMBER_FUNCTION_MAKE_OBJECT() [4/10]

System::Web::Services::Protocols::Details_SoapException::MEMBER_FUNCTION_MAKE_OBJECT ( Details_SoapException  ,
CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor)  ,
CODEPORTING_ARGS(message, code, actor)   
)

◆ MEMBER_FUNCTION_MAKE_OBJECT() [5/10]

System::Web::Services::Protocols::Details_SoapException::MEMBER_FUNCTION_MAKE_OBJECT ( Details_SoapException  ,
CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, Exception innerException)   
)

◆ MEMBER_FUNCTION_MAKE_OBJECT() [6/10]

System::Web::Services::Protocols::Details_SoapException::MEMBER_FUNCTION_MAKE_OBJECT ( Details_SoapException  ,
CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, System::SharedPtr< Xml::XmlNode > detail)   
)

◆ MEMBER_FUNCTION_MAKE_OBJECT() [7/10]

System::Web::Services::Protocols::Details_SoapException::MEMBER_FUNCTION_MAKE_OBJECT ( Details_SoapException  ,
CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, System::SharedPtr< Xml::XmlNode > detail, Exception innerException)   
)

◆ MEMBER_FUNCTION_MAKE_OBJECT() [8/10]

System::Web::Services::Protocols::Details_SoapException::MEMBER_FUNCTION_MAKE_OBJECT ( Details_SoapException  ,
CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, System::SharedPtr< SoapFaultSubCode > subcode)   
)

◆ MEMBER_FUNCTION_MAKE_OBJECT() [9/10]

System::Web::Services::Protocols::Details_SoapException::MEMBER_FUNCTION_MAKE_OBJECT ( Details_SoapException  ,
CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, String role, System::SharedPtr< Xml::XmlNode > detail, System::SharedPtr< SoapFaultSubCode > subcode, Exception innerException)  ,
CODEPORTING_ARGS(message, code, actor, role, detail, subcode, innerException)   
)

◆ MEMBER_FUNCTION_MAKE_OBJECT() [10/10]

System::Web::Services::Protocols::Details_SoapException::MEMBER_FUNCTION_MAKE_OBJECT ( Details_SoapException  ,
CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, String actor, String role, String lang, System::SharedPtr< Xml::XmlNode > detail, System::SharedPtr< SoapFaultSubCode > subcode, Exception innerException)  ,
CODEPORTING_ARGS(message, code, actor, role, lang, detail, subcode, innerException)   
)

Member Data Documentation

◆ ClientFaultCode

System::SharedPtr<Xml::XmlQualifiedName> System::Web::Services::Protocols::Details_SoapException::ClientFaultCode
static

A SOAP fault code that represents a client call that is formatted incorrectly or doesn't contain required information.

◆ DetailElementName

System::SharedPtr<Xml::XmlQualifiedName> System::Web::Services::Protocols::Details_SoapException::DetailElementName
static

A namespace qualified local name in format 'namespace:localname'.

◆ MustUnderstandFaultCode

System::SharedPtr<Xml::XmlQualifiedName> System::Web::Services::Protocols::Details_SoapException::MustUnderstandFaultCode
static

A SOAP fault code that indicates if the SOAP element marked by the 'MustUnderstand' attribute is not processed.

◆ ServerFaultCode

System::SharedPtr<Xml::XmlQualifiedName> System::Web::Services::Protocols::Details_SoapException::ServerFaultCode
static

A SOAP fault code that represents an error occurred on the server.

◆ VersionMismatchFaultCode

System::SharedPtr<Xml::XmlQualifiedName> System::Web::Services::Protocols::Details_SoapException::VersionMismatchFaultCode
static

A SOAP fault code that represents an invalid namespace.