The request failed with HTTP status 417: Expectation failed.

Published:
Updated:
When using WebServices and calling some Web Methods, you may come across to this exception:
The request failed with HTTP status 417: Expectation failed.
When Expect 100-Continue property is set to true (this is actually set within part of the .Net framework, which makes this a difficult problem to overcome.  You have to override this in more than one place), this 417 error occurs when the proxy server doesn't support 100-Continue.

In the case of expect 100-Continue, the client will expect to receive a 100-Continue response from the server to indicate that the client should send the data to be posted. This mechanism allows clients to avoid sending large amounts of data over the network when the server, based on the request headers, intends to reject the request.

The Expect 100-Continue behavior is fully described in IETF RFC 2616 Section 10.1.1.

You can also read more about it in MSDN.

To workaround this exception you can do a simple thing: Disable expect 100 continue.

So you may ask how to disable expect 100 continue?

Warning: When you disable Expect 100-Continues and your application sends a large amount of data on the network, if for any reason the server rejects your request, you have to re-send the entire data again, this may cause some extra traffic in your network. Also multiple calls to a server will take longer, since each call will wait until the prior call's response is received.

It is easy, here are two alternative ways:

1) We need to have this line of code before making any web requests.

 
System.Net.ServicePointManager.Expect100Continue = false;

Open in new window


2) Add these lines to the application's configuration file (between  and ):

 
<system.net>
                       <settings>
                        <servicePointManager expect100Continue="false" />
                       </settings>
                      </system.net>

Open in new window


While this workaround is nice, I think a better long term solution is to upgrade/replace the proxy server to handle 100-continue calls.

So far in this short tip we've learned what is Expect 100, how it is caused and how to workaround this expectation.
0
6,856 Views

Comments (0)

Have a question about something in this article? You can receive help directly from the article author. Sign up for a free trial to get started.