Init parameters for a servlet are specified in
web.xml, using the <init-param> child of the <servlet>
tag.

These can be accessed using the
javax.servlet.GenericServlet.getInitParameter().  So
far, so good.

There's also a getInitParameter() method in the
javax.servlet.ServletContext class.  I thought it,
too, gave access to the <init-param> values.

But in my application, ServletContext doesn't provide
access to the init param names.  My servlet does call
" super.init(config);" in the first line of its init()
method.

It appears that the init params of the servlet and its
context are different.  Can someone clear up this
misunderstanding for me?  Thanks - MOD


__________________________________
Do you Yahoo!?
Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes
http://hotjobs.sweepstakes.yahoo.com/signingbonus

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

Reply via email to