Ask a Question related to ASP.NET Web Services, Design and Development.
-
Dino Chiesa [MSFT] #1
Re: can web service be used as central logon management
> what i want to do is creating a central web
yes, why not?> service to authenticate user logon.
> Is it possible?
It seems you have something like this:
browsers (B) connect to web servers (W1) to request pages.
Apps running on the Web servers then need to authenticate the users (from
the browser).
The web apps can use "anything" as the backend authentication service. One
common way is for the
webapp to do a database query, and find a record for the given userid and
password hash. But you could
just as easily use a webservice to verify the authentication information.
A web service is fine.
As for security issues: yes, you need to be careful and thoughtful.
What information are you passing from the browser to the web app? is it a
bonafide password, or a hash, or ... what? Are you using encrypted
communications between the browser and web app?
Same issues with the communications from the web app to the authentication
service.
how long will the authenticated sessions last? how will you do timeouts?
and so on...
Sorry, there are no simple answers to these things.
-Dino
"xiaobin sun" <sunxb@feinfo.com> wrote in message
news:042d01c35c62$0e4af650$a401280a@phx.gbl...> I have several web applications running on different web
> servers. what i want to do is creating a central web
> service to authenticate user logon. I.e. every
> application will connect web service to determine whether
> a user is authenticated or not? Is it possible? are there
> any security problem?
Dino Chiesa [MSFT] Guest
-
How to get service logon user
Hi, Can anyone tell me how to get the logon user of a service in windows? Win32::Services dosn't seem to have that information and I failed to... -
Architecture Question: Communication with Central Tracing Service
Hi, I've developed an small app that has a Windows Service and a Web Service. I'd like to use a central Tracing service (eventually as part of... -
Document management using Web service
Hi Is there any document management that microsoft provides? A large organization need a tool that gets information and can generate documents... -
problem with System.Management.dll used by a web service
Hi, I am wondering if anyone can help me with a problem I am having with a web service installed on a client's server. I have installed the same... -
Cannot start Net Logon Service
Having an issue starting the Net Logon service on Windows XP Pro machine. Error is "Could not start the Net Logon service on the Local Computer." ...



Reply With Quote

