HTTP POST到WCF服务

时间:2011-09-09 04:16:06

标签: c# wcf

我正在尝试通过HTTP POST调用WCF服务,但该服务返回400错误。我不知道这是由于OperationContract还是我正在进行POST的方式。这就是合同在服务器端的样子:

[OperationContract, WebInvoke(BodyStyle = WebMessageBodyStyle.Wrapped)]
Stream Download(string username, int fileid);

以下是我试图通过测试控制台应用程序调用服务的方法:

HttpWebRequest webRequest = WebRequest.Create("http://localhost:8000/File/Download") as   
HttpWebRequest;
webRequest.Method = "POST";
webRequest.ContentType = "application/x-www-form-urlencoded";
byte[] bytes = Encoding.ASCII.GetBytes("username=test&fileid=1");
Stream os = null;
webRequest.ContentLength = bytes.Length;
os = webRequest.GetRequestStream();
os.Write(bytes, 0, bytes.Length);
os.Close();
WebResponse webResponse = webRequest.GetResponse();

编辑:我应该明确表示我的目标是测试服务,而不是让它接受原始HTTP POST。如果有更好的方法可以测试服务,请随时分享。

2 个答案:

答案 0 :(得分:6)

这是一个非常简单的过程,但不容易访问或直接进行(不幸的是WCF的许多方面都是如此)请查看this帖子以获得澄清:

服务合同:

[ServiceContract]
public interface ISampleService
{
    [OperationContract]
    [WebInvoke(UriTemplate = "invoke")]
    void DoWork(Stream input);
}

HTML来源:

<form method="post" action="Service.svc/invoke">
    <label for="firstName">First Name</label>: <input type="text" name="firstName" value="" />
    <br /><br />
    <label for="lastName">Last Name</label>: <input type="text" name="lastName" value="" />
    <p><input type="submit" /></p>
</form>

代码背后:

public void DoWork(Stream input)
{
    StreamReader sr = new StreamReader(input);
    string s = sr.ReadToEnd();
    sr.Dispose();
    NameValueCollection qs = HttpUtility.ParseQueryString(s);
    string firstName = qs["firstName"];
    string lastName = qs["lastName"];
}

答案 1 :(得分:2)

如果您能够使用其他内容类型,则可以使用json,它将在您的示例中使用。

更改

webRequest.ContentType = "application/x-www-form-urlencoded";
byte[] bytes = Encoding.ASCII.GetBytes("username=test&fileid=1");

webRequest.ContentType = "application/json";
byte[] bytes = Encoding.ASCII.GetBytes("{\"username\":\"test\",\"fileid\":1");

如果您必须使用application / x-www-form-urlencoded内容类型,请在Google wcf application/x-www-form-urlencoded上查看几个帖子以及描述解决方法的其他SO问题。