What is the best way to set expect100continue when using WebClient(C#.NET). I have this code below, I still see 100 continue in the header. Stupid apache still complains with 50
You need to set the Expect100Continue property on the ServicePoint used for the URI you're accessing:
Expect100Continue
ServicePoint
var uri = new Uri("http://foo.bar.baz"); var servicePoint = ServicePointManager.FindServicePoint(uri); servicePoint.Expect100Continue = false;