axis2出现错误

开始弄axis2,1.5版本的,装好后用eclipse新建了一个工程。发现有错误,照着下边的步骤就好了:

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.
原文地址:https://www.cnblogs.com/huqingyu/p/1638904.html