ローカルで実行されているWCFサービスと、リモートで実行されているクライアントがあります。両側のバインディングを次のように一致させました。
<binding name="TcpBindingConfiguration_2">
<reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
<security mode="Transport">
<transport clientCredentialType="Windows" protectionLevel="EncryptAndSign"/>
<message clientCredentialType="Windows"/>
</security>
</binding>
Thread.CurrentPrincipal.Identity.Name、ServiceSecurityContext.Current.WindowsIdentity.Name、およびOperationContext.Current.ServiceSecurityContext.WindowsIdentity.Name(使用可能な場合)を返すだけのダミーメソッドセットアップがあります。
サーバーと同じマシンでクライアントを実行している場合、トランスポートモードは問題なく機能し、3つのID名すべてを使用できます。ただし、リモートホスト(同じドメインと異なるドメインの両方のホストでテスト済み)からローカルマシンに接続すると、「サーバーがクライアントの資格情報を拒否しました」という恐ろしいメッセージが表示されます。
バインディングを次のように変更した場合:
<binding name="TcpBindingConfiguration_1">
<reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
<security mode="None"/>
</binding>
接続が確立され、ダミーメソッドは名前を返しません(私が想像するように)。
誰かがnet.tcpバインディングを使用して、異なるホスト(場合によっては異なる信頼されたドメイン)間でWindows認証を有効にする構成を共有できますか?セキュリティモードを[なし]に設定すると言っている例をたくさん見てきましたが、これはすべて問題ありませんが、誰が電話をかけているのかを特定したいと思います。
では、次は何ですか?mode = "Transport"を機能させますか?mode = "None"を使用して、他のタイプの承認を実装しますか?Windows認証を正常に使用する別のバインディングに変更しますか?
これが他の場所で回答されている場合はお詫びします。私はそれが決定的に答えられている場所を見つけることができません。
更新:これは、クライアントの作成に現在使用しているコードです。
var endPointAddress = "net.tcp://" + remoteHost + ":8092/Marc/WcfService";
EndpointAddress address = new EndpointAddress(new Uri(endPointAddress), EndpointIdentity.CreateSpnIdentity("AppName/" + remoteHost), new AddressHeaderCollection());
NetTcpBinding binding = new NetTcpBinding();
binding.Security.Mode = SecurityMode.Transport;
binding.Security.Transport.ProtectionLevel = System.Net.Security.ProtectionLevel.EncryptAndSign;
using (var remoteService = new RemoteService.GuestServiceClient(binding, address))
{
try
{
MessageBox.Show(remoteService.Hello("Marc"));
remoteService.Close();
}
catch (Exception ex)
{
remoteService.Abort();
MessageBox.Show("Error occurred:\n\n" + ex.Source + "\n\n" + ex.Message, "Could not connect to " + remoteHost, MessageBoxButton.OK, MessageBoxImage.Error);
}
}
remoteHostはリモートマシンのIPアドレスに設定されています。
チャネルやプロキシなどを使用する必要がありますか?他の場所でそうする他のコードを見たことがありますが、GuestServiceClient()のこの単純なインスタンス化は(少なくともローカルでは)機能しているようです。