Forcing a webservice to use HTTP 1.0

This can be done by adding a *.config file in the same directory as the executable. The name should be the same as the application, but with .config added at the end, i.e. “weatherclient.exe” would have the config file “weatherclient.exe.config”

The contents of the *.config file should be;

<configuration>

<system.net>

<settings>

            <servicePointManager expect100Continue="false" />

</settings>

</system.net>

</configuration>