I am developing a web service that authenticates a user trying to access a web application. I'm new to web services and have seen a lot of different APIs and have started using JAX WS. Im not sure if this is an alternative to JAXB or if it should be used with it.
Currently I have a test page that a user can enter their username and password and this is the n sent to the web service as strings (which obviously cant happen for security reasons) where I can check against a database. My problem is finding a way to send the password securely..
The reason I am not putting the authentication within the application is because there will be several applications all using the same database to authenticate users so a web service would be beneficial.
Also, I had hoped I would be able to pass the web service an xml file instead of string but it seems this is not possible?
Thanks