<div class="post-text" itemprop="description">
I get this error when a SOAP web service is called from .NET 2.0 exe:
the request failed with http status 417 expectation failed
So, I tried 3 solutions:
Added the following code just before the webservice call:
System.Net.ServicePointManager.Expect100Continue = false;
2. Edited app.config to add a <system.net> node as:
<?xml version="1.0"?>
<configuration>
< Go to the complete details ...