web-dev-qa-db-ja.com

実行時のWCF変更エンドポイントアドレス

最初のWCFの例が動作しています。私は多くのバインディングがあるウェブサイトにホストを持っています。このため、これをweb.configに追加しました。

<serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>

これは私のデフォルトのバインディング http://id.web で、次のコードで動作します。

EchoServiceClient client = new EchoServiceClient();
litResponse.Text = client.SendEcho("Hello World");
client.Close();

実行時にエンドポイントアドレスを設定しようとしています。上記のコードと同じアドレスであっても。

EchoServiceClient client = new EchoServiceClient();
client.Endpoint.Address = new EndpointAddress("http://id.web/Services/EchoService.svc"); 

litResponse.Text = client.SendEcho("Hello World");
client.Close();

私が得るエラーは:

The request for security token could not be satisfied because authentication failed. 

実行時にエンドポイントアドレスを変更する方法を提案してください。

ここに追加するのは、Ladislav Mrnkaから要求されたクライアント設定です

 <system.serviceModel>
        <bindings>
            <wsHttpBinding>
                <binding name="WSHttpBinding_IEchoService" closeTimeout="00:01:00"
                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                    bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
                    maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                    messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
                    allowCookies="false">
                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                    <reliableSession ordered="true" inactivityTimeout="00:10:00"
                        enabled="false" />
                    <security mode="None" />
                </binding>
            </wsHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://id.web/Services/EchoService.svc" binding="wsHttpBinding"
                bindingConfiguration="WSHttpBinding_IEchoService" contract="IEchoService"
                name="WSHttpBinding_IEchoService">
                <identity>
                    <servicePrincipalName value="Host/mikev-ws" />
                </identity>
            </endpoint>
        </client>
    </system.serviceModel>
37
Valamas

したがって、最初の例で定義したエンドポイントアドレスは不完全です。クライアント構成に示されているように、エンドポイントIDも定義する必要があります。コードでこれを試すことができます:

EndpointIdentity spn = EndpointIdentity.CreateSpnIdentity("Host/mikev-ws");
var address = new EndpointAddress("http://id.web/Services/EchoService.svc", spn);   
var client = new EchoServiceClient(address); 
litResponse.Text = client.SendEcho("Hello World"); 
client.Close();

valamasによる実際の作業最終バージョン

EndpointIdentity spn = EndpointIdentity.CreateSpnIdentity("Host/mikev-ws");
Uri uri = new Uri("http://id.web/Services/EchoService.svc");
var address = new EndpointAddress(uri, spn);
var client = new EchoServiceClient("WSHttpBinding_IEchoService", address);
client.SendEcho("Hello World");
client.Close(); 
29
Ladislav Mrnka

これは、最近のテストで使用したものの簡単な例です。サーバーとクライアントでセキュリティ設定が同じであることを確認する必要があります。

var myBinding = new BasicHttpBinding();
myBinding.Security.Mode = BasicHttpSecurityMode.None;
var myEndpointAddress = new EndpointAddress("http://servername:8732/TestService/");
client = new ClientTest(myBinding, myEndpointAddress);
client.someCall();
22
John Petrak

app.config

<client>
    <endpoint address="" binding="basicHttpBinding" 
    bindingConfiguration="LisansSoap" 
    contract="Lisans.LisansSoap" 
    name="LisansSoap" />
</client>

プログラム

 Lisans.LisansSoapClient test = new LisansSoapClient("LisansSoap",
                         "http://webservis.uzmanevi.com/Lisans/Lisans.asmx");

 MessageBox.Show(test.LisansKontrol("","",""));
15
Abdusselam

URLをデータベースに保存し、実行時にロードします。

public class ServiceClientFactory<TChannel> : ClientBase<TChannel> where TChannel : class
{
    public TChannel Create(string url)
    {
        this.Endpoint.Address = new EndpointAddress(new Uri(url));
        return this.Channel;
    }
}

実装

var client = new ServiceClientFactory<yourServiceChannelInterface>().Create(newUrl);
7
LawMan