- 1 minutes to read
Release Notes
Troubleshooting the Nodinite Web Service Monitoring Agent
If you have any issues that you can not solve, contact our Support or send us an email at support@nodinite.com
Cannot get a response from the Web Service
This can happen if the response has a bad response, for example how a CRLF
is dealt with.
Error: The server committed a protocol violation. Section=ResponseHeader Detail=CR must be followed by LF”.
- If possible, verify the logic and make sure the code in the Web Service actually returns the correct data.
- Test with the following accept header:
Accept: text/html, application/xhtml+xml, */*
- If nothing else works, change the
Nodinite.MonitoringAgent.WebServicesHost.exe.config
<system.net>
<settings>
<httpWebRequest useUnsafeHeaderParsing="true" />
</settings>
</system.net>
Restart the Service after applying the change