Failed to see Axis2 plugin for Eclipse

Here's the problem:
I tried several versions of the Eclipse IDE.

eclipse-jee-galileo-SR1-win32
eclipse-jee-galileo-SR2-win32
eclipse-jee-helios-SR2-win32
eclipse-jee-indigo-SR1-win32

Axis2 operating time is equal to axis 2-1.6.1

Axis2 plugin from http://axis.apache.org/axis2/java/core/tools/index.html

org.apache.axis2.eclipse.service.plugin_1.6.1.jar
org.apache.axis2.eclipse.codegen.plugin_1.6.1.jar

I tried to put the jars above in the directories or plugin directories, but could not see the Axis2 wizard under the file → new → different (for all of the above IDEs).

+6
source share
8 answers

In version 1.6.1, plugins really were an issue . You can use 1.6.0 or one of the snapshots .

+2
source

Try applying the package HERE

+1
source

I also got, although 1.4.1 was able to show the axis 2 master for Eclipse Indigo Service Release 2, Build id: 20120216-1857 Java 7 x86 32bit

But, I took the latest version of the snapshot 1.7.0: axis2.eclipse.service.plugin-1.7.0-SNAPSHOT.jar and axis2.eclipse.codegen.plugin-1.7.0-SNAPSHOT.jar

+1
source

It looks like there is a problem with org.apache.axis2.eclipse.service.plugin_1.6.1 and org.apache.axis2.eclipse.codegen.plugin_1.6.1 plugins .

When I fell into the dropins folder in eclipse-jee-indigo -SR1-win32-x86_64. This did not work.

As mentioned above, I downloaded and used the 1.6.2 axis2 plugins and it worked.

+1
source

After a long search for several hours. I understand that the Axis2 module for version 1.6.1 has an error in the apache axis2 mailing list.

Version 1.4 also seems to have a bug! did not check if this is fixed.

I used version 1.3 for Axis2 codegen and service-archieve: http://archive.apache.org/dist/ws/axis2/tools/1_3/ enter the link here

It worked great with eclipse-jee-indigo-SR1-win32.

Unzip the downloaded archives and put in / plugins,

0
source

I encountered the same problem after installing Axis2 1.6.1 for Eclipse Indigo. I did not find the axis masters in the eclipse.

Thanks to Andreas Veitan, the answer to this question, I was able to solve the problem.

Just install the SNAPSHOT versions from the link below.

https://repository.apache.org/content/groups/snapshots/org/apache/axis2/axis2.eclipse.codegen.plugin/SNAPSHOT/

You need to load only 2 jars from here:

  • axis2.eclipse.codegen.plugin-SNAPSHOT.jar
  • axis2.eclipse.service.plugin-SNAPSHOT.jar

Save it in your eclipse / plugins directory. Open eclipse and ctrl + n, you will find Axis wizards!

0
source

You will need this jar file, and you can load this jar file from this one. After that you can download these files
1- axis2-eclipse-codegen-wizard-1.4.zip
2- axis2-eclipse-service-archiver-wizard-1.4.zip

Unzip both files, and then copy all the Axis2_Codegen_Wizard_1.3.0 and Axis2_Service_Archiver_1.3.0 directories into the Eclipse plugins directory.

Eclipse plugin directory (Axis2_Codegen_Wizard_1.3.0 and Axis2_Service_Archiver_1.3.0 already copied)

Now start the eclipse, and then go to File → New → Other, and then expand Axis2 Masks. Here you will find the Eclipse Axis2 code generator and the service archiving wizard.

After rebooting your IDE, you can find your AXIX2

0
source

I ran into a similar problem using the Spring Tool Suite (on top of Eclipse) and had to put the jar files in the drop Spring (STS) folder.

(I used the following jar files in my situation: org.apache.axis2.eclipse.codegen.plugin_1.6.2.jar and org.apache.axis2.eclipse.service.plugin_1.6.2.jar)

0
source

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


All Articles