Grails-Plugin-Consortium / grails-cxf-client

Easy cxf client for grails
http://grails.org/plugin/cxf-client
27 stars 30 forks source link

grails wsdl2java script in Cxf Client plugin does not generate any java classes #35

Open itayglatter opened 10 years ago

itayglatter commented 10 years ago

I'm trying to run in grails the wsdl2java script in eclipse.

The console says :

"Generating java stubs from http://webapi.mymarketing.co.il/Messagi/MessagingService.asmx?WSDL 

Completed wsdl2java"

But in the end it shows TERMINATED and does not generate any java classes.

I can't see what is wrong and where is the error. I've tried it with other wsdl file and it worked fine.

My config.groovy file looks like this: cxf{ client{ MessagingServiceSoapClient{ wsdl = http://webapi.mymarketing.co.il/Messagi/MessagingService.asmx?WSDL //wsdlArgs = ['-autoNameResolution','-frontend','jaxws21'] clientInterface = org.tempuri.MessagingServiceSoap serviceEndpointAddress = http://webapi.mymarketing.co.il/Messagi/MessagingService.asmx

    }

} }

I've found the error is:

cxf ToolErrorListener - src-resolve.4.2: Error resolving component 's:schema' I understand that there is a problem with the tag How can I solve this?