An error occurred while completing process -java.lang.reflect.InvocationTargetException

今天开始整了一下web service 其中安装axis2插件可是让我头疼了一次


1.   下载Myeclipse Axis2插件

      http://archive.apache.org/dist/ws/axis2/tools/1_4_1/ 下载axis2-eclipse-codegen-wizard.zip和axis2-eclipse-service-archiver-wizard.zip

      http://labs.xiaonei.com/apache-mirror/ws/axis2/1_5/axis2-1.5-war.zip 下载axis2-1.5-war.zip

2.解压插件

       将上述两个插件都解压到myeclipse的安装目录下的\eclipse\plugins目录中;

3.       在$ECLIPSE_HOME\eclipse\links目录下增加文件axis-eclipse-plugin.link写入path= myeclipse安装路径\eclipse\plugins

4.       重新启动myeclipse,在file->new->other中即可看到Axis2 Wizards,至此,axis2插件安装成功


在使用codegen插件来从WSDL文件生成代码时,到了最后一步竟然出然了"An error occurred while completing process -java.lang.reflect.InvocationTargetException"的错误,重试N次,结果依然,

从AXIS2的LIB库中复制"geronimo-stax-api_1.0_spec-1.0.1.jar"和"backport-util-concurrent-3.1.jar"文件到Codegen的lib目录中,同时修改plugin.xml文件,添加

<library name="lib/geronimo-stax-api_1.0_spec-1.0.1.jar"> 
         <export name="*"/> 
</library> 
<library name="lib/backport-util-concurrent-3.1.jar"> 
        <export name="*"/> 
</library>

到plugin.xml文件中,保存后重新启动Eclipse即可!


你可能感兴趣的:(eclipse,MyEclipse,service,Path,library,plugins)