Click here to Skip to main content
15,892,072 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Hi,

I have a well working WCF Services. I grant access to it with a simple basicHttpBinding and a secure transport like this:

XML
<security mode="Transport" >
            <transport clientCredentialType="Basic"/>
          </security>


Now i try to access the Service with an Access 2003 Application but it doesn't work. The Microsoft Office 2003 Web Services Toolkit creates the proxy classes but when i try to invoke a method i allways become a timeout.

My second Problem is, that i don't know how to set the clientCredentials for the UserNamePasswordValidator in VB.
Posted

1 solution

I have solved the problem with following settings:

VB
service.ConnectorProperty("AuthUser") = "user"
service.ConnectorProperty("AuthPassword") = "pss"
service.ConnectorProperty("WinHTTPAuthScheme") = &H1
service.ConnectorProperty("UseSSL") = True
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900