Как программно установить имя участника службы в размещенной службе - PullRequest
0 голосов
/ 31 августа 2009

Чтобы сделать вышеупомянутое, используя файл конфигурации, я бы сделал:

<endpoint
  address="...."
  binding="netTcpBinding"
  bindingConfiguration="MyBinding"
  contract="IService1">
  <identity>
    <servicePrincipalName value="name"/>
  </identity>
</endpoint>

Но как мне добавить его к приведенному ниже коду?

Uri uri = new Uri("http://example.com/service");
ServiceHost host = new ServiceHost(typeof(Service1), uri);

NetTcpBinding binding = new NetTcpBinding();
binding.Security.Mode = SecurityMode.Message;
binding.Security.Message.ClientCredentialType = MessageCredentialType.Windows;
host.AddServiceEndpoint(typeof(IService1), binding, uri);
host.Open();

1 Ответ

6 голосов
/ 31 августа 2009

Это немного громоздко, вам нужно использовать возвращаемое значение метода AddServiceEndpoint и установить его там:

ServiceEndpoint serviceEndpoint = host.AddServiceEndpoint(typeof(IService1), binding, uri);
EndpointAddress myEndpointAddress = new EndpointAddress(uri, EndpointIdentity.CreateSpnIdentity("YourIdentity"));
serviceEndpoint.Address = myEndpointAddress;
...