InfoPath Farm Services gave me an error message, when tried using Browser based forms:
"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."
How to Create State Service Application in SharePoint 2013?
State service stores temporary data between requests. When you use SharePoint form configuration wizard, it creates State Service application automatically. State service can be created via PowerShell, as there is no provision in Central Admin. There are SharePoint features such as InfoPath Forms Services, Workflows are depending on state service.
Configure the State Service using PowerShell
"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."
How to Create State Service Application in SharePoint 2013?
State service stores temporary data between requests. When you use SharePoint form configuration wizard, it creates State Service application automatically. State service can be created via PowerShell, as there is no provision in Central Admin. There are SharePoint features such as InfoPath Forms Services, Workflows are depending on state service.
Configure the State Service using PowerShell
Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
#Create New State Service application
$StateServiceApp = New-SPStateServiceApplication -Name "State Service Application"
#Create Database for State Service App
New-SPStateServiceDatabase -Name "SP13_State_Service" -ServiceApplication $StateServiceApp
#Create Proxy for State Service
New-SPStateServiceApplicationProxy -Name "State Service" -ServiceApplication $StateServiceApp -DefaultProxyGroup