Re: Using HTTP Client in Struts to send xml and show rendered document

2006-02-15 Thread Leon Rosenberg
your another application send a request to your struts application, your struts application generates the answer as xml (you can stream out w3c xml objects through the response stream or just have a jsp which generates the xml) the first application grabs the struts application's response and sends

Using HTTP Client in Struts to send xml and show rendered document

2006-02-15 Thread Peter . Neu
Hello, I have this use case that I want to send an xml document from my struts apps to another application for rendering. This (non-strus)application does then just send an response with attachment header. I'm just not so sure how to do this in the request/response model of Struts. Can someone hel