2

我可以使用一些帮助,因为我已经被困 2 天了。我用谷歌搜索,但找不到正确的解决方案。

任何人都可以帮助解决如何修复或如何更好地调试吗?

发送到本地主机的内容

POST /Service1.svc/addt HTTP/1.1
Content-Type: application/json
Host: localhost.:13309
Content-Length: 25 
Expect: 100-continue
Connection: Keep-Alive

响应(使用提琴手查看)

> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<HTML><HEAD><TITLE>Bad Request</TITLE>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii"></HEAD>
<BODY><h2>Bad Request - Invalid Hostname</h2>
<hr><p>HTTP Error 400. The request hostname is invalid.</p>
</BODY></HTML>

GET 操作运行正常,所以我觉得确实是 POST 操作出错了。

有关 Web.config 和 Post 操作下方的信息

string requestData = "{\"ID\":1,\"Make\":\"Ferrari\"}";
byte[] data = Encoding.UTF8.GetBytes(requestData);
request = (HttpWebRequest)WebRequest.Create("http://localhost.:13309/Service1.svc/addt");
request.Method = "POST";
request.ContentType = "application/json";
request.ContentLength = data.Length;
Stream dataStream = request.GetRequestStream();
dataStream.Write(data, 0, data.Length);
dataStream.Close();
WebResponse webr = request.GetResponse();




<system.web>
    <compilation debug="true" targetFramework="4.5" />
    <customErrors mode="Off"/>
    <httpRuntime requestPathInvalidCharacters="&lt;,&gt;,*,%,:,\,?" maxRequestLength="2097151" />
  </system.web>
  <system.serviceModel>
    <services>
      <service name="FinanceService.Service1" behaviorConfiguration="ServiceBehaviour">
        <!-- Service Endpoints -->
        <!-- Unless fully qualified, address is relative to base address supplied above -->
        <endpoint address ="" binding="webHttpBinding" contract="FinanceService.IService1" behaviorConfiguration="web">
          <!-- 
              Upon deployment, the following identity element should be removed or replaced to reflect the 
              identity under which the deployed service runs.  If removed, WCF will infer an appropriate identity 
              automatically.
          -->
        </endpoint>
      </service>
    </services>

    <behaviors>
      <serviceBehaviors>
        <behavior name="ServiceBehaviour">
          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="true"/>
          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="false"/>
        </behavior>
      </serviceBehaviors>
      <endpointBehaviors>
        <behavior name="web">
          <webHttp/>
        </behavior>
      </endpointBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
4

3 回答 3

2

自己解决了 - 从教程中的文件开始,让它们工作,然后逐步进行更改,直到我得到所需的结果。

赞美本教程

结合 WCF Post 查看 400 bad request 上的大量项目,这里有一些指示。

  1. Web.Config 似乎不需要太多关注。如果它适用于 GET,则很可能已为 POST 操作正确配置

  2. 您要发布的正文/数据的格式非常烦躁!如果您声称它是 JSON,请确保它是正确的 JSON。我的(天真)印象是,无论我放入身体中的什么,都会在另一端出来,但显然服务器会进行检查,并返回“错误请求”。

于 2012-12-23T10:33:58.093 回答
1

您在问如何更好地调试。我强烈建议不要添加 . 之后localhost。在这种情况下,您很可能会遇到另一个错误。

请参考“为什么我看不到发送到 http://localhost 或 http://127.0.0.1 的流量

最简单的解决方法是使用您的机器名称作为主机名,而不是使用 Localhost 或 127.0.0.1。因此,例如,与其点击 http:// localhost :8081/mytestpage.aspx,不如访问 http:// machinename :8081/mytestpage.aspx。

希望能帮助您发现与使用 POST 方法相关的真正错误。

于 2012-12-22T19:49:39.757 回答
0

如果你使用 NInject 来激活它,你应该使用 NinjectServiceHostFactory。

于 2015-05-26T06:59:03.083 回答