WCF Restful post服务返回了错误请求(400)。

3

我已经尝试了几天去调用WCF RESTful服务,但是一直遇到“bad request”的错误,请帮我解决。

这是我的配置文件:

<system.serviceModel>

<bindings>
  <webHttpBinding>
    <binding name="state" allowCookies="true">
      <security mode="None"></security>

    </binding>
  </webHttpBinding>
</bindings>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
<behaviors>
  <serviceBehaviors>
    <behavior name="ServiceBehaviour">
      <serviceMetadata httpGetEnabled="True"/>
      <serviceDebug includeExceptionDetailInFaults="True"/>
    </behavior>
  </serviceBehaviors>
  <endpointBehaviors>
    <behavior name="web">
      <webHttp/>
    </behavior>
  </endpointBehaviors>
</behaviors>
<services>
  <service behaviorConfiguration="ServiceBehaviour" name="RESTFUL_DEMO.Web.services.Calc">
    <endpoint address="" bindingConfiguration="state" binding="webHttpBinding" name="Http" contract="RESTFUL_DEMO.Web.services.ICalc"/>
    <endpoint address="abcd" binding="wsHttpBinding" name="wsHttp" contract="RESTFUL_DEMO.Web.services.ICalc"/>

    <endpoint address="mex" binding="mexHttpBinding" name="MEX" contract="IMetadataExchange"/>

  </service>
</services>

我的服务契约和数据契约接口如下:

[ServiceContract(SessionMode = SessionMode.Allowed)]
[XmlSerializerFormat]
public interface ICalc
{
    [OperationContract]
    [WebInvoke(UriTemplate = "dowork", Method = "POST", RequestFormat = WebMessageFormat.Xml, ResponseFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Bare)]
    int DoWork(Enroll a);
}


[DataContract]
public class Enroll
{
    public Enroll()
    {

    }
    public Enroll(string Avalue)
    {
        this.Avalue = Avalue;
    }
    [DataMember(IsRequired = true)]
    public string Avalue
    {
        get;
        set;
    }


}

我用来调用这个服务的代码如下:

HttpWebRequest request = WebRequest.Create("http://localhost/RESTFUL_DEMO.Web/services/Calc.svc/dowork") as HttpWebRequest;
XmlDocument doc = new XmlDocument();
        doc.Load(@"d:\test.xml");
        string sXML = doc.InnerXml;
        request.ContentLength = sXML.Length;
        request.ContentType = "test/xml; charset=utf-8";
        var sw = new StreamWriter(request.GetRequestStream());
        sw.Write(sXML);
        sw.Close();
        WebResponse response = request.GetResponse();
        StreamReader stream = new StreamReader(response.GetResponseStream());
        String result = stream.ReadToEnd();

request.ContentType = "test/xml; charset=utf-8"; 应该改为 request.ContentType = "text/xml; charset=utf-8"; - Jammer
如果 sXML 包含非 ASCII 字符,则其长度 sXML.Length 可能与写入流的字节数不同。 - I4V
3个回答

2
你在使用Rest服务时犯了一个小错误。你指定了请求的ContentType为test/xml; charset=utf-8,但应该是text/xml或application/xml。
request.ContentType = "text/xml; charset=utf-8";

或者应该是
request.ContentType = "application/xml";

0
在我的情况下,我在服务接口 IBookService.cs 中的方法如下所示。
[OperationContract]
[WebInvoke(Method = "PUT", UriTemplate = "/Book", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
IList<Book> UpdateBook(Book book);

在我的客户端中,我正在提供

client.Headers[HttpRequestHeader.ContentType] = "text/xml";  

而不是

client.Headers[HttpRequestHeader.ContentType] = "text/json";

问题已经解决。请参见下面的完整解决方案。

 private void btnUpdateBook_Click(object sender, EventArgs e)
    {
        try
        {
            using(WebClient client = new WebClient())
            {
                client.Headers[HttpRequestHeader.ContentType] = "text/json";                   
                Uri uri = new Uri(@"http://localhost:8085/BookService/Book");

                Book updateBook = new Book() { Id = 3, Name = "UpdateBook Name 3", Price = 77.77f };

                MemoryStream requestStream = new MemoryStream();
                DataContractJsonSerializer requestSerializer = new DataContractJsonSerializer(typeof(Book));
                requestSerializer.WriteObject(requestStream, updateBook);

                client.UploadDataCompleted += OnUpdateBookCompleted;
                client.UploadDataAsync(uri, "PUT",requestStream.ToArray());
            }
        }
        catch (Exception ex)
        {

        }
    }

    void OnUpdateBookCompleted(object sender, UploadDataCompletedEventArgs e)
    {
        byte[] result = e.Result as byte[];
        MemoryStream responseStream = new MemoryStream(result);
        DataContractJsonSerializer serializer = new DataContractJsonSerializer(typeof(IList<Book>));
        IList<Book> books = (IList<Book>)serializer.ReadObject(responseStream);

        bindingSource1.DataSource = books;
        dvBooks.DataSource = bindingSource1;
    }

-2

在 Visual Studio 的一个实例中启动该服务,然后使用测试客户端确保该服务正常运行。

打开一个新的 VS 实例并添加服务引用,这将为您构建客户端代码,然后使用此客户端调用服务。


WCF测试客户端不适用于WCF Restful端点。它将使用WSHttpBinding消耗端点,这并不能解决原始问题。更多信息请参见http://blogs.msdn.com/b/carlosfigueira/archive/2012/03/26/mixing-add-service-reference-and-wcf-web-http-a-k-a-rest-endpoint-does-not-work.aspx。 - carlosfigueira

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接