I have the following situation

I want to call a servlet from within my JSP page and then do something with
the result.

The servlet returns an XML string which I want the JSP page to break apart
and insert various bits into several XML data islands on the HTML page.

eg
in the jsp I want to code something similar to the following

...
<%! String theXML = ""; %>

<%
theXml = theCustomerServlet?customerName="fred";
%>

<XML id=theXML>
<%= theXML %>
</XML>

...



Any help would be greatly appreciated.

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to