JAX-WS Clinic Web Application - Mapping SOAP Request and Response to JSP

I implemented a JAX-WS client web application with a message handler where I can get a request and response. those..; I received a SOAP request and response as strings. I would like to get these lines and display them on every page. I call the service in an action class (struts) and redirect the request to the JSP to print the parsed data coming from the service.

Question: how to return these two lines to an action class? I sued the request area on the server side to do the same, but the request becomes empty in the case of the client.

Any ideas?

+3
source share

Source: https://habr.com/ru/post/1745945/


All Articles