I am running Eclipse 3.4-m6 JEE version, Java 6
The only plugins I have installed (besides the axis codegen and service
archiver) are the subversive SVN plugins (Subversive SVN connectors, SVN
team provider, JavaHL).
Also to test, I downloaded a clean version of Eclipse 3.3 EE (not extra
plugins) and started a new workspace
(eclipse-jee-europa-winter-win32.zip with Java 6). That also worked for me.
Can you try using a new workspace and see if same error still occur?
Again, all I did was copy backport-util-concurrent-3.1.jar to
eclipse\plugins\Axis2_Codegen_Wizard_1.3.0\lib and add the library entry
in the plugin.xml file
Have you tried to start eclipse in debug mode and see what is output to
the console when the error occurs?
Hopefully you can get it going.
Thanks,
Shawn
Alvarez-Blanes, Gian A wrote:
Hi Shawn,
I tried it yesterday and I just tried it again (since I had not deleted
the plugin reference). It still didn't work. What version of eclipse are
you using and what plugins do you have installed? I want to try it with
a similar configuration and see if I can get it to work.
I'm currently using 3.3 JEE version. I don't have anything else.
Thanks,
Gian A. Alvarez-Blanes
-----Original Message-----
From: Shawn Talbot [mailto:[EMAIL PROTECTED]
Sent: Friday, May 09, 2008 9:59 AM
To: [email protected]
Subject: Re: Error while using Axis2 Code Generator Plugin for Eclipse
Hello,
I was the one with that issue.
Not sure if you did this too but have you also put the following:
<library name="lib/backport-util-concurrent-3.1.jar">
<export name="*"/>
</library>
in the plugin.xml file?
I also did that, though I am not sure if that was required.
Also try to , delete the the reference to the plugin in your workspace:
..workspace/.metadata/.plugins/Axis2_Codegen_Wizard
Thanks,
Shawn
Alvarez-Blanes, Gian A wrote:
Hi,
I've been trying to get the code generator plugin to work since
yesterday with no luck. The problem is that when I click finish at the
end of the wizard I get a
"java.lang.reflect.InvocationTargetException" pop up message. I
noticed that somebody in the mailing lis already posted this problem
and he was told to put the backport-util-concurrent-3.1.jar in the lib
folder of the plugin. This didn't work for me.
I've tried it with Eclipse 3.3 and 3.2.2 with no luck. Is there
anything else that may fix this problem?
Thank you,
**Gian A. Alvarez-Blanes**
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<plugin
id="Axis2_Codegen_Wizard"
name="Axis2 Codegen Wizard Plug-in"
version="1.3.0"
provider-name="Apache Software Foundation"
class="org.apache.axis2.tool.codegen.eclipse.plugin.CodegenWizardPlugin">
<runtime>
<library name="Axis2CodegenWizard.jar">
<export name="*"/>
</library>
<library name="lib/backport-util-concurrent-3.1.jar">
<export name="*"/>
</library>
<library name="lib/geronimo-activation_1.1_spec-1.0.1.jar">
<export name="*"/>
</library>
<library name="lib/annogen-0.1.0.jar">
<export name="*"/>
</library>
<library name="lib/ant-1.7.0.jar">
<export name="*"/>
</library>
<library name="lib/axiom-api-1.2.7.jar">
<export name="*"/>
</library>
<library name="lib/axiom-dom-1.2.7.jar">
<export name="*"/>
</library>
<library name="lib/axiom-impl-1.2.7.jar">
<export name="*"/>
</library>
<library name="lib/commons-logging-1.1.1.jar">
<export name="*"/>
</library>
<library name="lib/axis2-1.4.jar">
<export name="*"/>
</library>
<library name="lib/log4j-1.2.15.jar">
<export name="*"/>
</library>
<library name="lib/neethi-2.0.4.jar">
<export name="*"/>
</library>
<library name="lib/stax-api-1.0.1.jar">
<export name="*"/>
</library>
<library name="lib/wsdl4j-1.6.2.jar">
<export name="*"/>
</library>
<library name="lib/wstx-asl-3.2.4.jar">
<export name="*"/>
</library>
<library name="lib/xmlbeans-2.3.0.jar">
<export name="*"/>
</library>
<library name="lib/XmlSchema-1.4.2.jar">
<export name="*"/>
</library>
<library name="lib/woden-1.0M8.jar">
<export name="*"/>
</library>
<library name="lib/commons-httpclient-3.1.jar">
<export name="*"/>
</library>
<library name="lib/commons-codec-1.3.jar">
<export name="*"/>
</library>
<library name="lib/jibx-bind-1.1.5.jar">
<export name="*"/>
</library>
<library name="lib/jibx-run-1.1.5.jar">
<export name="*"/>
</library>
</runtime>
<requires>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.ui.ide"/>
<import plugin="org.eclipse.core.runtime"/>
<import plugin="org.eclipse.core.resources"/>
<import plugin="org.apache.ant"/>
</requires>
<extension
point="org.eclipse.ui.newWizards">
<category
name="Axis2 Wizards"
id="Axis2_Wizards">
</category>
<wizard
name="Axis2 Code Generator"
icon="icons/icon.gif"
category="Axis2_Wizards"
class="org.apache.axis2.tool.codegen.eclipse.CodeGenWizard"
id="org.apache.axis2.tool.codegen.eclipse.CodeGenWizard">
</wizard>
</extension>
<extension point="org.eclipse.help.toc">
<toc file="help_toc.xml" primary="true" />
</extension>
</plugin>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]