• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Axis webservices on apache-tomcat-6.0.26

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Everyone

This is my first post. I was trying to update my current version of apache-tomcat-6.0.20 to the latest verion apache-tomcat-6.0.26, with an application for publishing webservices using AXIS.

The application was working fine with apache-tomcat-6.0.20 but it is giving the below mentioned error on startup of apache-tomcat-6.0.26 :

May 19, 2010 4:23:41 PM org.apache.catalina.core.AprLifecycleListener init
INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: F:\jdk1.6.0_13\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;e:/BV1TO1_6.0/bin;e:/BV1TO1_6.0/jre/bin;e:/BV1TO1_6.0/jre/bin/hotspot;e:/BV1TO1_6.0/orbix/bin;dummy/bin;e:/BV1TO1_6.0/verity/common;e:/BV1TO1_6.0/verity/_nti40/bin;e:/BV1TO1_6.0/xml/bin;E:/MKS/bin;E:/MKS/bin/x11;E:/MKS/mksnt;E:/Oracle/ora92/bin;C:/Program Files/Oracle/jre/1.1.7/bin;C:/WINNT/system32;C:/WINNT;C:/WINNT/System32/Wbem;.;e:/BV1TO1_6.0/lib;e:/BV1TO1_6.0/lib/objects;e:/BV1TO1_6.0/lib/components;e:/BV1TO1_6.0/orbix/lib;e:/BV1TO1_6.0/rogue/lib;dummy/lib;
May 19, 2010 4:23:41 PM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8099
May 19, 2010 4:23:41 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 644 ms
May 19, 2010 4:23:41 PM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
May 19, 2010 4:23:41 PM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.26
May 19, 2010 4:23:41 PM org.apache.catalina.startup.HostConfig deployDescriptor
INFO: Deploying configuration descriptor host-manager.xml
May 19, 2010 4:23:41 PM org.apache.catalina.startup.HostConfig deployDescriptor
INFO: Deploying configuration descriptor manager.xml
May 19, 2010 4:23:41 PM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory axis
May 19, 2010 4:23:42 PM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory docs
May 19, 2010 4:23:42 PM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory examples
May 19, 2010 4:23:43 PM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory ROOT
May 19, 2010 4:23:43 PM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory ws2.0
May 19, 2010 4:23:44 PM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8099
May 19, 2010 4:23:44 PM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
May 19, 2010 4:23:44 PM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/46 config=null
May 19, 2010 4:23:44 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 2995 ms
May 19, 2010 4:24:46 PM org.apache.coyote.http11.Http11Protocol pause
INFO: Pausing Coyote HTTP/1.1 on http-8099
May 19, 2010 4:24:47 PM org.apache.catalina.core.StandardService stop
INFO: Stopping service Catalina
May 19, 2010 4:24:47 PM org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
SEVERE: A web application appears to have started a thread named [Thread-2] but has failed to stop it. This is very likely to create a memory leak.
May 19, 2010 4:24:47 PM org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap
SEVERE: A web application created a ThreadLocal with key of type [org.apache.axis.utils.XMLUtils.ThreadLocalDocumentBuilder] (value [org.apache.axis.utils.XMLUtils$ThreadLocalDocumentBuilder@1b3278a]) and a value of type [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl] (value [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl@e8f8c5]) but failed to remove it when the web application was stopped. To prevent a memory leak, the ThreadLocal has been forcibly removed.
May 19, 2010 4:24:47 PM org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
SEVERE: A web application appears to have started a thread named [Thread-3] but has failed to stop it. This is very likely to create a memory leak.
May 19, 2010 4:24:47 PM org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap
SEVERE: A web application created a ThreadLocal with key of type [org.apache.axis.utils.XMLUtils.ThreadLocalDocumentBuilder] (value [org.apache.axis.utils.XMLUtils$ThreadLocalDocumentBuilder@8321c8]) and a value of type [org.apache.xerces.jaxp.DocumentBuilderImpl] (value [org.apache.xerces.jaxp.DocumentBuilderImpl@11ee017]) but failed to remove it when the web application was stopped. To prevent a memory leak, the ThreadLocal has been forcibly removed.
May 19, 2010 4:24:47 PM org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap
SEVERE: A web application created a ThreadLocal with key of type [org.apache.axis.utils.XMLUtils.ThreadLocalDocumentBuilder] (value [org.apache.axis.utils.XMLUtils$ThreadLocalDocumentBuilder@8321c8]) and a value of type [org.apache.xerces.jaxp.DocumentBuilderImpl] (value [org.apache.xerces.jaxp.DocumentBuilderImpl@a39de]) but failed to remove it when the web application was stopped. To prevent a memory leak, the ThreadLocal has been forcibly removed.
May 19, 2010 4:24:47 PM org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap
SEVERE: A web application created a ThreadLocal with key of type [org.apache.axis.utils.XMLUtils.ThreadLocalDocumentBuilder] (value [org.apache.axis.utils.XMLUtils$ThreadLocalDocumentBuilder@8321c8]) and a value of type [org.apache.xerces.jaxp.DocumentBuilderImpl] (value [org.apache.xerces.jaxp.DocumentBuilderImpl@15d45d9]) but failed to remove it when the web application was stopped. To prevent a memory leak, the ThreadLocal has been forcibly removed.
May 19, 2010 4:24:47 PM org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap
SEVERE: A web application created a ThreadLocal with key of type [org.apache.axis.utils.XMLUtils.ThreadLocalDocumentBuilder] (value [org.apache.axis.utils.XMLUtils$ThreadLocalDocumentBuilder@8321c8]) and a value of type [org.apache.xerces.jaxp.DocumentBuilderImpl] (value [org.apache.xerces.jaxp.DocumentBuilderImpl@94aa42]) but failed to remove it when the web application was stopped. To prevent a memory leak, the ThreadLocal has been forcibly removed.
May 19, 2010 4:24:47 PM org.apache.coyote.http11.Http11Protocol destroy
INFO: Stopping Coyote HTTP/1.1 on http-8099

After the startup, I am not able to get proper response while calling the exposed APIs of my application.

Waiting eagerly for your help....
 
F is for finger. Can you stick your finger in your nose? Doesn't that feel nice? Now try this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic