Hi everyone.
I've a question:
in my web.xml I have a lot of servlets that use the same set of parameters
(same param name, same param value). The value of these parameters could
change a lot of time in a month so:
there's a way to write only one set of param name / param value and call it
in all my servlet?
I thought something like
.........
<param set>
<set name>param_set_name</set name>
<param-name>myparam</param-name>
<param-value>myvalue</param-value>
</param set>
<servlet>
<servlet-name>
myservlet
</servlet-name>
<servlet-class>
my.class
</servlet-class>
<init-param>
<param set>param_set_name</param set>
</init-param>
</servlet>
........
Is there yet anything like this or I'm asking for a necessity never found
before?
Thank's a lot to everyone
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]