有人能帮我为这个基于rest的Web服务手动构建一个http请求吗
本文关键字:构建 请求 http 一个 服务 rest Web | 更新日期: 2023-09-27 18:00:09
我有一个基于REST的WCF web服务;
合同是:
[OperationContract]
[WebInvoke(Method = "POST", BodyStyle = WebMessageBodyStyle.Wrapped, ResponseFormat = WebMessageFormat.Xml)]
string EchoWithPost(string message);
消息是:
public string EchoWithPost(string s)
{
return "ECHO with POST : You said " + s;
}
我使用web通道工厂通过POST获得响应,它起作用了。我使用wireshark来窃听消息,我可以看到一些重要的东西:
1) 该xml已发送2) 内容类型
由此,我构建了以下请求逻辑:
//5) manually post to the REST service
//Create a request using a URL that can receive a post.
WebRequest request = WebRequest.Create(urlOfService + "/rest/EchoWithPOST");
// Set the Method property of the request to POST.
request.Method = "POST";
// Create POST data and convert it to a byte array.
string postData = "<EchoWithPost xmlns="http://tempuri.org"><message>Hello</message><EchoWithPost>";
byte[] byteArray = Encoding.UTF8.GetBytes(postData);
// Set the ContentType property of the WebRequest.
request.ContentType = "application/xml";
// Set the ContentLength property of the WebRequest.
request.ContentLength = byteArray.Length;
// Get the request stream.
Stream dataStream = request.GetRequestStream();
// Write the data to the request stream.
dataStream.Write(byteArray, 0, byteArray.Length);
// Close the Stream object.
dataStream.Close();
// Get the response.
WebResponse response = request.GetResponse();
// Display the status.
Console.WriteLine(((HttpWebResponse)response).StatusDescription);
// Get the stream containing content returned by the server.
dataStream = response.GetResponseStream();
// Open the stream using a StreamReader for easy access.
StreamReader reader = new StreamReader(dataStream);
// Read the content.
string responseFromServer = reader.ReadToEnd();
// Display the content.
Console.WriteLine(responseFromServer);
// Clean up the streams.
reader.Close();
dataStream.Close();
response.Close();
然而,当我击中写着:
数据流=回答GetResponseStream();
我得到以下错误:
"远程服务器返回错误:(400)错误请求"
有人能帮我做些什么吗?因为我需要告诉人们如何手动创建POST请求来与这个基于REST的服务交互。
任何非常感谢的帮助,我真的不知道我还能尝试什么。
我做了一些小的更改,所以我只发布整个内容。希望它对你有用。此外,我没有添加任何反序列化,我认为只要通过HTTP400错误,就可以解决这个问题。
SoapUI是一个帮助您调试这些情况的好工具。只需设置一个"WebTestCase",就可以创建自己的POST请求并监视来回的数据。
-Vito
接口:
[OperationContract]
[WebInvoke(UriTemplate = "EchoWithPost", Method="POST", BodyStyle = WebMessageBodyStyle.Wrapped, RequestFormat = WebMessageFormat.Xml, ResponseFormat = WebMessageFormat.Xml)]
string EchoWithPost(string message);
服务:
public string EchoWithPost(string s)
{
return "ECHO with POST : You said " + s;
}
客户:
string urlOfService = "http://somewhere.com/RestService.svc/EchoWithPost";
string postData = "<EchoWithPost xmlns='"http://tempuri.org/'"><message>Vito</message></EchoWithPost>";
byte[] byteArray = Encoding.UTF8.GetBytes(postData);
WebRequest request = WebRequest.Create(urlOfService);
request.Method = "POST";
request.ContentType = "application/xml;";
request.ContentLength = byteArray.Length;
Stream dataStream = request.GetRequestStream();
dataStream.Write(byteArray, 0, byteArray.Length);
dataStream.Close();
WebResponse webResponse = request.GetResponse();
// Output raw string result
string rawStringResult = new StreamReader(webResponse.GetResponseStream()).ReadToEnd();
HttpContext.Current.Response.Write("'r'n" + rawStringResult);
web.config:
如果内容类型表明您正在发送XML,那么您不应该转义XML以将其发送到服务,至少不应该转义消息的包装;如果您在内容(文本)中有一些字符需要转义,那么您需要对它们进行转义。将postData更改为下面的行,它应该可以工作。
string postData = "<EchoWithPost xmlns='"http://tempuri.org'"><message>Hello & goodbye</message></EchoWithPost>";
下载此工具http://www.fiddler2.com/fiddler2/
尝试调用rest方法并查看fiddler中的原始数据(请求-响应),您将获得关于错误
嗯,Peter2k,我想说,如果不运行您的服务,可能需要一些时间来重建它。您正在使用WCF 4.0 REST项目吗?如果是这样的话,它会有一个帮助页面,显示请求数据的样子。