使用WebClient(C#.NET)时设置expect100continue的最佳方法是什么。我在下面有这个代码,我仍然看到标题中有100个继续。愚蠢的apache仍抱怨505错误。
string url = "http://aaaa.com";
ServicePointManager.Expect100Continue = false;
WebClient service = new WebClient();
service.Credentials = new NetworkCredential("username", "password");
service.Headers.Add("Content-Type","text/xml");
service.UploadStringCompleted += (sender, e) => CompleteCallback(BuildResponse(e));
service.UploadStringAsync(new Uri(url), "POST", query);
注意:如果我将上述内容放在控制台应用程序中并让它运行 - 那么我在fiddler中看不到标题。但是,我的代码嵌入在由WPF应用程序加载的用户库中。那么,在线程,初始化等方面还有更多的Expect100Continue。现在,我认为这更多是我的代码问题。
答案 0 :(得分:8)
您需要在用于访问的URI的Expect100Continue
上设置ServicePoint
属性:
var uri = new Uri("http://foo.bar.baz");
var servicePoint = ServicePointManager.FindServicePoint(uri);
servicePoint.Expect100Continue = false;
答案 1 :(得分:4)
执行此操作的唯一方法是创建覆盖。
public class ExpectContinueAware : System.Net.WebClient
{
protected override System.Net.WebRequest GetWebRequest(Uri address)
{
System.Net.WebRequest request = base.GetWebRequest(address);
if (request is System.Net.HttpWebRequest)
{
var hwr = request as System.Net.HttpWebRequest;
hwr.ServicePoint.Expect100Continue = false;
}
return request;
}
}
这很有效。
答案 2 :(得分:2)
将Expect100Continue更改为false后,尝试创建WebClient实例。或使用Webrequest
代替WebClient
答案 3 :(得分:0)
我的以下方法之一也有效,
在我的类(服务调用)的构造函数中,您可以设置System.Net.ServicePointManager.Expect100Continue = false;
然后我创建了BasicHttpBinding对象并继续,它已成功执行。