Created
December 16, 2008 15:48
-
-
Save krohrbaugh/36637 to your computer and use it in GitHub Desktop.
Example code block for authenticating .NET web services secured using HTTP Basic auth
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Web service auth example | |
* - ReferencedWebService is the Web Reference service object | |
* and should be replaced with your actual service object | |
*/ | |
ReferencedWebService webService = new ReferencedWebService(); | |
webService.Url = "http://webservice.com/service.asmx"; | |
webService.PreAuthenticate = true; | |
webService.Credentials = new System.Net.NetworkCredential("username", "password"); | |
// Do web service calls here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment