| c# Programming Glossary: credentialcache.defaultcredentialsMaking a web request to a web page which requires windows authentication http://stackoverflow.com/questions/3562979/making-a-web-request-to-a-web-page-which-requires-windows-authentication  user's credentials to the service then request.Credentials CredentialCache.DefaultCredentials should do the trick. Otherwise use NetworkCredential as follows.. 
 How to send/receive SOAP request and response using C#? http://stackoverflow.com/questions/5396671/how-to-send-receive-soap-request-and-response-using-c  HttpVersion.Version11 httpRequest.Credentials CredentialCache.DefaultCredentials Stream requestStream httpRequest.GetRequestStream  Create Stream.. 
 Uploading files to Sharepoint (WSS 3.0) document library using HTTP PUT http://stackoverflow.com/questions/596315/uploading-files-to-sharepoint-wss-3-0-document-library-using-http-put  System.Threading.Timeout.Infinite  req.Credentials CredentialCache.DefaultCredentials  Stream outStream req.GetRequestStream  string status CopyStream.. 
 How to use HTTP GET request in C# with SSL? (protocol violation) http://stackoverflow.com/questions/708210/how-to-use-http-get-request-in-c-sharp-with-ssl-protocol-violation  sslServerPort request.Proxy null request.Credentials CredentialCache.DefaultCredentials HttpWebResponse response HttpWebResponse request.GetResponse.. sslServerPort request.Proxy null request.Credentials CredentialCache.DefaultCredentials allows for validation of SSL certificates ServicePointManager.ServerCertificateValidationCallback.. 
 How do you copy a file into SharePoint using a WebService? http://stackoverflow.com/questions/787610/how-do-you-copy-a-file-into-sharepoint-using-a-webservice  using Copy copyService new Copy copyService.Credentials CredentialCache.DefaultCredentials copyService.Url http webserver site _vti_bin copy.asmx copyService.Timeout.. 
 Getting NetworkCredential for current user (C#) http://stackoverflow.com/questions/949340/getting-networkcredential-for-current-user-c  Uri uri new Uri http tempuri.org ICredentials credentials CredentialCache.DefaultCredentials NetworkCredential credential credentials.GetCredential uri Basic.. 
 |