Unable to call a web service from Groovy - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T19:28:21Zhttp://stackoverflow.com/feeds/question/578003http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/578003/unable-to-call-a-web-service-from-groovy0Unable to call a web service from Groovylindelof2009-02-23T15:29:30Z2009-02-28T18:09:39Z
<p>I'm going through the first examples from the new <a href="http://rads.stackoverflow.com/amzn/click/059652112X" rel="nofollow">Java Web Services: Up and Running</a> book. I tried to go through the SOAP client example for Java on page 13, but in Groovy.</p>
<p>So here is my Groovy shell code:</p>
<pre><code>import javax.xml.namespace.QName
import javax.xml.ws.Service
import java.net.URL
url = new URL("http://someURL?wsdl")
qname = new QName("http://someURL", "SomeURLImplService")
service = Service.create(url, qname)
</code></pre>
<p>But this fails with this error:</p>
<pre><code>ERROR groovy.lang.MissingMethodException: No signature of method: \
static javax.xml.ws.Service.create() is applicable for argument types: \
(java.net.URL, javax.xml.namespace.QName) values: {http://someURL?wsdl, \
{http://someURL}SomeURLImplService}
</code></pre>
<p>I do not understand this, since Groovy tells me this method with that signature does indeed exist:</p>
<pre><code>groovy:000> Service.class.getMethods().each {println it}
public static javax.xml.ws.Service \
javax.xml.ws.Service.create(java.net.URL,javax.xml.namespace.QName)
...
</code></pre>
<p>Does anybody know what I am doing wrong here?</p>
http://stackoverflow.com/questions/578003/unable-to-call-a-web-service-from-groovy/581958#5819582Answer by Chris Dail for Unable to call a web service from GroovyChris Dail2009-02-24T14:35:40Z2009-02-24T14:35:40Z<p>I tried to run your code with no modifications and it worked fine for me. Your issue might be related to the Java version or the classpath. The javax.xml.ws (JAX-WS) is only part of the Java SE starting with Java 6. If you are not running this test in Java 6, that might be your problem. That is probably not your issue since if you were not, I would not expect you to be able to resolve those interfaces.</p>
<p>The other thing it might be is a classpath issue. External JAX-WS providers can be plugged into the Java runtime. Do you have anything on your classpath that is the JAX-WS provider? Perhaps it is an earlier version.</p>
http://stackoverflow.com/questions/578003/unable-to-call-a-web-service-from-groovy/586122#5861220Answer by lindelof for Unable to call a web service from Groovylindelof2009-02-25T14:11:05Z2009-02-25T14:11:05Z<p>I tried again by downloading Groovy manually (instead of using the distribution that came with Ubuntu). Now it works. Go figure.</p>