Today, I configured the forms service based on SharePoint 2010 on my laptop, but encountered some problems, that is, after the form template is uploaded, it cannot be displayed after I click Create. The error message is as follows:
The general meaning of this question is that the status service may not be enabled.
To solve this problem, I refer to the followingArticle
Http://www.nanmu.net/sharepoint2010/sharepoint-2010-english/Lists/Posts/Post.aspx? Id = 20
Run the following commands in red and solve the problem. The excerpt is as follows for reference by friends who have the same problem.
The form cannot be rendered. This may be due to a misconfiguration of the Microsoft SharePoint Server State service. For more information, contact your server administrator
You may receive this error when trying to publish a page in SharePoint you 2010
The form cannot be rendered. This may be due to a misconfiguration of the Microsoft SharePoint Server State service. For more information, contact your server administrator.
Solution:
You woshould need to install the 'state service' via the Configuration Wizard in central administration or via powershell.
To configure the state service by using Windows powershell:
1. Click Start, Administrative Tools, Windows powershell modules.
2. In Windows powershell, Type$ Serviceapp = new-spstateserviceapplication-name "State Service"
3. Create a State Service database and associate it with a service application, by typingNew-spstateservicedatabase-name "stateservicedatabase"-serviceapplication $ serviceapp
4. Create a State service application proxy and associate it with the service application by typingNew-spstateserviceapplicationproxy-name "State Service"-serviceapplication $ serviceapp-defaultproxygroup
(You can use another proxy group if necessary by changing the defaultproxygroup parameter)
State Service after startup