I have a web application that can be deployed to tomcat, but the same application does not start in websphere 8.5.5. I checked the SystemErr.log file, which gives the following information, I can not debug why the application does not start. If I would like to know more about the problem, what should I do.
Application Server Version: Websphere 8.5.5
Java version: java version "1.7.0_25"
OpenJDK workspace (RHEL-2.3.10.4.el6_4-x86_64)
[12/30/13 12:43:01:144 CET] 000000ab SystemErr R Caused by: com.ibm.ws.webcontainer.exception.WebAppNotLoadedException: Failed to load webapp: Failed to load webapp: Context root
Here is the web.xml file
<?xml version="1.0" encoding="UTF-8"?><web-app metadata-complete="true" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <display-name>My Application</display-name> <servlet> <display-name>MyApplication</display-name> <servlet-name>app</servlet-name> <servlet-class>com.seeta.vadali.MyReceiverServlet</servlet-class> <init-param> <param-name>uploadDir</param-name> <param-value>/tmp</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>app</servlet-name> <url-pattern>/any</url-pattern> </servlet-mapping> </web-app>
java guava java-ee-6 websphere websphere-8
Seeta Ramayya Vadali
source share