hello when i star the tomcat 5.0.19, i am stating with this version,
appears this error in the catalina.log file:

05-may-2004 13:24:27 org.apache.catalina.startup.ContextConfig
applicationConfig
INFO: Falta el archivo web.xml de la aplicaci�nb. Utilizando los
par�metros por defecto
StandardEngine[Catalina].StandardHost[gest.domain.com].StandardContext[]

in the directory of this host i have one dir (WEB-INF) and inside of this
directory the web.xml file.
the configuration for this host in the server.xml file is (as i made in
tomcat 4.1.30):
<Host name="gest.domain.com" debug="0" appBase="/home/www/domain"
unpackWARs="true" autoDeploy="true">
        <Logger className="org.apache.catalina.logger.FileLogger"
directory="logs" prefix="log_log." suffix=".txt"
timestamp="true"/>
        <Context path="" docBase="" reloadable="true" crossContext="true">
                <Resource name="jdbc/DATABASE" auth="Container"
type="javax.sql.DataSource"/>
                <ResourceParams name="jdbc/DATABASE">
<parameter>
        <name>factory</name>
        <value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
</parameter>
<parameter>
        <name>driverClassName</name>
        <value>org.postgresql.Driver</value>
</parameter>
<parameter>
        <name>url</name>
        <value>jdbc:postgresql://127.0.0.1:5432/db</value>
</parameter>
<parameter>
        <name>username</name>
        <value>nvolucionuser</value>
</parameter>
<parameter>
        <name>password</name>
        <value>nvolucion.user</value>
</parameter>
<parameter>
        <name>maxActive</name>
        <value>100</value>
</parameter>
<parameter>
        <name>maxIdle</name>
        <value>20</value>
</parameter>
<parameter>
        <name>maxWait</name>
        <value>-1</value>
</parameter>
<parameter>
        <name>removeAbandoned</name>
        <value>true</value>
</parameter>
<parameter>
        <name>removeAbandonedTimeout</name>
        <value>60</value>
</parameter>
<parameter>
        <name>logAbandoned</name>
        <value>true</value>
</parameter>
</ResourceParams>
</Context>
</Host>


i need load , into my java apps, some values from the web.xml file.
how can i solve it?

the second problem with the tomcat 5.0.19 is:
if i oput my classes into the WEB-INF/classes directory, the system
doesn't found the. i must tro put into the common/classes directory.
how can i solve it?
how must i to configure to sove these 2 problems?�

this configuration into the tomcat 4.1.30 runs well but not into the 5.0.19

thanks


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

Reply via email to