ServiceDescription.Write Method (String)
.NET Framework 2.0
Writes out the ServiceDescription as a Web Services Description Language (WSDL) file to the specified path.
Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)
Assembly: System.Web.Services (in system.web.services.dll)
// Read a ServiceDescription from existing WSDL. ServiceDescription^ myServiceDescription = ServiceDescription::Read( "Input_CS.wsdl" ); myServiceDescription->TargetNamespace = "http://tempuri.org/"; // Get the ServiceCollection of the ServiceDescription. ServiceCollection^ myServiceCollection = myServiceDescription->Services; // Remove the Service at index 0 of the collection. myServiceCollection->Remove( myServiceDescription->Services[ 0 ] ); // Build a new Service. Service^ myService = gcnew Service; myService->Name = "MathService"; XmlQualifiedName^ myXmlQualifiedName = gcnew XmlQualifiedName( "s0:MathServiceSoap" ); // Build a new Port for SOAP. Port^ mySoapPort = gcnew Port; mySoapPort->Name = "MathServiceSoap"; mySoapPort->Binding = myXmlQualifiedName; SoapAddressBinding^ mySoapAddressBinding = gcnew SoapAddressBinding; mySoapAddressBinding->Location = "http://localhost/ServiceCollection_Item/AddSub_CS.asmx"; mySoapPort->Extensions->Add( mySoapAddressBinding ); // Build a new Port for HTTP-GET. XmlQualifiedName^ myXmlQualifiedName2 = gcnew XmlQualifiedName( "s0:MathServiceHttpGet" ); Port^ myHttpGetPort = gcnew Port; myHttpGetPort->Name = "MathServiceHttpGet"; myHttpGetPort->Binding = myXmlQualifiedName2; HttpAddressBinding^ myHttpAddressBinding = gcnew HttpAddressBinding; myHttpAddressBinding->Location = "http://localhost/ServiceCollection_Item/AddSub_CS.asmx"; myHttpGetPort->Extensions->Add( myHttpAddressBinding ); // Add the ports to the service. myService->Ports->Add( myHttpGetPort ); myService->Ports->Add( mySoapPort ); // Add the service to the ServiceCollection. myServiceCollection->Add( myService ); // Write to a new WSDL file. myServiceDescription->Write( "output.wsdl" );
// Read a ServiceDescription from existing WSDL.
ServiceDescription myServiceDescription = ServiceDescription.
Read("Input_JSL.wsdl");
myServiceDescription.set_TargetNamespace("http://tempuri.org/");
// Get the ServiceCollection of the ServiceDescription.
ServiceCollection myServiceCollection = myServiceDescription.
get_Services();
// Remove the Service at index 0 of the collection.
myServiceCollection.Remove(myServiceDescription.get_Services().
get_Item(0));
// Build a new Service.
Service myService = new Service();
myService.set_Name("MathService");
XmlQualifiedName myXmlQualifiedName = new XmlQualifiedName(
"s0:MathServiceSoap");
// Build a new Port for SOAP.
Port mySoapPort = new Port();
mySoapPort.set_Name("MathServiceSoap");
mySoapPort.set_Binding(myXmlQualifiedName);
SoapAddressBinding mySoapAddressBinding = new SoapAddressBinding();
mySoapAddressBinding.set_Location("http://localhost/"
+ "ServiceCollection_Item/AddSub_JSL.asmx");
mySoapPort.get_Extensions().Add(mySoapAddressBinding);
// Build a new Port for HTTP-GET.
XmlQualifiedName myXmlQualifiedName2 = new XmlQualifiedName(
"s0:MathServiceHttpGet");
Port myHttpGetPort = new Port();
myHttpGetPort.set_Name("MathServiceHttpGet");
myHttpGetPort.set_Binding(myXmlQualifiedName2);
HttpAddressBinding myHttpAddressBinding = new HttpAddressBinding();
myHttpAddressBinding.set_Location("http://localhost/"
+ "ServiceCollection_Item/AddSub_JSL.asmx");
myHttpGetPort.get_Extensions().Add(myHttpAddressBinding);
// Add the ports to the service.
myService.get_Ports().Add(myHttpGetPort);
myService.get_Ports().Add(mySoapPort);
// Add the service to the ServiceCollection.
myServiceCollection.Add(myService);
// Write to a new WSDL file.
myServiceDescription.Write("output.wsdl");
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: