I finally made work my App on tomcat, the problem was:
Frist problem with JNDI JDBC resource
Now I have another problem:
I've changed default ROOT Application in Tomcat:
[%CATALINA_HOME%\conf\server.xml]
<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">
<Context path="" docBase="MY_APP" reloadable="true" debug="0" cookies="false"></Context>
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log." suffix=".txt" pattern="%h %l %u %t "%r" %s %b" />
</Host>
Then, after restarting tomcat, I tried to access: AND IT WORKED FINE!
Later I released a new version of MY_APP. I deployed it and I got the original problem AGAIN: Original problem
I checked all the config files, everything seems to be ok, so I tried to access: http://localhost/MY_APP AND IT WORKED! But the problem accessing via http://localhost/ remains...
I've removed all the oher apps from "webapps" directory. Now webapps only contains MY_APP. Accessing via
http://localhost/MY_APP--> it works!http://localhost/--> JNDI JDBC Resource exception
Could you please tell me what I'm doing wrong? I can't found any explanation...
OS: Windows 2008 R2 Standart SP1 JVM: JDK 1.7u10 TOMCAT: apache-tomcat-7.0.34
Thank you!