0

I have a WSDL file and want to load it into ruby somehow so I can navigate through it.

Anyone know how to do this?

asdas
  • 1
  • 1
    Could you be more specific? WSDL is just XML, so you should be able to use any XML library to extract information from it. – cam Sep 13 '10 at 19:04

1 Answers1

0

If you really want to "navigate" through a WSDL file, use any XML parser of your choice.

Chances are what you'd rather after is the easiest way to develop a SOAP client in Ruby. If that's the case, you should give Savon a try.

Lars Haugseth
  • 14,721
  • 2
  • 45
  • 49