This documentation is archived and is not being maintained.

SoapFaultBinding Class

Represents an extensibility element added to a FaultBinding within an XML Web service.

For a list of all members of this type, see SoapFaultBinding Members.

System.Object
   System.Web.Services.Description.ServiceDescriptionFormatExtension
      System.Web.Services.Description.SoapFaultBinding

[Visual Basic]
Public Class SoapFaultBinding
   Inherits ServiceDescriptionFormatExtension
[C#]
public class SoapFaultBinding : ServiceDescriptionFormatExtension
[C++]
public __gc class SoapFaultBinding : public
   ServiceDescriptionFormatExtension
[JScript]
public class SoapFaultBinding extends
   ServiceDescriptionFormatExtension

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Remarks

This class specifies the contents of any SOAP error message returned.

For more information about specifying protocols for XML Web services, see Building XML Web Services Using ASP.NET. For more information about Web Services Description Language (WSDL), see the specification at http://www.w3.org/TR/wsdl/.

Example

[Visual Basic] 
Imports System
Imports System.Web.Services.Description

Public Class MySoapFaultBindingSample
   
   Public Shared Sub Main()
      Try
         ' Input wsdl file.
         Dim myInputWsdlFile As String = "SoapFaultBindingInput_vb.wsdl"
         ' Output wsdl file.
         Dim myOutputWsdlFile As String = "SoapFaultBindingOutput_vb.wsdl"
         ' Initialize an instance of a 'ServiceDescription' object.
         Dim myServiceDescription As ServiceDescription = ServiceDescription.Read(myInputWsdlFile)
         ' Get a SOAP binding object with binding name "MyService1Soap". 
         Dim myBinding As Binding = myServiceDescription.Bindings("MyService1Soap")
         ' Create a new instance of 'SoapFaultBinding' class.
         Dim mySoapFaultBinding As New SoapFaultBinding()
         ' Encode fault message using rules specified by 'Encoding' property.
         mySoapFaultBinding.Use = SoapBindingUse.Encoded
         ' Set the URI representing the encoding style.
         mySoapFaultBinding.Encoding = "http://tempuri.org/stockquote"
         ' Set the URI representing the location of the specification
         ' for encoding of content not defined by 'Encoding' property'.
         mySoapFaultBinding.Namespace = "http://tempuri.org/stockquote"
         ' Create a new instance of 'FaultBinding'.
         Dim myFaultBinding As New FaultBinding()
         myFaultBinding.Name = "AddFaultbinding"
         myFaultBinding.Extensions.Add(mySoapFaultBinding)
         ' Get existing 'OperationBinding' object.
         Dim myOperationBinding As OperationBinding = myBinding.Operations(0)
         myOperationBinding.Faults.Add(myFaultBinding)
         ' Create a new wsdl file.
         myServiceDescription.Write(myOutputWsdlFile)
         Console.WriteLine("The new wsdl file created is :" + myOutputWsdlFile)
         Console.WriteLine("Proxy could be created using command : wsdl /language:VB " + myOutputWsdlFile)
      Catch e As Exception
         Console.WriteLine("Error occured : " + e.Message.ToString())
      End Try
   End Sub 'Main
End Class 'MySoapFaultBindingSample

[C#] 
using System;
using System.Web.Services.Description;
public class MySoapFaultBindingSample
{
   public static void Main()
   {
      try
      {
         // Input wsdl file.
         string myInputWsdlFile="SoapFaultBindingInput_cs.wsdl";
         // Output wsdl file.
         string myOutputWsdlFile="SoapFaultBindingOutput_cs.wsdl";
         // Initialize an instance of a 'ServiceDescription' object.
         ServiceDescription myServiceDescription =
            ServiceDescription.Read(myInputWsdlFile);
         // Get a SOAP binding object with binding name "MyService1Soap". 
         Binding myBinding=myServiceDescription.Bindings["MyService1Soap"];
         // Create a new instance of 'SoapFaultBinding' class.
         SoapFaultBinding mySoapFaultBinding=new SoapFaultBinding();
         // Encode fault message using rules specified by 'Encoding' property.
         mySoapFaultBinding.Use=SoapBindingUse.Encoded;
         // Set the URI representing the encoding style.
         mySoapFaultBinding.Encoding="http://tempuri.org/stockquote";
         // Set the URI representing the location of the specification
         // for encoding of content not defined by 'Encoding' property'.
         mySoapFaultBinding.Namespace="http://tempuri.org/stockquote";
         // Create a new instance of 'FaultBinding'.
         FaultBinding myFaultBinding=new FaultBinding();
         myFaultBinding.Name="AddFaultbinding";
         myFaultBinding.Extensions.Add(mySoapFaultBinding);
         // Get existing 'OperationBinding' object.
         OperationBinding myOperationBinding=myBinding.Operations[0];
         myOperationBinding.Faults.Add(myFaultBinding);
         // Create a new wsdl file.
         myServiceDescription.Write(myOutputWsdlFile);
         Console.WriteLine("The new wsdl file created is :"
                           +myOutputWsdlFile);
         Console.WriteLine("Proxy could be created using command : wsdl "
                             + myOutputWsdlFile);
      }
      catch(Exception e)
      {
         Console.WriteLine("Error occured : "+e.Message);
      }
   }
}

[C++] 
#using <mscorlib.dll>
#using <System.Web.Services.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::Web::Services::Description;

int main() 
{
   try 
   {
      // Input wsdl file.
      String* myInputWsdlFile=S"SoapFaultBindingInput_cpp.wsdl";
      // Output wsdl file.
      String* myOutputWsdlFile=S"SoapFaultBindingOutput_cpp.wsdl";
      // Initialize an instance of a 'ServiceDescription' object.
      ServiceDescription* myServiceDescription =
         ServiceDescription::Read(myInputWsdlFile);
      // Get a SOAP binding object with binding name S"MyService1Soap".
      Binding* myBinding = myServiceDescription->Bindings->Item[S"MyService1Soap"];
      // Create a new instance of 'SoapFaultBinding' class.
      SoapFaultBinding* mySoapFaultBinding = new SoapFaultBinding();
      // Encode fault message using rules specified by 'Encoding' property.
      mySoapFaultBinding->Use=SoapBindingUse::Encoded;
      // Set the URI representing the encoding style.
      mySoapFaultBinding->Encoding=S"http://tempuri.org/stockquote";
      // Set the URI representing the location of the specification
      // for encoding of content not defined by 'Encoding' property'.
      mySoapFaultBinding->Namespace=S"http://tempuri.org/stockquote";
      // Create a new instance of 'FaultBinding'.
      FaultBinding* myFaultBinding = new FaultBinding();
      myFaultBinding->Name=S"AddFaultbinding";
      myFaultBinding->Extensions->Add(mySoapFaultBinding);
      // Get existing 'OperationBinding' object.
      OperationBinding* myOperationBinding=myBinding->Operations->Item[0];
      myOperationBinding->Faults->Add(myFaultBinding);
      // Create a new wsdl file.
      myServiceDescription->Write(myOutputWsdlFile);
      Console::WriteLine(S"The new wsdl file created is : {0}", myOutputWsdlFile);
      Console::WriteLine(S"Proxy could be created using command : wsdl {0}", myOutputWsdlFile);
   } 
   catch (Exception* e) 
   {
      Console::WriteLine(S"Error occured : {0}", e->Message);
   }
}

[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button Language Filter in the upper-left corner of the page.

Requirements

Namespace: System.Web.Services.Description

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: System.Web.Services (in System.Web.Services.dll)

See Also

SoapFaultBinding Members | System.Web.Services.Description Namespace

Show: