2

セッション サポートを必要とする WCF サービスを作成しようとしているので、web.config に wsHttpBinding を有効にするセクションを追加しました。しかし、WCF テスト クライアントでサービスをテストして構成を確認すると、独自の構成ではなく、デフォルトの自動生成された構成が使用されているようです。

私の設定を参照してください:

<?xml version="1.0"?>
<configuration>
<system.web>

<compilation debug="true" targetFramework="4.0" />
</system.web>
  <system.serviceModel>

<behaviors>
  <serviceBehaviors>

    <behavior>
      <serviceMetadata httpGetEnabled="true"/>
      <serviceDebug includeExceptionDetailInFaults="true"/>
    </behavior>    
  </serviceBehaviors>
</behaviors>

<services>
  <service name="UserService">
    <endpoint address="" binding="wsHttpBinding" contract="ICenterPlaceUserService" />
  </service>
</services>

<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />

そして結果:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="BasicHttpBinding_ICenterPlaceUserService" sendTimeout="00:05:00" />
        </basicHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://localhost:57418/L1.WCF/CenterPlaceUserService.svc"
            binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ICenterPlaceUserService"
            contract="ICenterPlaceUserService" name="BasicHttpBinding_ICenterPlaceUserService" />
    </client>
</system.serviceModel>

何が欠けていますか?

4

1 に答える 1

12

name属性の属性には、サービス クラスの完全修飾名<service>が必要です。それ以外の場合は無視され、見ている動作が表示されます。サービスにはデフォルトのバインディングが使用されます (basicHttpBinding)。

<services>
  <service name="TheNamespaceOfYourClass.UserService">
    <endpoint address=""
              binding="wsHttpBinding"
              contract="TheNamespaceOfYourContract.ICenterPlaceUserService" />
  </service>
</services>
于 2013-04-07T23:42:48.650 に答える