An unhandled exception occurred in the user interface.Exception Information: The server committed a protocol violation. Section=ResponseStatusLine
I was trying to start the Office SharePoint Search Service from Central Admin on our new MOSS farm and I received this error the moment I clicked on Start:
An unhandled exception occurred in the user interface.Exception Information: The server committed a protocol violation. Section=ResponseStatusLine
I had no clue what was going wrong because there were not much information in the Event log or ULS logs. After doing some research with the logs, I found these errors in the SharePoint logs:
Exception caught in Search Admin web-service proxy (client). System.Net.WebException: The server committed a protocol violation. Section=ResponseStatusLine at System.Web.Services.Protocols.WebClientProtocol.GetWebResponse(WebRequest request) at System.Web.Services.Protocols.HttpWebClientProtocol.GetWebResponse(WebRequest request) at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) at Microsoft.Office.Server.Search.Administration.SearchWebServiceProxy.RunWithSoapExceptionHandling[T](String methodName, Object[] parameters)
And
Exception Unhandled page level exception. Path: /_admin/SearchServiceInstanceSettings.aspx, Error: The server committed a protocol violation. Section=ResponseStatusLine, Details: System.Net.WebException: The server committed a protocol violation. Section=ResponseStatusLine at Microsoft.Office.Server.Search.Administration.SearchApi.RunOnServer[T](CodeToRun`1 remoteCode, CodeToRun`1 localCode, Boolean useCurrentSecurityContext, Int32 versionIn) at Microsoft.Office.Server.Search.Administration.SearchApi.RunOnServer[T](CodeToRun`1 remoteCode, CodeToRun`1 localCode) at Microsoft.Office.Server.Search.Internal.UI.SearchServiceInstanceSettings.Page_Init(Object sender, EventArgs e) at System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) at System..
After spending almost 3 hours troubleshooting I solved this error by providing Proxy Autodetect = false in web.config of the SSP web application!
An unhandled exception occurred in the user interface.Exception Information: The server committed a protocol violation. Section=ResponseStatusLine
I had no clue what was going wrong because there were not much information in the Event log or ULS logs. After doing some research with the logs, I found these errors in the SharePoint logs:
Exception caught in Search Admin web-service proxy (client). System.Net.WebException: The server committed a protocol violation. Section=ResponseStatusLine at System.Web.Services.Protocols.WebClientProtocol.GetWebResponse(WebRequest request) at System.Web.Services.Protocols.HttpWebClientProtocol.GetWebResponse(WebRequest request) at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) at Microsoft.Office.Server.Search.Administration.SearchWebServiceProxy.RunWithSoapExceptionHandling[T](String methodName, Object[] parameters)
And
Exception Unhandled page level exception. Path: /_admin/SearchServiceInstanceSettings.aspx, Error: The server committed a protocol violation. Section=ResponseStatusLine, Details: System.Net.WebException: The server committed a protocol violation. Section=ResponseStatusLine at Microsoft.Office.Server.Search.Administration.SearchApi.RunOnServer[T](CodeToRun`1 remoteCode, CodeToRun`1 localCode, Boolean useCurrentSecurityContext, Int32 versionIn) at Microsoft.Office.Server.Search.Administration.SearchApi.RunOnServer[T](CodeToRun`1 remoteCode, CodeToRun`1 localCode) at Microsoft.Office.Server.Search.Internal.UI.SearchServiceInstanceSettings.Page_Init(Object sender, EventArgs e) at System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) at System..
After spending almost 3 hours troubleshooting I solved this error by providing Proxy Autodetect = false in web.config of the SSP web application!
Comments