How to secure a web service and make it easy for any platform to consume.
Setup: Asp.NET 2.0, Dot Net 2.0, c# 2.0, Visual Studio 2005. Web server is IIS and uses https (SSL)
- I would like to avoid installing anything like WSE 3.0. I prefer a pure c# method I can take with me to future versions of Visual Studio and IIS.
- Everyone should be able to still visit the web service URL and description and see the WSDL without authentication.
- The securing will help to stop people from sending junk to our web service methods.
- Easy implementation: I do not want to manage certificates for clients or install anything.
- client only sends a username and password.
Does this mean SOAP header authentication is the only way then? I found these links but don't know if they will work for non .NET clients?
http://aspalliance.com/805 and http://www.codeproject.com/KB/webservices/SOAPHeaderAuthentication.aspx
I also see this article but don't know if and how to implement it (not a very good example).
Please advise or give me a good link (no videos please). Thanks!