0

[ServiceContract] 属性を持つ 2 つのクラスがある WCF サービス ライブラリ プロジェクトがあります。

2 つのサービスをホストするコンソール アプリケーションがあります。

コード:

Uri baseAddressRetrieve = new Uri("http://localhost:8000/api/Retrieve/");
Uri baseAddressStorage = new Uri("http://localhost:8005/api/Storage/");

ServiceHost hostRetrieve = new ServiceHost(typeof(Retrieve), baseAddressRetrieve);
ServiceHost hostStorage = new ServiceHost(typeof(Storage), baseAddressStorage);

hostRetrieve.AddServiceEndpoint(typeof(IRetrieve), new WSHttpBinding(SecurityMode.None), "Retrieve");
hostStorage.AddServiceEndpoint(typeof(IStorage), new WSHttpBinding(SecurityMode.None), "Storage");

hostRetrieve.Open();
hostStorage.Open();

URI を介して両方のサービス アドレスにアクセスすると、どちらも「ストレージ サービス」というラベルが付けられ、生成されたコードには次のコード行が含まれます。

StorageClient client = new StorageClient();

Retrieve サービスは RetrieveClient である必要がありますか?

app.config:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>
    <services>
      <service name="NS.Retrieve">
        <endpoint address="" binding="basicHttpBinding" contract="NS.IRetrieve">
          <identity>
            <dns value="localhost"/>
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8733/Design_Time_Addresses/NS/Retrieve/"/>
          </baseAddresses>
        </host>
      </service>
      <service name="NS.Storage">
        <endpoint address="" binding="basicHttpBinding" contract="NS.IStorage">
          <identity>
            <dns value="localhost"/>
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8733/Design_Time_Addresses/NS/Storage/"/>
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <serviceMetadata httpGetEnabled="True" httpsGetEnabled="True"/>
          <serviceDebug includeExceptionDetailInFaults="False" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
</configuration>
4

0 に答える 0