0

我正在使用 Protobuf-net 尝试将序列化对象发送到我在另一个项目中运行的 web 应用程序。该Serializer.Serialize<T>()方法需要一个 Stream(写入)和 T 的实例(在这种情况下,我设置为使用 protobuf-net 的一些对象的列表)

我该怎么做呢?我需要写入文件还是可以以某种方式将流作为 postdata 发送?您可以在下面看到我使用字符串作为 postdata。

我的执行发布方法

public static void ExecuteHttpWebPostRequest(Uri uri,string postdata, int requestTimeOut, ref string responseContent)
    {
        if (string.IsNullOrEmpty(uri.Host))// || !IsConnectedToInternet(uri))
            return;
        var httpWebReq = (HttpWebRequest)WebRequest.Create(uri);
        var bytePostData = Encoding.UTF8.GetBytes(postdata);
        httpWebReq.Timeout = requestTimeOut*1000;
        httpWebReq.Method = "POST";
        httpWebReq.ContentLength = bytePostData.Length;
        //httpWebReq.ContentType = "text/xml;charset=utf-8";
        httpWebReq.ContentType = "application/octet-stream";
        //httpWebReq.TransferEncoding=
        //httpWebReq.ContentType = "application/xml";
        //httpWebReq.Accept = "application/xml";
        var dataStream = httpWebReq.GetRequestStream();

        dataStream.Write(bytePostData, 0, bytePostData.Length);
        dataStream.Close();
        var httpWebResponse = (HttpWebResponse)httpWebReq.GetResponse();

        // Get the stream associated with the response.
        var receiveStream = httpWebResponse.GetResponseStream();

        // Pipes the stream to a higher level stream reader with the required encoding format. 
        var readStream = new StreamReader(receiveStream,Encoding.Default);
        responseContent = readStream.ReadToEnd();
        httpWebResponse.Close();

    }
4

1 回答 1

1

您可以序列化到请求

Serializer.Serialize(dataStream, obj);

同样,receiveStream如果您愿意,您可以从 反序列化。

但是请注意,protobuf 数据不是文本,不应被视为文本 - 如果您尝试这样做,将会发生非常糟糕的事情。

于 2013-06-18T13:54:44.683 回答