networkcredentials Questions
1
Solved
I wonder if there are any implicit assumptions that I've taken that may make the code malfunction?
There is a reason I want to avoid using Import-Clixml cmdlet?
Hence, I've developed an alternativ...
Autacoid asked 21/4, 2019 at 12:46
2
Solved
My C# app hits a web server that uses NTLM authentication.
I find that each request made to the server (using a new HttpWebRequest) is individually authenticated. In other words, every request res...
Underset asked 31/8, 2011 at 11:17
3
So I've been working with DotNetOpenAuth for a while, Today I needed to add support for provider that forces me to send the secret key with Basic authentication (I've been using an old version and ...
Rader asked 17/5, 2013 at 19:16
1
Solved
I have a method to get ids and xpaths if given a particular url. How do I pass in the username and password with the request so that I can scrape a url that requires a username and password?
using...
Chaetopod asked 25/4, 2014 at 16:34
5
Solved
I have used the following code to send mail from my web application using a gmail account. My question is, can i change the sender address to another address other than original sender(gmail) addre...
Masseur asked 6/10, 2010 at 10:32
1
Solved
I am trying to create a program in c# that allows me to connect to my TFS in order to create new work items.
NetworkCredential netCred = new NetworkCredential(
"username",
"password");
BasicAuthCr...
Welldressed asked 20/2, 2014 at 15:7
1
Im trying to request a url that require windows authentication using HttpWebRequest, I was using
request.Credential = New NetworkCredential("username", "password");
everything was working find ...
Bus asked 30/7, 2013 at 9:24
3
Solved
I use the following code to obtaing html data from the internet:
WebProxy p = new WebProxy("localproxyIP:8080", true);
p.Credentials = new NetworkCredential("domain\\user", "password");
WebRequest...
Tunstall asked 22/10, 2012 at 9:58
1
I am testing an application with a local Web server (IIS, Windows 8), the site requires Basic authentication, and as long as I explicitly pass my credentials, everything works fine:
request.Creden...
Predikant asked 18/1, 2013 at 16:8
1
i want to validate a set of credentials against the domain controller. e.g.:
Username: joel
Password: splotchy
Domain: STACKOVERFLOW
In .NET 3.5 and newer you can use PrincipalContext.ValidateCr...
Asymptotic asked 15/3, 2012 at 16:21
2
Solved
Does anyone have any ideas as to why CredentialCache.DefaultCredential would return an ICredential instance with empty strings for domain, username, and password? I'm running a WCF service on IIS 7...
Acadian asked 2/10, 2011 at 18:55
3
Solved
I am trying to access a webpage through ASP.NET using the NetworkCredential class. However I keep getting an exception with the following message System.Security.Cryptography.CryptographicException...
Gyimah asked 10/5, 2011 at 12:59
2
Solved
I've got a WPF windows client that calls a WCF web service. The user is already logged in on the windows domain before starting the application and the WCF service uses windows authentication.
I w...
Propraetor asked 2/7, 2010 at 13:38
1
© 2022 - 2024 — McMap. All rights reserved.