Ask a Question related to ASP.NET Security, Design and Development.
-
Trebor #1
Windows authentication in 3
Hi all.
I'm designing a system consists of 3 parts:
1.asp.net web client app
2. web service router using Web service enhancements 2.0
3. asp.net web service
Web client app. calls web service via router. ( I successfully implemented
this kind of behavior using anonymous access.)
Now, when I try to use windows authentication, (or basic authentication) the
web service router is
not calling the dest. web service any more.
I added these two lines in all web.config files
<authentication mode="Windows" />
<identity impersonate="true"/>
as well as the following line:
serviceProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
before calling the web service, but without success.
When I call the destination web service directly (without routing)
everything is O.K.
So, I think that the problem resides on a web service router's side.
I think that I need to pass credentials in a RouterHandler unit,
but I don't know how to do that.
Any help will be appreciated.
Trebor
Trebor Guest
-
Windows Authentication
I have an asp app that will be used primarily within an intranet. Windows Authentication seems to work well for this. On occassion a user using... -
ASP.NET Authentication and Windows Authentication
Hello, I'm developing a web application that will run on an Intranet. I'll use Windows Authentication, so users can access the application... -
Windows Authentication - what happens when it's not available?
Hi I'm developing an Intranet system for a client, and am looking at using Windows Authentication, so that the network users don't have to log... -
windows authentication..
Hi I'm stuck with a user authentication issue and desperately need some help. here's the situation - I have a web application where all the users... -
Forms authentication with Windows authentication
Hi, I have an ASP.NET web site that uses IIS Basic Authentication and accesses an OLAP Server at various stages. The OLAP Server authentication...



Reply With Quote

