Hello All, This is a question about what the JSP specification says about the passing of parameters to included files (using the <jsp:include /> tag). Previously we were using JRun. We have a pretty complicated web app which uses tons of parameter passing through the URL. My question is when one JSP file is included inside another, do the parameters get passed to the included JSP file. For example, I have some simple JSP file a.jsp which includes b.jsp. If I call a.jsp from the URL line of a browser as follows: http://www.myserver.com/a.jsp?b-param=foo What should I expect request.getParameter("b-param") to return inside the b.jsp file? In JRun, this would return "foo", yet in WebLogic this returns null. Any ideas on which implementation is correct according to the spec? ------------ Randy Fish GetFit.com Developer =========================================================================== 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
