...
Warning |
---|
Sending this header will result in the error: "The remote server returned an error: (417) Expectation Failed."e. |
You should be aware that if using the .Net Framework you will need to set the relevant property in the ServicePointManager which then prevents the "Expect" header from being added:
System.Net.ServicePointManager.Expect100Continue = false;
Enabling HTTP compression
...