1

そのサーバーで正常に動作するサーバーで wcf サービスをホストしました。別のサーバーにも正常に追加されたそのサービスのサービス参照を追加してから、以下のようにこれらのサービスを認証しようとします

var engServiceClient = new EngServiceClient();
engServiceClient.ClientCredentials.Windows.AllowedImpersonationLevel = TokenImpersonationLevel.Anonymous;
engServiceClient.ClientCredentials.Windows.ClientCredential.Domain = @"test";
engServiceClient.ClientCredentials.Windows.ClientCredential.UserName = @"hello";
engServiceClient.ClientCredentials.Windows.ClientCredential.Password = @"123wcf";
var getData = engServiceClient.GetActiveEngagements();

しかし、HTTP チャネルを介してデータを送信中に例外エラー (要求が中止されました: 要求が取り消されました。) が発生しました。

サービス参照を追加した後に生成される構成ファイル

<configuration>
    <system.serviceModel>
        <bindings>
            <basicHttpBinding>
                <binding name="EngService" closeTimeout="00:01:00" openTimeout="00:01:00"
                    receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"
                    bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                    maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                    messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                    useDefaultWebProxy="true">
                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                    <security mode="Transport">
                        <transport clientCredentialType="Windows" proxyCredentialType="None"
                            realm="" />
                        <message clientCredentialType="UserName" algorithmSuite="Default" />
                    </security>
                </binding>
            </basicHttpBinding>
        </bindings>
        <client>
            <endpoint address="https://testwebdemo-t.orioninc.com:8443/Services/2012v2/EngService.svc"
                binding="basicHttpBinding" bindingConfiguration="EngService"
                contract="ServiceReference1.IEngService" name="EngService" />
        </client>
    </system.serviceModel>
</configuration>

ユーザー名とパスワードを使用してこのサービスを認証するにはどうすればよいですか?

4

1 に答える 1

3

まず第一に、WCF サービス/クライアントをセットアップする際に、WCF トレースを構成して、より詳細でユーザー フレンドリーなエラー メッセージを取得すると非常に便利です。WCF トレースの詳細については、WCFトレースを参照してください。

実装しようとしているクライアント認証の種類は何ですか? 冗長で紛らわしいWindowsトランスポート セキュリティとメッセージ セキュリティのタイプを指定したことがわかります。UserName

https を介した Windows の認証ではなく、単純なユーザー名とパスワードの認証が必要だとします。次に、セキュリティ セクションは次のようになります。

<security mode="TransportWithMessageCredential">
        <transport clientCredentialType="None" />
        <message clientCredentialType="UserName" establishSecurityContext="true"/>
      </security>

次に、このコードを使用して、クライアント側で資格情報を指定できます。

client.ClientCredentials.UserName.UserName = "username";
client.ClientCredentials.UserName.Password = "password";

それが役に立てば幸い

于 2013-01-14T11:41:25.690 に答える