Hi,
I am developing a PocketPC 5.0 application that connects to an intranet using a cabled Activesync connection to a client PC. I need to authnicate to a web service that runs on a server with in the same domain as the client PC. It appears that the client PC crenditials are not being passed when I make the call from my PocketPC 5.0 application to the web service. I have tried using the System.Net.CredentialCache.DefaultCredentials; however, the userid, password, and domain therein are all empty strings. An example of this code from my PocketPC 5.0 application is below:
My.WebServices.MWS.Credentials = System.Net.CredentialCache.DefaultCredentials
My.WebServices.MWS.PreAuthenticate = True
Is there anyway for a PocketPC application to get the credentails from the PC to which it is connected via a cabled ActiveSync connection?