То, что я пытаюсь достичь, моя служба Windows будет периодически запускаться на машине с / без входа пользователя и отправлять обновления на удаленную машину (необработанное значение).На удаленных машинах служба WCF отвечает на форматированное значение (например, результат) и асинхронно обновляет базу данных необработанным вводом.
Клиент службы Windows (клиент WCF) => IIS (служба WCF) => База данных (асинхронно) WindowsКлиент службы (клиент WCF) <= IIS (служба WCF) </p>
Что я сейчас делаю, я разместил службу WCF в IIS, но у моей службы Windows (клиент WCF) возникла проблема с проверкой подлинности и подключением к WCF.Я знаю, что служба Windows работает под учетной записью "LOCALSYSTEM".Но прежде чем позвонить, я выдает себя за «СЕТЕВУЮ СЛУЖБУ».
Мои текущие привязки: *netTcpBinding * wsHttpBinding
- Как установить каждую привязку, поддерживающую мою цель?
WCF web.config, размещенный в IIS:
<system.serviceModel>
<bindings>
<netTcpBinding>
<binding name="CustomNetTcpBinding" closeTimeout="00:02:30" openTimeout="00:02:30"
sendTimeout="00:02:30" listenBacklog="20" maxConnections="20">
<readerQuotas maxDepth="512" maxStringContentLength="50000" maxArrayLength="50000"
maxBytesPerRead="50000" maxNameTableCharCount="512" />
<security mode="Transport" />
</binding>
</netTcpBinding>
<wsHttpBinding>
<binding name="CustomWsHttpBinding" closeTimeout="00:02:30" openTimeout="00:02:30"
sendTimeout="00:02:30">
<readerQuotas maxDepth="512" maxStringContentLength="50000" maxArrayLength="50000"
maxBytesPerRead="50000" maxNameTableCharCount="512" />
</binding>
</wsHttpBinding>
</bindings>
<diagnostics>
<messageLogging logMalformedMessages="false" logMessagesAtServiceLevel="false"
logMessagesAtTransportLevel="false" />
</diagnostics>
<services>
<service behaviorConfiguration="TestAppWcfServiceApp.Service1Behavior"
name="TestAppWcfServerLib.TestAppServiceComposite2">
<endpoint address="mexhttp" binding="mexHttpBinding" contract="IMetadataExchange" />
<endpoint address="nettcp" binding="netTcpBinding" bindingConfiguration="CustomNetTcpBinding"
contract="TestAppWcfServerLib.ITestAppServiceContract2" />
<endpoint address="wshttp" binding="wsHttpBinding" bindingConfiguration="CustomWsHttpBinding"
contract="TestAppWcfServerLib.ITestAppServiceContract2" />
<host>
<baseAddresses>
<add baseAddress="net.tcp://localhost:8005/TestApp" />
<add baseAddress="http://localhost/TestApp" />
</baseAddresses>
<timeouts openTimeout="00:02:30" />
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="TestAppWcfServiceApp.Service1Behavior">
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="false" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
Клиент WCF в Windows Service:
<system.serviceModel>
<bindings>
<netTcpBinding>
<binding name="NetTcpBinding_ITestAppServiceContract2" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
hostNameComparisonMode="StrongWildcard" listenBacklog="10"
maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10"
maxReceivedMessageSize="65536">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Transport">
<transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
<message clientCredentialType="Windows" />
</security>
</binding>
</netTcpBinding>
<wsHttpBinding>
<binding name="WSHttpBinding_ITestAppServiceContract2" 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="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None"
realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true"
algorithmSuite="Default" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="net.tcp://ServerName/testtools/TestAppServApp.svc/nettcp"
binding="netTcpBinding" bindingConfiguration="NetTcpBinding_ITestAppServiceContract2"
contract="proxyClient.ITestAppServiceContract2" name="NetTcpBinding_ITestAppServiceContract2">
<identity>
<servicePrincipalName value="host/ServerName" />
</identity>
</endpoint>
<endpoint address="http://ServerName/testtools/TestAppServApp.svc/wshttp"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ITestAppServiceContract2"
contract="proxyClient.ITestAppServiceContract2" name="WSHttpBinding_ITestAppServiceContract2">
<identity>
<servicePrincipalName value="host/ServerName" />
</identity>
</endpoint>
</client>
</system.serviceModel>
Мои настройки: