InfoPath Forms Services forms cannot be filled out in a Web browser because no State Service connection is configured
April 7th, 2011- Posted By: Jonathan Adams
- 1 Comment
Detail: InfoPath Forms Services is not functional on the following Web applications because there is no service connection configured for the State Service.
Solution: A State Service Application has to be created and associated with the active web applications. This will be done via PowerShell as follows:
- Create a new state service application:
- New-SPStateServiceApplication -Name “Shared State Service Application”
- Create a new state service application database:
- New-SPStateServiceDatabase -Name “SP_Shared_StateService” -ServiceApplication “Shared State Service Application”
- Create a new state service application proxy and add it to default application proxy group:
- New-SPStateServiceApplicationProxy -Name “Shared State Service Application” -ServiceApplication “Shared State Service Application” –DefaultProxyGroup
- Note: Do not add the -DefaultProxyGroup parameter if you do not want the application proxy added to the default proxy group.
Thomas
January 29, 2014 at 11:55PMThis worked perfectly. Thanks for sharing the solution.