Hi,
Here at my organization we'd been using an app which worked perfectly fine on the current 5.5 tomcat. But now we wished to upgrade our server to version 6.0 . The problem is that the application almost refuses to start up. I had this web.xml modified to
comment out following to atleast make the application folder detected and allow exception handler to work ( I'd put in a test jsp in the folder and it works when I comment following lines).
<listener>
<listener-class>org.apache.axis.transport.http.AxisHTTPSessionListener</listener-class>
</listener>
But the main application gives error that a data source has not been defined. Is there some problem with application or configuration of the newer tomcat?
Please help. Thanks in advance!