21

ここでは、web.config から名前でサービス エンドポイント アドレスを読み取ろうとしています。

ClientSection clientSection = (ClientSection)ConfigurationManager.GetSection("system.serviceModel/client");
var el = clientSection.Endpoints("SecService"); // I don't want to use index here as more endpoints may get added and its order may change
string addr = el.Address.ToString();

名前に基づいてエンドポイントアドレスを読み取る方法はありますか?

ここに私のweb.configファイルがあります

<system.serviceModel>
 <client>
     <endpoint address="https://....................../FirstService.svc" binding="wsHttpBinding" bindingConfiguration="1ServiceBinding" contract="abc.firstContractName" behaviorConfiguration="FirstServiceBehavior" name="FirstService" />
     <endpoint address="https://....................../SecService.svc" binding="wsHttpBinding" bindingConfiguration="2ServiceBinding" contract="abc.secContractName" behaviorConfiguration="SecServiceBehavior" name="SecService" />
     <endpoint address="https://....................../ThirdService.svc" binding="wsHttpBinding" bindingConfiguration="3ServiceBinding" contract="abc.3rdContractName" behaviorConfiguration="ThirdServiceBehavior" name="ThirdService" />
            </client>
    </system.serviceModel>

これは機能clientSection.Endpoints[0];しますが、名前で取得する方法を探しています。

つまり、clientSection.Endpoints["SecService"]のようなものですが、機能していません。

4

3 に答える 3

22

これは、Linq と C# 6 を使用して行った方法です。

最初にクライアント セクションを取得します。

var client = ConfigurationManager.GetSection("system.serviceModel/client") as ClientSection;

次に、endpointName と等しいエンドポイントを取得します。

var qasEndpoint = client.Endpoints.Cast<ChannelEndpointElement>()
    .SingleOrDefault(endpoint => endpoint.Name == endpointName);

次に、エンドポイントから URL を取得します。

var endpointUrl = qasEndpoint?.Address.AbsoluteUri;

以下を使用して、エンドポイント インターフェイスからエンドポイント名を取得することもできます。

var endpointName = typeof (EndpointInterface).ToString();
于 2016-03-07T03:28:06.510 に答える
17

実際にエンドポイントを反復処理する必要があると思います:

string address;
for (int i = 0; i < clientSection.Endpoints.Count; i++)
{
    if (clientSection.Endpoints[i].Name == "SecService")
        address = clientSection.Endpoints[i].Address.ToString();
}
于 2013-05-15T19:01:49.227 に答える
5

クライアント側の各エンドポイントには名前があります。その名前を使用してクライアント プロキシをインスタンス化するだけです。

ThirdServiceClient client = new ThirdServiceClient("ThirdService");

これを行うと、構成ファイルから適切な情報が自動的に読み取られます。

于 2013-05-15T19:02:02.877 に答える