Unable to call a web service from Groovy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T19:28:21Z http://stackoverflow.com/feeds/question/578003 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/578003/unable-to-call-a-web-service-from-groovy 0 Unable to call a web service from Groovy lindelof 2009-02-23T15:29:30Z 2009-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&gt; 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#581958 2 Answer by Chris Dail for Unable to call a web service from Groovy Chris Dail 2009-02-24T14:35:40Z 2009-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#586122 0 Answer by lindelof for Unable to call a web service from Groovy lindelof 2009-02-25T14:11:05Z 2009-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>