Eclipse Plugin and Apache Axis2 Java Soap - Class not found

I have eclipse 3.5.1 installed with the apache axis2 plugin ...

I try to create my web service by going file -> new-> axis2 service archiver...
I look at the steps and select the bin directory of my project, and when I get to the last step and type in the class name and click on download, it says " Error: Class not found"

I tried every combination of paths, etc. Not sure what to do next.
It looks like a huge headache trying to build one soap service ... any recommendations ...
I was looking forward to writing classes and running this to develop a SOAP service.

+3
source share
1 answer

What exact class is missing?

And did you follow a guide like this ?

I originally used the Axis2 Codegen Wizard and the Axis2 Service Archiver. Initially, I got some error dialogs like java.lang.reflect.InvocationTargetException

alt text (not the same error, I know)

Although I found a way to fix this by adding a few jars to the lib pluggin folder and changing it pluggin.xml, it was not very useful as it just generated the required files and I could not find the debus services.

(the rest of the guide describes its development environment)

You also have this guide in the same idea: " Writing an Apache Axis 2 Web Service Using Tomcat and eclipse "

+2

Source: https://habr.com/ru/post/1764717/


All Articles