我正在使用Microsoft Stack:Windows Server 2008 R2 / IIS 7.5; .NET 4.0
在localhost上设置服务,客户端无故障地调用操作。设置服务(最初作为Post然后作为Get)我从.NET获得以下错误(下面的方法)。如果我通过fiddler直接拨打电话,一切正常,(RAW)标题如下:
HTTP / 1.1 200好的 缓存控制:私有 内容长度:19854411 Content-Type:application / xml;字符集= utf-8的 服务器:Microsoft-IIS / 7.5 X-AspNet-Version:4.0.30319 X-Powered-By:ASP.NET
如果我通过控制台应用或Windows服务拨打电话,我会收到以下错误消息 “远程服务器返回错误:< 411> Length Required。”
我有一个Web服务,应该在完成一些工作后返回一个zip文件
[OperationContract]
[WebInvoke(UriTemplate = "/GetFiles/{profileLocationId}/{batchSize}", Method = "GET", RequestFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Bare)]
public byte[] ProfileImagesByProfileId(string profileLocationId, string batchSize)
{
// var watch = new Stopwatch();
// watch.Start();
try
{
long id = 0;
long.TryParse(profileLocationId, out id);
int size = 200;
int.TryParse(batchSize, out size);
var profileRoot = ConfigurationManager.AppSettings["ProfileImageRootDirectory"];
var fileType = ConfigurationManager.AppSettings["ProfileImageDefaultFileType"];
var packer = new ImagePackager(profileRoot, fileType);
if (profileLocationId != null)
{
var stream = packer.CompressImages(id, size);
return stream;
}
}
catch (Exception ex)
{
return new byte[0];
}
return new byte[0];
}
}
===========================
static void TimerElapsed(object sender, ElapsedEventArgs e)
{
var id = GetLastProfileId();
// var uri = string.Format("http://{0}/TwitterService/ProfileImages/{1}/{2}", _ipAddress, id, _batchsize);
var uri = string.Format("http://{0}/Twitter_api/TwitterService/ProfileImages/{1}/{2}", _ipAddress, id, _batchsize);
GetProfileImagesFromService(uri);
}
private static void GetProfileImagesFromService(string uri)
{
try
{
Console.WriteLine("Process started: {0}", DateTime.Now.ToLongTimeString());
var request = WebRequest.Create(uri);
request.Method = "GET";
request.Timeout = 600000;
using (var response = (HttpWebResponse)request.GetResponse())
{
Console.WriteLine(response.StatusDescription);
var dataStream = response.GetResponseStream();
var reader = new StreamReader(dataStream, Encoding.UTF8);
// var responseFromServer = reader.ReadToEnd();
var fileName = string.Format(@"{0}\{1:yyMMddhhmmss}.zip", _targetDirectory, DateTime.UtcNow);
// File.WriteAllText(fileName, responseFromServer);
// var xml = XDocument.Parse(responseFromServer);
var xml = XDocument.Load(reader);
var base64 = xml.Root.Value.ToCharArray();
var byteArray = Convert.FromBase64CharArray(base64, 0, base64.Length);
File.WriteAllBytes(fileName, byteArray);
Console.WriteLine("GetProfile cycle ended: {0}", DateTime.Now.ToLongTimeString());
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
非常感谢任何指导。
提前谢谢。
答案 0 :(得分:4)
HTTP错误代码411表示
服务器拒绝接受没有定义Content-Length的请求。如果客户端在请求消息中添加包含消息正文长度的有效Content-Length头字段,则客户端可以重复该请求。
因此,如果您在没有任何正文的情况下调用HTTP POST方法,那么只需在标题中的请求对象中添加Content-Length:0
。