J
Jerry Spence1
I am getting a protocol violation error from an IP product and after some
searching I found the following fix:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<!-- User application and configured property settings go here.-->
<!-- Example: <add key="settingName" value="settingValue"/> -->
<add key="Button1.Enabled" value="True" />
</appSettings>
<system.net>
<settings>
<httpWebRequest useUnsafeHeaderParsing="true"/>
</settings>
</system.net>
</configuration>
However, I can't find what you do with this file and what to call it. Google
searches seem to offer some alternatives - none of which work. So far, I
have called it app.config and placed it in the project root directory. Some
help would be appreciated.
-Jerry
searching I found the following fix:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<!-- User application and configured property settings go here.-->
<!-- Example: <add key="settingName" value="settingValue"/> -->
<add key="Button1.Enabled" value="True" />
</appSettings>
<system.net>
<settings>
<httpWebRequest useUnsafeHeaderParsing="true"/>
</settings>
</system.net>
</configuration>
However, I can't find what you do with this file and what to call it. Google
searches seem to offer some alternatives - none of which work. So far, I
have called it app.config and placed it in the project root directory. Some
help would be appreciated.
-Jerry