Web Service Security java
Posted
by
WhoAmI
on Stack Overflow
See other posts from Stack Overflow
or by WhoAmI
Published on 2012-09-08T03:30:31Z
Indexed on
2012/09/08
3:37 UTC
Read the original article
Hit count: 145
My web service was created some time back using IBM JAX-RPC. As a part of enhancement, I need to provide some security to the existing service.
One way is to provide a handler, all the request and response will pass through that handler only. In the request I can implement some authentication rules for each and every application/user accessing it.
Other than this, What are the possible ways for securing it?
I have heard someting called wsse security for web service. Is it possible to implement it for the JAX-RPC? Or it can be implemented only for JAX-WS? Need some helpful inputs on the wsse security so that i can jump learning it.
Other than handler and wsse security, any other possible way to make a service secure?
Please help.
© Stack Overflow or respective owner