Yatin Kumbhare
Yatin Kumbhare

Reputation: 294

Not able to see Axis2 Plugin for Eclipse

Here's the problem:
I tried with multiple Eclipse IDE versions.

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

Axis2 runtime is axis2-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

Tried putting above jars into either dropins or plugin directories, but not able to see Axis2 Wizard under File -> New -> Other (for all of the above eclipse IDEs).

Upvotes: 6

Views: 23680

Answers (8)

Toothless Seer
Toothless Seer

Reputation: 838

I encountered a similar issue using Spring Tool Suite (on top of Eclipse) and had to place my jar files into the spring (STS) dropin folder.

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

Upvotes: 0

GAURAV KUMAR GUPTA
GAURAV KUMAR GUPTA

Reputation: 796

You will need this jar file and you can download this jar file from this link. 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 directories Axis2_Codegen_Wizard_1.3.0 and Axis2_Service_Archiver_1.3.0 in Eclipse plugins directory.

Eclipse plugins 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--> Others and then expand "Axis2 Wizards". Here you will find the Eclipse Axis2 Code generator and Service Archiver wizards.

After that restart your IDE you can find your AXIX2

Upvotes: 0

Hima13
Hima13

Reputation: 1

I faced the same problem, after installing Axis2 1.6.1 for Eclipse Indigo. Did not find the Axis wizards in eclipse.

Thanks to Andreas Veithen's answer above, I was able to fix 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 will need to download only 2 jars from here:

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

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

Upvotes: 0

gkumar666
gkumar666

Reputation: 11

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 dropped under dropins folder in eclipse-jee-indigo-SR1-win32-x86_64. It didn't work.

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

Upvotes: 1

Subba Reddy
Subba Reddy

Reputation: 21

I also got thru though the 1.4.1 was able to show up axis2 wizard for Eclipse Indigo Service Release 2, Build id: 20120216-1857 Java 7 x86 32bit

But, picked up the latest snapshot 1.7.0 version: axis2.eclipse.service.plugin-1.7.0-SNAPSHOT.jar and axis2.eclipse.codegen.plugin-1.7.0-SNAPSHOT.jar

Upvotes: 1

Bassel Kh
Bassel Kh

Reputation: 1977

Try to apply the batch provided HERE

Upvotes: 1

Yatin Kumbhare
Yatin Kumbhare

Reputation: 294

After googling around for few hours. I figure it out that Axis2 Plug-in for Version 1.6.1 have bug on apache axis2 mailing list.

Looks like version 1.4 also have bug! didn't check whether it got fixed or not.

i used version 1.3 for Axis2 codegen & service-archieve from: http://archive.apache.org/dist/ws/axis2/tools/1_3/enter link description here

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

Unzip the downloaded archives and put into /plugins,

Upvotes: 0

Andreas Veithen
Andreas Veithen

Reputation: 9164

There was indeed an issue with the 1.6.1 versions of the plugins. You can use 1.6.0 or one of the snapshot builds.

Upvotes: 2

Related Questions