New-WebServiceProxy - Powershell 2.0 CmdLet
Microsoft Windows PowerShell is a command-line shell and scripting tool based on the Microsoft .NET Framework. It is designed for system administrators, engineers and developers to control and automate the administration of Windows and applications.
More than hundred command-line tools (so called "cmdlets") can be used to perform system administration tasks and Windows Management Instrumentation (WMI). These cmdlets are easy to use, with standard naming conventions and common parameters, and standard tools for piping, sorting, filtering, and formatting data and objects.
New-WebServiceProxy
Short description Creates a Web service proxy object that lets you use and manage the Web service in Windows PowerShell. Syntax New-WebServiceProxy [-URI] <Uri> [[-Class] <string>] [[-Namespace] <string>] [<CommonParameters>] New-WebServiceProxy [-URI] <Uri> [[-Class] <string>] [[-Namespace] <string>] [-Credential <PSCredential>] [<CommonP arameters>] New-WebServiceProxy [-URI] <Uri> [[-Class] <string>] [[-Namespace] <string>] [-UseDefaultCredential] [<CommonParame ters>] Description The New-WebServiceProxy cmdlet lets you use a Web service in Windows PowerShell. The cmdlet connects to a Web servi ce and creates a Web service proxy object in Windows PowerShell. You can use the proxy object to manage the Web ser vice. A Web service is an XML-based program that exchanges data over a network, particularly over the Internet. The Micro soft .NET Framework provides Web service proxy objects that represent the Web service as a .NET Framework object.