Axis2 is not working properly

12,125

I solved this by adding axis2-jaxws.jar in the classpath. You can integrate it with maven : http://mvnrepository.com/artifact/org.apache.axis2/axis2-jaxws

Share:
12,125
Sudarshan Ekambe
Author by

Sudarshan Ekambe

Updated on June 04, 2022

Comments

  • Sudarshan Ekambe
    Sudarshan Ekambe almost 2 years

    When I try to access Services, Validate and Administration link on the URL http://localhost:82/SOAPDemo/, where my Axis2 Web Application is deployed, it gives me the following error :

    Servlet.init() for servlet AxisServlet threw exception

    At the back-end, while apache tomcat 7 is being started in eclipse, it shows me the following warning :

    [WARN] Unable to instantiate deployer org.apache.axis2.deployment.ServiceDeployer;

  • Techie
    Techie almost 8 years
    This does not look like an answer to the question.
  • Andreas Veithen
    Andreas Veithen almost 8 years
    @Nimesh: that's impossible to know because the OP didn't provide more information...
  • Techie
    Techie almost 8 years
    @AndreasVeithen It was not an answer at all when I posted the comment. The last line for the solution was added later on.
  • udoline
    udoline about 7 years
    THX Pierre, that's what the problem solves ... : D I test it with AXIS2 1.7.4 WEB-INF/lib/axis2-adb-1.7.4.jar WEB-INF/lib/axis2-jaxws-1.7.4.jar WEB-INF/lib/axis2-kernel-1.7.4.jar WEB-INF/lib/axis2-metadata-1.7.4.jar WEB-INF/lib/axis2-saaj-1.7.4.jar WEB-INF/lib/axis2-spring-1.7.4.jar WEB-INF/lib/axis2-transport-base-1.7.4.jar WEB-INF/lib/axis2-transport-http-1.7.4.jar WEB-INF/lib/axis2-transport-local-1.7.4.jar WEB-INF/lib/axis2-transport-tcp-1.7.4.jar
  • Ysh
    Ysh almost 7 years
    I used to see this warning but once i added the axis2-Jaxws jar i don't see the warning anymore. Can you let me know why this has happened? what does the jar do to remove the warning?