If all you want to do is include the output of a JSP, you might want to check into JSTL's <c:include> action. Unlike the standard JSP <jsp:include> action, it can access external resources. You can provide <c:param> nested actions to add request paramaters. If you need to process the output before displaying it, <c:include> allows you to export either a String or Reader. JSTL requires a JSP 1.2 container, so TC 4.x qualifies but TC 3.x does not.
Quoting Sudhir Kumar <[EMAIL PROTECTED]>: > i need to communicate between two jsp's which are running on 2 remote > machines. both the jsp's are running on tomcat. i need to pass some data > between these jsp's. both the jsp's are connected to two seperate > databases. > is it possible to get the data of a remote database by invoking the jsp > running at that location ???. Any help in this regard will be helpfull.. > > thanks in advance > sudhir > > > -- > To unsubscribe, e-mail: > <mailto:tomcat-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:tomcat-user-help@;jakarta.apache.org> > -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>
