vote up 2 vote down star
1

I need to implement UserName authentication for my web service.

Currently I am considering these two approaches

  1. SOAPHeader: http://www.codeproject.com/KB/cpp/authforwebservices.aspx
  2. UserNameToken: WSE 3.0: http://msdn.microsoft.com/en-us/library/aa480575.aspx

Can anyone tell me pros-cons of these approaches?

One of the major doubt is regarding client being able to consume the service. Client is using Java, would it be possible for them to pass UserNameToken implemented using WSE or are there any integration issues?

EDIT: Also please suggest if there are any better ways (ASMX Services) to implement UserName/Password authentication.

flag

2 Answers

vote up 2 vote down check

I would like to warn you against using WSE 3.0. Unless you are involved in a large enterprise federated system, stay well clear. It's way too much, overly complicated and we are still trying to rid it from one of our major systems.

If you just need to use username authentication then use the soap header approach.

MSDN Link: Building Secure ASP.NET Applications: Authentication, Authorization, and Secure Communication

link|flag
Thanks Chris, Could you provide some more info on issues you faced while using WSE 3.0. So far what I have heard is its easy to implement services (esp security) using WSE. I have never used it though. – noob.spt Nov 10 at 18:10
1  
Firstly, you need to install the libraries on all your dev machines and host servers. It adds an overhead to all your web references (if you're using VS) as it creates 2 proxy classes for every service. It can work well and is, certainly, extremely powerful - but do you need it? Transport-level security (SSL) in combination with simple username tokens will give you what you need. The biggest problem, we found, was if something went wrong. The xml configuration files are very "fragile" and rely on the server and client agreeing absolutely. Debugging exceptions is an absolute nightmare. – Chris Arnold Nov 11 at 7:46
vote up 2 vote down

Why not use HTTP basic access authentication ? link text

cheers

link|flag
Thanks Marcin. I have seen this before but never thought of this as an option. Do you have any more info on comparison with SOAP or few pros and cons...Thanks. – noob.spt Nov 10 at 18:12

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.