Anything is javax.servlet is container agnostic.

Anything in web.xml should be container agnostic.

Anything in server.xml or the context declaration (mywebapp.xml) is tomcat specific.

-Tim

SH Solutions wrote:

Hi

I am using a DataSource inside a a servlet. Until now I am configuring it
with my own code (Creating instance and using setters.)
What I would like to do now is, I would like to move that database
configuration to the web.xml file.

So far, I have a correct fragmet for server.xml:

    <Resource name="jdbc/dbTest" auth="Container"
type="org.firebirdsql.pool.FBWrappingDataSource"/>

<ResourceParams name="jdbc/dbTest">
<parameter>
<name>factory</name>
<value>org.firebirdsql.pool.FBWrappingDataSource</value> </parameter>
<parameter>
<name>userName</name>
<value>sysdba</value>
</parameter>
...
</ResourceParams>


Anyway, I would like to have it in web.xml instead.
Is there a way to do that? And how do I get hold of that DataSource from my
Java Code?

Is this method compatible with other servlet engines?
I would like to prevent non-standart methods.


Regards, Steffen


BTW: Are HttpSessionListeners and ContextListeners standart or
tomcat-specific?

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



Reply via email to