Set-SPInfoPathWebServiceProxy
Applies to: SharePoint Server 2010
Topic Last Modified: 2010-02-11
Sets parameters for an existing SharePoint Web service application.
Set-SPInfoPathWebServiceProxy [-Identity] <SPWebServiceProxyPipeBind> [-AllowForUserForms <String>] [-AllowWebServiceProxy <String>] [-AssignmentCollection <SPAssignmentCollection>] [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]]
The Set-SPInfoPathWebServiceProxy cmdlet configures exposed parameters for an existing SharePoint Web application.
| Parameter | Required | Type | Description | ||
|---|---|---|---|---|---|
| Identity | Required | Microsoft.Office.InfoPath.Server.Cmdlet.SPWebServiceProxyPipeBind | Specifies the SharePoint Web service application proxy to update. The type must be a valid URL, in the form http://server_name; a valid name of a Web application (for example, WebApp1); a valid GUID, in the form 12345678-90ab-cdef-1234-567890bcdefgh; or an instance of a valid SPWebServiceProxy object. | ||
| AllowForUserForms | Optional | System.String | Specifies that a form opened in the Microsoft InfoPath client can use the InfoPath Forms Services Web service proxy to connect to a Web service. This parameter can be set only when AllowWebServiceProxy is set to True. The type must be one of the following: True, False The default value is False. | ||
| AllowWebServiceProxy | Optional | System.String | Specifies that browser-enabled form templates can use the InfoPath Forms Services Web service proxy to connect to a Web service. The type must be one of the following: True, False The default value is False. | ||
| AssignmentCollection | Optional | Microsoft.SharePoint.PowerShell.SPAssignmentCollection | Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.
| ||
| Confirm | Optional | System.Management.Automation.SwitchParameter | Prompts you for confirmation before executing the command. For more information, type the following command: get-help about_commonparameters | ||
| WhatIf | Optional | System.Management.Automation.SwitchParameter | Displays a message that describes the effect of the command instead of executing the command. For more information, type the following command: get-help about_commonparameters |
--------------EXAMPLE-----------------
Set-SPInfoPathWebServiceProxy -Identity "http://server_name" -AllowWebServiceProxy $true
This example sets the Web service proxy for a Web application.

Note