美好的一天。
我想做的是在客户端应用程序和asp.net页面之间交换序列化数据。
我使用以下类进行交换:
public class Send
{
public Guid guidField;
public string stringField1;
public string stringField2;
public byte[] data;
}
和
public class Receive
{
public Guid guidField;
public byte[] data;
}
在客户端,我使用以下代码发出请求:
public Receive Exchange(Send send)
{
Receive receive = new Receive();
string address = "example.org";
HttpWebRequest client = (HttpWebRequest)WebRequest.Create(address);
client.ContentType = "application/x-www-form-urlencoded";
client.Timeout = 90000;
client.Method = "POST";
client.UserAgent = "AgentMe";
try
{
Stream stream = client.GetRequestStream();
PackSend(stream, send);
stream.Flush();
stream.Close();
var response = client.GetResponse();
Stream outputStream = response.GetResponseStream();
UnpackReceive(outputStream, out receive);
}
catch (WebException ex)
{ }
return receive;
}
在服务器端,我这样做但方向相反:
protected void Page_Load(object sender, EventArgs e)
{
Stream inputStream = Request.InputStream;
Send send;
UnpackSend(inputStream, out send);
// here goes some useful work
Receive receive = Process(send);
Response.ContentType = "application/x-www-form-urlencoded";
Stream stream = Response.OutputStream;
PackReceive(stream, sent);
Response.End();
}
对于打包和解包数据,我使用Newtonsoft.Json:
static void PackSend(Stream stream, Send message)
{
BsonWriter writer = new BsonWriter(stream);
JsonSerializer serializer = new JsonSerializer();
serializer.Serialize(writer, message);
writer.Flush();
writer.Close();
}
void UnpackSend(Stream stream, out Send message)
{
BsonReader reader = new BsonReader(stream);
JsonSerializer serializer = new JsonSerializer();
message = serializer.Deserialize<Send>(reader);
}
PackReceive / UnpackReceive的代码类似。
当我使用ContentType = "application/x-www-form-urlencoded"
时,我可以进行交换,但只有public byte[] data
字段大小不超过~1200字节。如果大小较大,我会收到内部服务器错误500请求。
使用ContentType = "text/xml"
;在服务器端正确处理任何大小的“public byte [] data”字段。有用的工作已经完成,但是当服务器尝试写入响应流时,我猜错误发生并且自动请求被重复,因此客户端应用程序被卡住,使服务器具有多个类似的请求而不会抛出任何错误。
ContentType = "application/octet-stream"
- 显示与“text / xml”相同的行为。
任何人都可以建议一个正确的ContentType
字符串,或者给出一个如何正确处理这种情况的建议。谢谢。
答案 0 :(得分:0)
您的500错误消息是通用IIS而不是ASP.Net吗?如果是这样,这可能意味着数据甚至没有到达ASP.Net并且IIS正在窒息它。我的第一个猜测是你遇到了上传限制。 Here's a way to increase this in IIS 6。设置IIS后,您还必须change the value for ASP.Net。至于你的其他错误,你应该真正考虑陷阱。 .Net框架可以很好地解释出现了什么问题。