suren
suren

Reputation: 981

Ruby gem for consuming Webservices wsdl with xsd:import


We need to consume a webservices which got a WSDL that uses xsd:import for Data Types definitions. savon gem doesn't support as it uses wasabi.
We are using Ruby 1.9.2
Could you please suggest me some gems.

Regards Surendran

Upvotes: 14

Views: 1785

Answers (1)

Steffen Roller
Steffen Roller

Reputation: 3494

Unfortunately there doesn't seem any Gem out there which does what you want. My proposal for this situation:

  1. use SoapUI to examine the Web Service
  2. write your client using Savon http://savonrb.com

I've done this several times, there are a lot of people here who can help you with that approach.

Upvotes: 4

Related Questions