ServiceDescriptionImportStyle Enumeration
Specifies whether the import is made to the server or to the client computer.
Assembly: System.Web.Services (in System.Web.Services.dll)
An import made to the client computer generates a proxy class with synchronous and asynchronous methods to invoke each method within an XML Web service. A server import, on the other hand, generates an abstract class with abstract members, which you must override to provide the implementation you need.
Imports System Imports System.Web.Services.Description Namespace MyServiceDescription Class MyImporter Public Shared Sub Main() Try Dim myServiceDescription As ServiceDescription = _ ServiceDescription.Read("Sample_vb.wsdl") Dim myImporter As New ServiceDescriptionImporter() myImporter.ProtocolName = "Soap" myImporter.AddServiceDescription(myServiceDescription, "", "") Dim myStyle As ServiceDescriptionImportStyle = myImporter.Style Console.WriteLine("Import style: " + myStyle.ToString()) Catch e As Exception Console.WriteLine("Following exception was thrown: " + e.ToString()) End Try End Sub 'Main End Class 'MyImporter End Namespace 'MyServiceDescription
#using <mscorlib.dll>
#using <System.Web.Services.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::Web::Services::Description;
int main()
{
try
{
ServiceDescription* myServiceDescription =
ServiceDescription::Read(S"Sample_cpp.wsdl");
ServiceDescriptionImporter* myImporter = new ServiceDescriptionImporter();
myImporter->ProtocolName = S"Soap";
myImporter->AddServiceDescription(myServiceDescription, S"", S"");
ServiceDescriptionImportStyle myStyle = myImporter->Style;
Console::WriteLine(S"Import style: {0}",__box( myStyle));
}
catch (Exception* e)
{
Console::WriteLine(S"Following exception was thrown: {0}", e);
}
}
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.