Reputation: 6621
Our system requires adding some header information in the SOAP message. So how does this be implemented by JAX-WS. I know one way to achieve this is adding
@WebParam(name = "login", header = true),
but this solution is not what we want. We want one solution which doesn't need to change the endpoint interface.
Upvotes: 0
Views: 437
Reputation: 983
You would need to write an interceptor which will implement SOAPHandler to intercept the request.
Upvotes: 3