错误400:httpwebrequest上的请求无效

时间:2017-08-31 09:56:07

标签: c# wcf httpwebrequest

我已经构建了一个由Windows服务托管在服务器上的WCF服务。一切正常,我已经测试了一些方法。现在我需要从我的客户端发送一个httprequest,如下所示:

 HttpWebRequest req = (HttpWebRequest)WebRequest.Create(String.Format(@"http://192.168.0.170:9001/myServ/Start/{0}/{1}", "blabla", "blabla"));
 req.Method = "GET";

问题是我在客户端持续收到异常,说明我的请求无效。我无法理解为什么。

这是我的wcf服务:

[OperationContract]
[WebInvoke(Method = "GET",
 UriTemplate = "Start/{param1}/{param2}")]
 string Mod(string param1, string param2);

这是我的配置

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true"/>
  </appSettings>
  <system.web>
    <compilation debug="true"/>
  </system.web>
  <!-- When deploying the service library project, the content of the config file must be added to the host's 
  app.config file. System.Configuration does not support config files for libraries. -->
  <system.serviceModel>
    <bindings>
      <webHttpBinding>
        <binding maxBufferSize="2147483647"
                 maxBufferPoolSize="2147483647"
                 maxReceivedMessageSize="2147483647"
                 transferMode="Streamed"
                 sendTimeout="00:05:00"
                 name="WebHttpBinding_InotifyImp">
          <readerQuotas  maxDepth="2147483647"
                         maxStringContentLength="2147483647"
                         maxArrayLength="2147483647"
                         maxBytesPerRead="2147483647"
                         maxNameTableCharCount="2147483647"/>
          <security mode="None" />
        </binding>
      </webHttpBinding>
    </bindings>
    <services>
      <service name="wcfImp.notifyImp" behaviorConfiguration="NewBehavior">
        <endpoint address="" behaviorConfiguration="DefaultEndPointBehavior" bindingConfiguration="WebHttpBinding_InotifyImp" binding="webHttpBinding" contract="wcfImp.InotifyImp">
          <identity>
            <dns value="localhost"/>
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:9001/notifyImp"/>
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior  name="NewBehavior">
          <!-- To avoid disclosing metadata information, 
          set the values below to false before deployment -->
          <serviceMetadata httpGetEnabled="True" httpsGetEnabled="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="True"/>
        </behavior>
      </serviceBehaviors>
      <endpointBehaviors>
        <behavior name="DefaultEndPointBehavior">
          <webHttp helpEnabled="true" />
        </behavior>
      </endpointBehaviors>
    </behaviors>
  </system.serviceModel>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
  </startup>
</configuration>

1 个答案:

答案 0 :(得分:0)

我发现了问题。我使用visual studio 2015以调试模式托管我的WCF服务,以检查我的过程的各个步骤。我不知道为什么,但是虽然我对另一个方法没有任何问题,但是与get方法关联的处理程序有一个无法加载的程序集。我试图在Windows服务上托管服务,一切正常

相关问题