WebService Credentials

M

mail747097

I'm trying to access a web service with another user running under the
built in web server in VS.NET 2005. I have the following code to
access the web service:

MyWebService webService = new MyWebService.MyClass();
webService.Credentials = new NetworkCredential("MyDomain\
\SomeoneElse", "HisPassword");
webService.UseDefaultCredentials = false;
webService.HelloWorld();

However if I check User.Identity.Name in the web service I get
"MyDomain\\Me" insead of "MyDomain\\SomeoneElse".

I would like to use this to only allow "MyDomain\\SomeoneElse" to
access the web service so I have the following in web.config:

<authentication mode="Windows"/>
<authorization>
<allow users="MyDomain\SomeoneElse"/>
<allow users="MyDomain\Me"/>
<deny users="*"/>
</authorization>

Where "MyDomain\Me" is only for this test.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top