Tagged Questions
The soaphandler tag has no wiki summary.
1
vote
0answers
110 views
Getting “HttpServletRequest” in soapMessageContext - Axis Handler
I am trying to get "HttpServletRequest" in an AxisHandler's "handleMessage" method.
My AxisHandler implements "SOAPHandler" as seen below code..
I need to get "HttpServletRequest" in ...
1
vote
1answer
63 views
Using a JAX-WS client, how do you get the SOAP header from a response?
Using a JAX-WS client, how do you get the SOAP header from a response?
I'm guessing you can do it using the handleMessage method of a SOAPHandler, but I feel like I'm missing some more obvious, ...
1
vote
2answers
621 views
How to change the response soap message in javax.xml.rpc.handler.Handler.handleFault(MessageContext ctx)
I wrote a handler (javax.xml.rpc.handler.Handler) for a SOAP web service that inspects header data. How can I modify the response message when the method handleFault is invoked?
public class ...
0
votes
0answers
15 views
How to transport header informations in case of soap fault?
In our webservice we define in every operation a header that carries a correlation id (CID) used for logging.
WSDL Snippet:
<operation name="lockUser">
<soap:operation style="document" ...
0
votes
0answers
185 views
Jax ws HandlerResolver Custom implementation
In server side, I have specified @HandlerChain() ..
@WebService(serviceName = "TestService", endpointInterface = "com.test.TestServicePort")
@HandlerChain(file = "handlers.xml")
public class ...
0
votes
0answers
171 views
Web Services Encoding/Compression
I am attempting to implement a test bed wherein I can test compression ratio's and speeds of gzip and fast infoset against my datasets. Preferably this would be independent of a web service ...
0
votes
1answer
437 views
SoapHandler not called after WS operation is executed
I have a servlet that also consumes SOAP WS (in doGet). I want to see SOAP envelope (or anything else in soap message). I adddd this code to my servlet class:
class ClientHandlerResolver implements ...
0
votes
2answers
317 views
How to add an element using a custom SOAPHandler
This is related to a previous question. I've pulled out the main problem as I've updated much of the code but I still have an issue. How can I have a custom SOAPHandler class add a new element to a ...
0
votes
2answers
4k views
How to properly format a SOAP message envelope using a custom SOAPHandler
I have a class that implements the SOAPHandler interface. The handleMessage is defined as:
public boolean handleMessage(SOAPMessageContext context) {
SOAPMessage msg = context.getMessage();
...