Service.Ports Property
.NET Framework 3.0
Gets the collection of Port instances contained in the Service.
Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)
Assembly: System.Web.Services (in system.web.services.dll)
#using <System.Xml.dll> #using <System.Web.Services.dll> #using <System.dll> using namespace System; using namespace System::Web::Services::Description; using namespace System::Xml; Port^ CreatePort( String^ PortName, String^ BindingName, String^ targetNamespace ) { Port^ myPort = gcnew Port; myPort->Name = PortName; myPort->Binding = gcnew XmlQualifiedName( BindingName,targetNamespace ); // Create a SoapAddress extensibility element to add to the port. SoapAddressBinding^ mySoapAddressBinding = gcnew SoapAddressBinding; mySoapAddressBinding->Location = "http://localhost/Service_Class/MathService_CS.asmx"; myPort->Extensions->Add( mySoapAddressBinding ); return myPort; } int main() { try { ServiceDescription^ myServiceDescription = ServiceDescription::Read( "MathService_CS.wsdl" ); ServiceCollection^ myServiceCollection = myServiceDescription->Services; int noOfServices = myServiceCollection->Count; Console::WriteLine( "\nTotal number of services: {0}", noOfServices ); // Get a reference to the service. Service^ myOldService = myServiceCollection[ 0 ]; Console::WriteLine( "No. of Ports in the Service{0}", myServiceCollection[ 0 ]->Ports->Count ); Console::WriteLine( "These are the ports in the service:" ); for ( int i = 0; i < myOldService->Ports->Count; i++ ) Console::WriteLine( "Port name: {0}", myOldService->Ports[ i ]->Name ); Console::WriteLine( "Service name: {0}", myOldService->Name ); Service^ myService = gcnew Service; myService->Name = "MathService"; // Add the ports to the newly created service. for ( int i = 0; i < myOldService->Ports->Count; i++ ) { String^ PortName = myServiceCollection[ 0 ]->Ports[ i ]->Name; String^ BindingName = myServiceCollection[ 0 ]->Ports[ i ]->Binding->Name; myService->Ports->Add( CreatePort( PortName, BindingName, myServiceDescription->TargetNamespace ) ); } Console::WriteLine( "Newly created ports -" ); for ( int i = 0; i < myService->Ports->Count; i++ ) Console::WriteLine( "Port Name: {0}", myOldService->Ports[ i ]->Name ); // Add the extensions to the newly created service. int noOfExtensions = myOldService->Extensions->Count; Console::WriteLine( "No. of extensions: {0}", noOfExtensions ); if ( noOfExtensions > 0 ) { for ( int i = 0; i < myOldService->Ports->Count; i++ ) myService->Extensions->Add( myServiceCollection[ 0 ]->Extensions[ i ] ); } // Remove the service from the collection. myServiceCollection->Remove( myOldService ); // Add the newly created service. myServiceCollection->Add( myService ); myServiceDescription->Write( "MathService_New.wsdl" ); } catch ( Exception^ e ) { Console::WriteLine( "Exception: {0}", e->Message ); } }
import System.*;
import System.Web.Services.Description.*;
import System.Xml.*;
class MyServiceClass
{
public static void main(String[] args)
{
try {
ServiceDescription myServiceDescription =
ServiceDescription.Read("MathService_JSL.wsdl");
ServiceCollection myServiceCollection =
myServiceDescription.get_Services();
int noOfServices = myServiceCollection.get_Count();
Console.WriteLine("\nTotal number of services: " + noOfServices);
// Get a reference to the service.
Service myOldService = myServiceCollection.get_Item(0);
Console.WriteLine("No. of Ports in the Service"
+ myServiceCollection.get_Item(0).get_Ports().get_Count());
Console.WriteLine("These are the ports in the service:");
for (int i = 0; i < myOldService.get_Ports().get_Count(); i++) {
Console.WriteLine("Port name: "
+ myOldService.get_Ports().get_Item(i).get_Name());
}
Console.WriteLine("Service name: " + myOldService.get_Name());
Service myService = new Service();
myService.set_Name("MathService");
// Add the ports to the newly created service.
for (int i = 0; i < myOldService.get_Ports().get_Count(); i++) {
String portName = myServiceCollection.get_Item(0).get_Ports().
get_Item(i).get_Name();
String bindingName = myServiceCollection.get_Item(0).
get_Ports().get_Item(i).get_Binding().get_Name();
myService.get_Ports().Add(CreatePort(portName, bindingName,
myServiceDescription.get_TargetNamespace()));
}
Console.WriteLine("Newly created ports -");
for (int i = 0; i < myService.get_Ports().get_Count(); i++) {
Console.WriteLine("Port Name: " + myOldService.get_Ports().
get_Item(i).get_Name());
}
// Add the extensions to the newly created service.
int noOfExtensions = myOldService.get_Extensions().get_Count();
Console.WriteLine("No. of extensions: " + noOfExtensions);
if (noOfExtensions > 0) {
for (int i = 0; i < myOldService.get_Ports().get_Count(); i++) {
myService.get_Extensions().Add(myServiceCollection.
get_Item(0).get_Extensions().get_Item(i));
}
}
// Remove the service from the collection.
myServiceCollection.Remove(myOldService);
// Add the newly created service.
myServiceCollection.Add(myService);
myServiceDescription.Write("MathService_New.wsdl");
}
catch (System.Exception e) {
Console.WriteLine("Exception: " + e.get_Message());
}
} //main
public static Port CreatePort(String portName, String bindingName,
String targetNamespace)
{
Port myPort = new Port();
myPort.set_Name(portName);
myPort.set_Binding(new XmlQualifiedName(bindingName, targetNamespace));
// Create a SoapAddress extensibility element to add to the port.
SoapAddressBinding mySoapAddressBinding = new SoapAddressBinding();
mySoapAddressBinding.set_Location(
"http://localhost/Service_Class/MathService_JSL.asmx");
myPort.get_Extensions().Add(mySoapAddressBinding);
return myPort;
} //CreatePort
} //MyServiceClass
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: