0

私はWCFが初めてなので、ご容赦ください。

同じ IStudentData.vb から 2 つのインターフェイスを実装する StudentData.svc.vb があります。

2 つのインターフェイスは IStudentData であり、IHeartbeat ハートビートは一方向の運用契約です _

このサービスをホストするために IIS 7.5 を使用しています。

<?xml version="1.0"?>
<configuration>

  <appSettings>
    <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
  </appSettings>
  <system.web>
    <compilation debug="true" strict="false" explicit="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5"/>
  </system.web>
  <system.serviceModel>
    <bindings />
    <client />
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- 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="false"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <protocolMapping>
        <add binding="basicHttpsBinding" scheme="https" />
        <add binding="basicHttpBinding" scheme="http" />
    </protocolMapping>    
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
    <!--
        To browse web app root directory during debugging, set the value below to true.
        Set to false before deployment to avoid disclosing web app folder information.
      -->
    <directoryBrowse enabled="true"/>
  </system.webServer>

</

サービス参照を作成した後の私のapp.configは

 <?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup>
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
    </startup>
    <system.serviceModel>
        <bindings>
            <basicHttpBinding>
                <binding name="BasicHttpBinding_IStudentData" maxReceivedMessageSize="2147483647" />
                <binding name="BasicHttpBinding_IHeartbeat" maxReceivedMessageSize="2147483647" />
            </basicHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://www.ortho-sync.com:8080/StudentData.svc"
                binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IStudentData"
                contract="oStudentData.IStudentData" name="BasicHttpBinding_IStudentData" />
            <endpoint address="http://www.ortho-sync.com:8080/StudentData.svc"
                binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IHeartbeat"
                contract="oStudentData.IHeartbeat" name="BasicHttpBinding_IHeartbeat" />
        </client>
    </system.serviceModel>
</configuration>

IStudentData には、イメージの転送に使用しているバイト配列のデータメンバーを持つクラスがあります。小さなファイルを使用すると転送され、1 メガの画像を使用するとすべてが機能し、(413) Request Entity Too Large を取得します

私は顔が青くなるまでバインディングとエンドポイントで遊んでいます。誰か助けてください。

4

1 に答える 1

1

独自のデフォルトを指定していないbasicHttpBindingか、独自のbasicHttpBinding.

name次のように、属性を省略して、バインディング構成をそのバインディングのデフォルト構成にすることができます。

<basicHttpBinding>
  <binding maxReceivedMessageSize="2147483647" />

または、エンドポイントを明示的に作成し、bindingConfiguration属性を使用してそのエンドポイントのバインディング構成を設定できます。

<endpoint address=""
          binding="basicHttpBinding"  
          bindingConfiguration="BasicHttpBinding_IStudentData"
          contract="oStudentData.IStudentData" 
          name="BasicHttpBinding_IStudentData" />

name2 番目の例では、 of で定義されたバインディング構成を想定していますBasicHttpBinding_IStudentData

これらのいずれかをサービス構成ファイルで使用します。

于 2013-10-23T02:39:29.630 に答える