He there, I have a basic webservice which works in C# if i remove the Basic auth option. But when i add the Basic auth meganism and set NetworkCredentials in C# I get this wierd error.
I have a NetTcpBinding with SecurityMode.TransportWithMessageCredential. Transport.ClientCredentialType is set to MessageCredentialType.Windows, but I\'m considering MessageCredentialType.UserName.
I have a window service that Inherits System.ServiceProcess.ServiceBase. While running in debug mode (havent tested compiled), the thread does not see the current user credentials.
I\'m writing an application which needs to store login data for multiple (XMPP) accounts on Windows.
In .NET, there appears to be several ways to get the current Windows user name. Three of which are: string name = WindowsIdentity.GetCurrent().Name;
what is the authType in CredentialCache.Add Method ? http://msdn.microsoft.com/en-us/library/czd开发者_高级运维w7s9e.aspx
I wrote this method to test for credentials but I dunno why when it goes to the GetResponse method is actually goes and runs the webservice. I just want it to test if the credentials for that web serv
Is there a nice and tested piece of code out there that I can use for this purpose: get the user/pass and the address of a web service (asmx page) and check if the user/pass are valid or not.
Guys, how to route inbound message between different endpoints. I need to expose the single endpoint that could accept different credentials. I guess, solve this by intercept the incoming message and
in my asp.net MVC project i have an database connection with connectionstring: Data Source=.;Initial Catalog=dbname;Integrated Security=True