Hi,

I've read lots of FAQs and emails about sending init-params to servlets, but
can that be done with a JSP?  I've tried setting up my application's web.xml
to use:
<servlet>
        <servlet-name>
                jsp
        </servlet-name>
        <servlet-class>    
                org.apache.jasper.runtime.JspServlet
      </servlet-class>
        <init-param>
                <param-name>
                        configFile      
                </param-name>
                <param-value>
                        /some-directory/file.config
                </param-value>
        </init-param>
</servlet>

And different combinations, but I either get an error from Tomcat about
duplicate servlet declarations or I just don't see any InitParameters passed
to the JSP.  I tried to use getInitParameterNames() to see what was
available.  I got nothing = (


Thanks for your help,
Chris

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to