本文介绍了找不到com.sun.xml.rpc.tools.ant.Wscompile的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在 http://mihansmscenter.com/webservice/?wsdl所以我应该使用jax-rpc我将jax-rpc插件添加到我的netbeans中,然后

I need to use a service at http://mihansmscenter.com/webservice/?wsdl so i should use jax-rpc i add jax-rpc plugin to my netbeans then

righ click on my project > New > Web service client >

and set:

WSDL URL:http://mihansmscenter.com/webservice/?wsdl
project: my project
package: smsService
client style: JAX-RPC Style

但是当完成约40%的任务后单击完成时,出现错误:找不到com.sun.xml.rpc.tools.ant.Wscompile

but when click finish after about 40% of task completed there is an error:com.sun.xml.rpc.tools.ant.Wscompile cannot be found

推荐答案

来自Roy Damman的此修复程序对我有用.

罗伊·达曼(Roy Damman)在那个线程上说:

Roy Damman said on that thread:

更改:

wscompile.classpath=${wscompile.tools.classpath}:${j2ee.platform.wscompile.classpath}

收件人:

wscompile.classpath=${wscompile.tools.classpath}:${j2ee.platform.wscompile.classpath}:${javac.classpath}

也许链接保持正常.

这篇关于找不到com.sun.xml.rpc.tools.ant.Wscompile的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 16:34