I am creating a system in Java / Groovy that includes a dynamic call to Web services. I use JAX-WS to invoke a service with WSDL 1.1, but I could not find useful information on how DII could be implemented to describe WSDL 2.0.
Can any of you point me in the right direction a dynamic call for web services with WSDL 2.0 interfaces?
Thanks in advance, moxn
PS: This message on the mailing list suggests that JAX-WS does not support WSDL 2.0. What other options do I have? Perhaps Apache CXF comes with WSDL 2.0 support?
EDIT: I just tried to dynamically invoke the WSDL 2.0 web service using JAX-WS, but got a WSDL exception. faultCode=INVALID_WSDL: Expected element '{http://schemas.xmlsoap.org/wsdl/}definitions'.It seems that JAX-WS DII does not really work with WSDL 2.0.
source
share