将Json Data作为webrequest的查询字符串发布

时间:2013-03-07 07:31:10

标签: asp.net-mvc json web-services c#-4.0 httpwebrequest

在我的场景中,我的API处理json读取它

if (context.Request.Files.Count > 0)   
       {
            jsonData = context.Request.Params["key"]; 
       }

从我的应用程序如何在不使用json作为查询字符串参数的情况下向此api发送Web请求。 Sine Json很冗长,我知道查询字符串是有限的。

对于android和ios这个api工作正常。

我试图将它添加到标题中。但是徒劳无功。

我如何添加它以便“jsonData = context.Request.Params [”key“];”将得到我的json。 我的请求格式在这里。

            urlS="http://abc.ashx?Key="+jsonRequestS;
            string boundary = "----------------------------" + DateTime.Now.Ticks.ToString("x");
            var webRequest1 = (HttpWebRequest)WebRequest.Create(urlS);
            webRequest1.Method = "POST";
            webRequest1.KeepAlive = false;
            webRequest1.ContentType =string.Format("multipart/form-data; boundary={0}", boundary);//                
            Stream postDataStream1 = handler.GetPostStream(boundary,jsonRequestS);               // Writes boundary and files to memory stream.

            webRequest1.ContentLength = postDataStream1.Length;
            Stream reqStream1 = webRequest1.GetRequestStream();

            postDataStream1.Position = 0;

            var bufferBytes = new byte[postDataStream1.Length];
            postDataStream1.Read(bufferBytes, 0, bufferBytes.Length);
            reqStream1.Write(bufferBytes, 0, bufferBytes.Length);

            postDataStream1.Close();
            reqStream1.Close();

            var sReader = new StreamReader(webRequest1.GetResponse().GetResponseStream());//here Am getting the error.
            string resultS = sReader.ReadToEnd();

提前致谢。

1 个答案:

答案 0 :(得分:0)

感谢您的回复。 我找到了解决这个问题的方法。

将Json写入请求流,标题为

 postDataStream.Write(boundarybytes, 0, boundarybytes.Length);
            string header = string.Format("Content-Disposition: form-data; name=\"Key\"\r\n\r\n");
            headerbytes = Encoding.Default.GetBytes(header);
            postDataStream.Write(headerbytes, 0, headerbytes.Length);
            headerbytes = Encoding.Default.GetBytes(jsonRequestS);//writing json request.
            postDataStream.Write(headerbytes, 0, headerbytes.Length);

在服务器端,它将在语句

中得到很好的阅读
 jsonData = context.Request.Params["key"];