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

來源:互聯網
上載者:User

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.

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.