This documentation is archived and is not being maintained.

Service::Ports Property

Gets the collection of Port instances contained in the Service.

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

public:
property PortCollection^ Ports {
	PortCollection^ get ();
}

#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 );
   }

}
#using <mscorlib.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 = new Port();
   myPort->Name = PortName;
   myPort->Binding = new XmlQualifiedName(BindingName,targetNamespace);

   // Create a SoapAddress extensibility element to add to the port.
   SoapAddressBinding* mySoapAddressBinding = new SoapAddressBinding();
   mySoapAddressBinding->Location =
      S"http://localhost/Service_Class/MathService_CS.asmx";
   myPort->Extensions->Add(mySoapAddressBinding);
   return myPort;
}

int main()
{
   try
   {
      ServiceDescription* myServiceDescription =
         ServiceDescription::Read(S"MathService_CS.wsdl");
      ServiceCollection* myServiceCollection =
         myServiceDescription->Services;

      int noOfServices = myServiceCollection->Count;
      Console::WriteLine(S"\nTotal number of services: {0}", __box(noOfServices));

      // Get a reference to the service.
      Service* myOldService = myServiceCollection->Item[0];
      Console::WriteLine(S"No. of Ports in the Service{0}", __box(myServiceCollection->Item[0]->Ports->Count));
      Console::WriteLine(S"These are the ports in the service:");
      for(int i = 0; i < myOldService->Ports->Count; i++)
         Console::WriteLine(S"Port name: {0}", myOldService->Ports->Item[i]->Name);
      Console::WriteLine(S"Service name: {0}", myOldService->Name);

      Service*  myService = new Service();
      myService->Name = S"MathService";

      // Add the ports to the newly created service.
      for(int i = 0; i < myOldService->Ports->Count; i++)
      {
         String* PortName = myServiceCollection->Item[0]->Ports->Item[i]->Name;
         String* BindingName =
            myServiceCollection->Item[0]->Ports->Item[i]->Binding->Name;
         myService->Ports->Add(CreatePort(PortName, BindingName,
            myServiceDescription->TargetNamespace));
      }

      Console::WriteLine(S"Newly created ports -");
      for(int i = 0; i < myService->Ports->Count; i++)
         Console::WriteLine(S"Port Name: {0}", myOldService->Ports->Item[i]->Name);

      // Add the extensions to the newly created service.
      int noOfExtensions = myOldService->Extensions->Count;
      Console::WriteLine(S"No. of extensions: {0}", __box(noOfExtensions));
      if (noOfExtensions > 0)
      {
         for(int i = 0; i <myOldService->Ports->Count; i++)
            myService->Extensions->Add(
            myServiceCollection->Item[0]->Extensions->Item[i]);
      }

      // Remove the service from the collection.
      myServiceCollection->Remove(myOldService);

      // Add the newly created service.
      myServiceCollection->Add(myService);
      myServiceDescription->Write(S"MathService_New.wsdl");
   }
   catch(Exception* e)
   {
      Console::WriteLine(S"Exception: {0}", e->Message);
   }
}

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.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Show: