Inherits System::Details_SystemException.
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::XmlQualifiedName > | ClientFaultCode |
static System::SharedPtr< Xml::XmlQualifiedName > | DetailElementName |
A namespace qualified local name in format 'namespace:localname'. More... | |
static System::SharedPtr< Xml::XmlQualifiedName > | MustUnderstandFaultCode |
A SOAP fault code that indicates if the SOAP element marked by the 'MustUnderstand' attribute is not processed. More... | |
static System::SharedPtr< Xml::XmlQualifiedName > | ServerFaultCode |
A SOAP fault code that represents an error occurred on the server. More... | |
static System::SharedPtr< Xml::XmlQualifiedName > | VersionMismatchFaultCode |
A SOAP fault code that represents an invalid namespace. More... | |
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.
System::Web::Services::Protocols::Details_SoapException::Details_SoapException | ( | ) |
Constructs a new instance.
System::Web::Services::Protocols::Details_SoapException::Details_SoapException | ( | String | message, |
System::SharedPtr< Xml::XmlQualifiedName > | code | ||
) |
Constructs a new instance.
message | The exception message. |
code | The exception code. |
System::Web::Services::Protocols::Details_SoapException::Details_SoapException | ( | String | message, |
System::SharedPtr< Xml::XmlQualifiedName > | code, | ||
Exception | innerException | ||
) |
Constructs a new instance.
message | The exception message. |
code | The exception code. |
innerException | The inner exception. |
System::Web::Services::Protocols::Details_SoapException::Details_SoapException | ( | String | message, |
System::SharedPtr< Xml::XmlQualifiedName > | code, | ||
String | actor | ||
) |
Constructs a new instance.
message | The exception message. |
code | The exception code. |
actor | The code piece where the exception is thrown. |
System::Web::Services::Protocols::Details_SoapException::Details_SoapException | ( | String | message, |
System::SharedPtr< Xml::XmlQualifiedName > | code, | ||
String | actor, | ||
Exception | innerException | ||
) |
Constructs a new instance.
message | The exception message. |
code | The exception code. |
actor | The code piece where the exception is thrown. |
innerException | The inner exception. |
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.
message | The exception message. |
code | The exception code. |
actor | The code piece where the exception is thrown. |
detail | Details about the thrown exception. |
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.
message | The exception message. |
code | The exception code. |
actor | The code piece where the exception is thrown. |
detail | Details about the thrown exception. |
innerException | The inner exception. |
System::Web::Services::Protocols::Details_SoapException::Details_SoapException | ( | String | message, |
System::SharedPtr< Xml::XmlQualifiedName > | code, | ||
System::SharedPtr< SoapFaultSubCode > | subcode | ||
) |
Constructs a new instance.
message | The exception message. |
code | The exception code. |
subcode | Optional information from the 'subcode' XML element. |
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.
message | The exception message. |
code | The exception code. |
actor | The code piece where the exception is thrown. |
role | The role of the XML web service that throws the exception. |
detail | Details about the thrown exception. |
subcode | Optional information from the 'subcode' XML element. |
innerException | The inner exception. |
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.
message | The exception message. |
code | The exception code. |
actor | The code piece where the exception is thrown. |
role | The role of the XML web service that throws the exception. |
lang | The language, which is used to localize exception properties. |
detail | Details about the thrown exception. |
subcode | Optional information from the 'subcode' XML element. |
innerException | The inner exception. |
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.
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.
System::SharedPtr<Xml::XmlNode> System::Web::Services::Protocols::Details_SoapException::get_Detail | ( | ) |
Returns details about the thrown exception.
String System::Web::Services::Protocols::Details_SoapException::get_Lang | ( | ) |
Returns the language, which is used to localize exception properties.
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.
String System::Web::Services::Protocols::Details_SoapException::get_Role | ( | ) |
Returns the role of the XML web service that throws the exception.
System::SharedPtr<SoapFaultSubCode> System::Web::Services::Protocols::Details_SoapException::get_SubCode | ( | ) |
Returns optional information from the 'subcode' XML element.
|
static |
Checks if the specified code is equal to the 'Client' SOAP fault code.
code | The SOAP fault code to check. |
|
static |
Checks if the specified code is equal to the 'MustUnderstand' SOAP fault code.
code | The SOAP fault code to check. |
|
static |
Checks if the specified code is equal to the 'Server' SOAP fault code.
code | The SOAP fault code to check. |
|
static |
Checks if the specified code is equal to the 'VersionMismatch' SOAP fault code.
code | The SOAP fault code to check. |
System::Web::Services::Protocols::Details_SoapException::MEMBER_FUNCTION_MAKE_OBJECT | ( | Details_SoapException | , |
CODEPORTING_ARGS() | , | ||
CODEPORTING_ARGS() | |||
) |
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) | |||
) |
System::Web::Services::Protocols::Details_SoapException::MEMBER_FUNCTION_MAKE_OBJECT | ( | Details_SoapException | , |
CODEPORTING_ARGS(String message, System::SharedPtr< Xml::XmlQualifiedName > code, Exception innerException) | |||
) |
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) | |||
) |
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) | |||
) |
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) | |||
) |
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) | |||
) |
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) | |||
) |
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) | |||
) |
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) | |||
) |
|
static |
A SOAP fault code that represents a client call that is formatted incorrectly or doesn't contain required information.
|
static |
A namespace qualified local name in format 'namespace:localname'.
|
static |
A SOAP fault code that indicates if the SOAP element marked by the 'MustUnderstand' attribute is not processed.
|
static |
A SOAP fault code that represents an error occurred on the server.
|
static |
A SOAP fault code that represents an invalid namespace.