java - Skipped installing application listeners due to previous error(s)-Tomcat -


i trying deploy jax-ws on tomcat server , following console output:

`skipped installing application listeners due previous error(s)    - error listenerstart - context startup failed due previous errors` 

i believe has how context configuration file has been set up:

<?xml version="1.0" encoding="utf-8" ?> <context docbase="c:\documents , settings\tomcat" workdir="c:\documents , settings\tomcat\work"   path="/tomcat" reloadable="true"  /> 

or web.xml file:

<?xml version="1.0" encoding="utf-8"?>    <!doctype web-app public "-//sun microsystems, inc.//dtd web application     2.3//en" "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd">    <web-app>    <listener>        <listener-class>            com.sun.xml.ws.transport.http.servlet.wsservletcontextistener     </listener-class>    </listener>    <servlet>    <servlet-name>calculatorpublisher</servlet-name>        <servlet-class>            com.sun.xml.ws.transport.http.servlet.wsservlet        </servlet-class>    <load-on-startup>1</load-on-startup>    </servlet>    <servlet-mapping>        <servlet-name>calculatorpublisher</servlet-name>        <url-pattern>/calculator</url-pattern>    </servlet-mapping>    <session-config>        <session-timeout>60</session-timeout>    </session-config>    </web-app> 

i not figure out how view previous error(s) or if there way that.

i checked logs in tomcat logs directory see going wrong under hood , added correct libraries.


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -