a newbie ? ...

I understand that I can use <jsp:forword page="relative URL"> or
<jsp:include page="relative URL"> to include files or content result
from another servlet/jsp, but they should be on the same system, right?
How about if I want to chain servlet/jsps that resides on different
server?

As a alternative, I also tried using a hidden form in the first jsp just
to pass the userID to the second jsp on another server, but it doesn't
seem to call the second jsp.


<%String userID = "119253";%>
<FORM ACTION="http://host.domain:8080/examples/portal/MyLLProjects.jsp";
      METHOD="GET">
<INPUT TYPE="HIDDEN" NAME="name" VALUE=<%=userID%>>

Thanks!!
yc

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to