1

私はWCF .netが初めてです私は3.5 VB.Netで作業しているので、認証を使用してWebサービスを作成する必要があります私はメッセージとユーザー名のセキュリティを使用しましたここに私のweb.configがあります

<system.serviceModel>
<bindings>
<wsHttpBinding>
  <binding name="Binding1">
    <security mode="Message">
      <message clientCredentialType="UserName" />
    </security>
  </binding>        
 </wsHttpBinding>

<services>
  <service name="Service" behaviorConfiguration="Behavior1">
      <identity>
        <dns value="MyWebSite"/>
      </identity>
    </endpoint>
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
  </service>
</services>
<behaviors>
   <serviceBehaviors>
        <behavior name="Behavior1">
      <serviceMetadata httpGetEnabled="true"/>
      <serviceDebug includeExceptionDetailInFaults="false"/>
          <serviceCredentials>
            <serviceCertificate findValue="MyWebSite"
                      storeLocation="LocalMachine"
                      storeName="My"
                      x509FindType="FindBySubjectName" />
             <userNameAuthentication userNamePasswordValidationMode="Custom"
                 customUserNamePasswordValidatorType= "CustomUsernamePasswordAuth, App_Code" />
            </serviceCredentials>

        </behavior>             
    </serviceBehaviors>

</behaviors>

クライアント側でこのサービスをテストすると、「エラーが発生し、メッセージのセキュリティを確認できませんでした」というエラーが表示されます。いくつかの調査の後、この問題はクライアントとサーバー (私のマシン) 間の同期が原因であることがわかりました。しかし、2つのマシンは完全に同期されており、正確に同じ日時を持っています。私は迷っています:(

4

0 に答える 0