RE: init-param to JSP

2001-02-06 Thread Rauschuber, Chris
That worked!! Thaks a bunch! It was the application.getInitParameter("") that I needed. Chris > -Original Message- > From: Jan Labanowski [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 06, 2001 10:08 AM > To: '[EMAIL PROTECTED]' > Subject: RE: i

RE: init-param to JSP

2001-02-06 Thread Jan Labanowski
Worked for me all my life. E.g., in web.xml: open-port 7180 Port for regular HTTP via Apache secure-port 7143 Port for HTTPS via Apache and in the jsp page: parameters are: open-port=<%= application.getInitParameter("open-port") %> secure-port=<%= applicat

RE: init-param to JSP

2001-02-06 Thread Rauschuber, Chris
I just tried that, but no luck. I still get no InitParameters. I tried using both the getInitParameterNames() and context.getInitParameterNames() in the JSP. Is the first one just an implicit version of the second? Chris > From: Brian Tol [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 0

Re: init-param to JSP

2001-02-06 Thread Brian Tol
"Rauschuber, Chris" wrote: > > 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: > > > jsp > > > org.apache.jasp

init-param to JSP

2001-02-06 Thread Rauschuber, Chris
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: jsp org.apache.jasper.runtime.JspServlet