在提交时发送数据

时间:2012-01-20 10:54:41

标签: .net wcf form-submit

如何在wcf服务中读取提交POST时发送的数据。此数据可以是html查询字符串或json / xml数据发送到服务。

我可以发现html查询字符串可以从Request.Form中获取但是如何获取json / xml / soap数据?

代码:

public string Save(Stream RequestBody)
        {
            string Errors="";
            try
            {
                NameValueCollection PostParameters=HttpUtility.ParseQueryString(new StreamReader(RequestBody).ReadToEnd());
            //other code
            }
        }

0 个答案:

没有答案