java.lang.ClassNotFoundException: org.apache.axis2.transport.http.AxisAdminServlet

来源:互联网 发布:海底捞营业额的数据图 编辑:程序博客网 时间:2024/05/29 16:11

http://hi.baidu.com/moonhai/blog/item/fa7ed402f741137c3812bbac.html

Step 1 - Windows --> preferences --> Web Services --> Axis 2 --> Select the valid location of the Axis distribution.
Step 2- After creating the dynamic web project and adding the axis support when you try to create the web service, click on run time of apache axis by default its apache axis choose axis 2 instead.

Step3 : Go to the web.xml of your web project replace the below line 我改了这个配置就好了。

<servlet>    <display-name>Apache-Axis Admin Servlet Web Admin</display-name>    <servlet-name>AxisAdminServlet</servlet-name>    <servlet-class>org.apache.axis2.transport.http.AxisAdminServlet</servlet-class>    <load-on-startup>100</load-on-startup>  </servlet>



with

<servlet>    <display-name>Apache-Axis Admin Servlet Web Admin</display-name>    <servlet-name>AxisAdminServlet</servlet-name>    <servlet-class>org.apache.axis2.webapp.AxisAdminServlet</servlet-class>    <load-on-startup>100</load-on-startup>  </servlet>



Step 4 : you may be getting some of the errors/exceptions like class not found.....Actually by default wtp doesn't includes all the jars....
Look into the class name, use the site findjar.com give the class name it will give the jar file name. So you go back to your axis dsitribution, copy that jar and place it into your lib folder. it should work.

You may be needed to redo the step 4 sevral time, but thats safest way coz if you copy all the jars from axis lib to your web app lib you may end up jars conflict as some of the jars may be availble in you server runtime.

原创粉丝点击