zoukankan      html  css  js  c++  java
  • WCF 远程服务器返回了意外响应: (400) Bad Request。

      WCF 端  <system.web>    

    <httpRuntime maxRequestLength="2147483647" />  

    </system.web>

    <binding name="NewBinding0" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"                     messageEncoding="Text">          

    <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"   maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />       

      </binding>  <service behaviorConfiguration="newBehavior" name="Com.Yst.InternalAPI.FileService">    

         <endpoint address="" binding="basicHttpBinding" bindingConfiguration="NewBinding0"           contract="Com.Yst.InternalAPI.IFileService" />      

    </service>

    客户端  <system.web>  

       <httpRuntime maxRequestLength="2147483647" />  

    </system.web>

      <binding name="BasicHttpBinding_IFileService" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"                     messageEncoding="Text">          

    <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"  maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />      

       </binding>

      <services>    

       <service name="BasicHttpBinding_IFileService">     

        <endpoint address="http://api.aa.com/Services/FileService.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IFileService" contract="InternalAPI_FileService.IFileService">        

    </endpoint>            

      </service>  

       </services>

    <client>    

       <endpoint address="http://api.aa.com/Services/FileService.svc"   binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IFileService"   contract="InternalAPI_FileService.IFileService" name="BasicHttpBinding_IFileService" />

      </client>

  • 相关阅读:
    matlab中fft与fftshift命令小结(转)
    matlab 添加多行注释
    matlab colormap,caxis,shading,hsv,pcolor, alpha 表示(转)
    在线latex公式编辑器
    matlab 对话框弹出
    步态识别 概要
    JavaScript函数
    MySQL多表查询总结
    VS2005打不开 卡在登入状态
    about project
  • 原文地址:https://www.cnblogs.com/liufei88866/p/3278665.html
Copyright © 2011-2022 走看看