つまり、コンソールクライアントを、同じネットワーク内の別のPCでホストされているWCFサービスのhttpsエンドポイントに接続できません。デバッグ時に次のエラーが表示されます。ObjectloginObject=client.Login(password、username); このサーバーマシンのドメインに自動的にステップインできません。サーバーマシンへの接続に失敗しました。ログオンの失敗:不明なユーザー名または不正なパスワード。
私はIISでこれをホストしていません、私はビジュアルスタジオからサービスをホストしているだけです
-----詳細については以下を確認してください-----
コンピューターのコンソールでホストされているwcfサービスがあります。バインディング、エンドポイント、および動作のみを含む構成ファイルは、次のようになります。
<bindings>
<wsHttpBinding>
<binding
name="HighQuotaWSHttpBinding"
receiveTimeout="00:10:00"
sendTimeout="00:10:00"
bypassProxyOnLocal="true"
maxBufferPoolSize="2147483647"
useDefaultWebProxy="false"
maxReceivedMessageSize="2147483647">
<security mode="Transport">
<transport clientCredentialType="Certificate" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<services>
<!-- WebDataService -->
<service
behaviorConfiguration="WebDataServiceBehaviour"
name="ANameSpace">
<endpoint
address="WebDataService"
binding="wsHttpBinding" bindingConfiguration="HighQuotaWSHttpBinding"
contract="AContract"
name="WebDataServiceHttpBinding">
<!--<identity>
<dns value="" />
</identity>-->
</endpoint>
<endpoint
address="mex"
binding="mexHttpsBinding"
contract="IMetadataExchange"
name="mexManagement" />
<host>
<baseAddresses>
<add baseAddress="http://mylocalip:9650/" />
<add baseAddress="https://mylocalip:9651/" />
</baseAddresses>
</host>
</service>
</services>
<!-- Definition of WebDataService behaviour -->
<behaviors>
<serviceBehaviors>
<!-- Behavior for WebserviceData interface -->
<behavior name="WebDataServiceBehaviour">
<!-- Set throttling of (concurrent) cals -->
<serviceThrottling
maxConcurrentCalls="100"
maxConcurrentSessions="100"
maxConcurrentInstances="100"/>
<!-- To avoid disclosing metadata information,
set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpsGetEnabled="True"/>
<serviceCredentials>
<!--certificate storage path in the server -->
<serviceCertificate findValue="localhost" x509FindType="FindBySubjectName" storeLocation="LocalMachine" storeName="My"/>
<issuedTokenAuthentication allowUntrustedRsaIssuers="true"/>
<!--certificate storage path in the client -->
<clientCertificate>
<certificate findValue="localhost" x509FindType="FindBySubjectName" storeLocation="LocalMachine" storeName="My"/>
</clientCertificate>
<userNameAuthentication userNamePasswordValidationMode="MembershipProvider"/>
</serviceCredentials>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="WebDataServiceBehaviour">
<clientCredentials>
<!--certificate storage path in the client -->
<clientCertificate findValue="localhost" storeLocation="LocalMachine" x509FindType="FindBySubjectName" storeName="My"/>
<serviceCertificate>
<authentication certificateValidationMode="PeerOrChainTrust"/>
</serviceCertificate>
</clientCredentials>
</behavior>
</endpointBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
これを行うことで、独自のルート証明書とサーバー証明書を作成しました。
ルート:makecert.exe -sv SignRoot.pvk -cy Authority -r signroot.cer -a sha1 -n "CN = AuthorityName" -ss my -sr localmachine
サーバー:makecert.exe -iv SignRoot.pvk -ic signroot.cer -cy end -pe -n CN = "localhost" -eku 1.3.6.1.5.5.7.3.1 -ss my -sr localmachine -sky exchange -sp " MicrosoftRSASChannel暗号化プロバイダー"-sy12
次に、httpconfig.exeというプログラムを使用して、この証明書をポート9651に追加しました。
同じネットワーク内の別のPCで、単純なC#コンソールクライアントを作成しようとしています。program.csは次のとおりです。
class Program
{
static void Main(string[] args)
{
System.Net.ServicePointManager.ServerCertificateValidationCallback += (se, cert, chain, sslerror) =>
{
return true;
};
wcf1.WebDataServiceClient client = new wcf1.WebDataServiceClient();
string username = "A";
string password = "A";
Object loginObject = client.Login(password, username);
Console.WriteLine("bla");
Console.ReadLine();
client.Close();
}
}
構成は次のように生成されます。
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WebDataServiceHttpBinding" 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="Transport">
<transport clientCredentialType="Certificate" proxyCredentialType="None"
realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="https://Theipfromthepc:9651/WebDataService" binding="wsHttpBinding"
bindingConfiguration="WebDataServiceHttpBinding" contract="wcf1.IWebDataService"
name="WebDataServiceHttpBinding">
<!--<identity>
<dns value="" />
</identity>-->
</endpoint>
</client>
</system.serviceModel>