ServiceDescription Class
Provides a means of creating and formatting a valid Web Services Description Language (WSDL) document file, complete with appropriate namespaces, elements, and attributes, for describing an XML Web service. This class cannot be inherited.
Assembly: System.Web.Services (in System.Web.Services.dll)
Instances of this class can be created with either the new keyword or the static Read method, which parses a WSDL file and assigns its values to appropriate members of the class.
WSDL is an XML-based language for describing XML Web services. The ServiceDescription class corresponds to the root element, definitions, of a WSDL file. For more information about WSDL, see the specification at http://www.w3.org/TR/wsdl/.
The following example shows how to create an instance of the ServiceDescription class.
// Obtain the ServiceDescription of existing Wsdl. ServiceDescription^ myDescription = ServiceDescription::Read( "MyWsdl_CS.wsdl" ); // Remove the Binding from the Binding Collection of ServiceDescription. BindingCollection^ myBindingCollection = myDescription->Bindings; myBindingCollection->Remove( myBindingCollection[ 0 ] ); // Form a new Binding. Binding^ myBinding = gcnew Binding; myBinding->Name = "Service1Soap"; XmlQualifiedName^ myXmlQualifiedName = gcnew XmlQualifiedName( "s0:Service1Soap" ); myBinding->Type = myXmlQualifiedName; SoapBinding^ mySoapBinding = gcnew SoapBinding; mySoapBinding->Transport = "http://schemas.xmlsoap.org/soap/http"; mySoapBinding->Style = SoapBindingStyle::Document; OperationBinding^ addOperationBinding = CreateOperationBinding( "Add", myDescription->TargetNamespace ); myBinding->Operations->Add( addOperationBinding ); myBinding->Extensions->Add( mySoapBinding ); // Add the Binding to the ServiceDescription. myDescription->Bindings->Add( myBinding ); myDescription->Write( "MyOutWsdl.wsdl" );
// Obtain the ServiceDescription of existing Wsdl. ServiceDescription* myDescription = ServiceDescription::Read(S"MyWsdl_CS.wsdl"); // Remove the Binding from the Binding Collection of ServiceDescription. BindingCollection* myBindingCollection = myDescription->Bindings; myBindingCollection->Remove(myBindingCollection->Item[0]); // Form a new Binding. Binding* myBinding = new Binding(); myBinding->Name = S"Service1Soap"; XmlQualifiedName* myXmlQualifiedName = new XmlQualifiedName(S"s0:Service1Soap"); myBinding->Type = myXmlQualifiedName; SoapBinding* mySoapBinding = new SoapBinding(); mySoapBinding->Transport = S"http://schemas.xmlsoap.org/soap/http"; mySoapBinding->Style = SoapBindingStyle::Document; OperationBinding* addOperationBinding = CreateOperationBinding(S"Add",myDescription->TargetNamespace); myBinding->Operations->Add(addOperationBinding); myBinding->Extensions->Add(mySoapBinding); // Add the Binding to the ServiceDescription. myDescription->Bindings->Add(myBinding); myDescription->Write(S"MyOutWsdl.wsdl");
System.Web.Services.Description::DocumentableItem
System.Web.Services.Description::NamedItem
System.Web.Services.Description::ServiceDescription
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.