user1955672
user1955672

Reputation: 21

Consuming a WSDL in Grails

I have been handed a .WSDL file which I need to test within a Grails Framework.

Any suggestions how to go about this.

Upvotes: 2

Views: 2231

Answers (2)

Burt Beckwith
Burt Beckwith

Reputation: 75671

Take a look at the http://grails.org/plugin/cxf and http://grails.org/plugin/cxf-client plugins. They're easy to use and backed by Apache CXF - https://cxf.apache.org/

The client plugin has a wsdl2java script that will generate code that you can use in your Grails app.

Upvotes: 3

vector
vector

Reputation: 7576

You could start with documentation itself: http://grails.org/Calling+External+WebServices

Upvotes: 2

Related Questions