response « J2EE « JSP-Servlet Q&A





1. Override 302 response in WebLogic    stackoverflow.com

When I do a redirect inside J2EE web application deployed on WebLogic it sends back to the client the following response:

HTTP/1.1 302 Moved Temporarily
Cache-Control: no-cache="set-cookie"
Date: Sat, 12 Dec 2009 07:37:43 GMT
Transfer-Encoding: ...

2. Handle soap response at servlet    stackoverflow.com

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<ns1:getPrice xmlns:ns1="urn:xmethods-BNPriceCheck">
<isbn>0672383839</isbn>
</ns1:getPrice>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
How do I handle this data on the servlet side?

3. Java Web services responses - parsing complex response and making it UI friendly    stackoverflow.com

Web service is returning complex response. Response can contain arrays of objects that also contain arrays of objects... I'm creating UI friendly java class for that resposne that will only hold strings ...