2

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

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

skaffman
  • 398,947
  • 96
  • 818
  • 769
tavallaie
  • 69
  • 11

1 Answers1

1

This fix from Roy Damman worked for me.

Edit:

Roy Damman said on that thread:

The bug seems to be in /nbproject/project.properties:

Change:

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

To:

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

Maybe this link stays up.

Arjan Tijms
  • 37,782
  • 12
  • 108
  • 140
Paul
  • 245
  • 3
  • 14