I need to implement basic authorization (username and password check) to jax-ws for this
service:
@WebService(name="ServerService", serviceName="ServerService")
| @SOAPBinding(style = SOAPBinding.Style.RPC)
| public class ServerService implements IServerService{
| @WebMethod
| public ServerStatus status() {
| ServerStatus status=ServerStatus.getInstance();
| return status;
| }
| }
but i saw only EJB examples...
Where i can find how to do it?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4104493#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...