Turk
Turk

Reputation: 232

What is the best way to send a SOAP request in Ruby on Rails?

I want to send a SOAP request to a server that requires authentication. I've tried doing some of the methods in the HTTP:NET documentation but basic auth won't work. What would be the best way to contact this server with a user agent? I usually always get a connection time out error (500).

Upvotes: 2

Views: 3333

Answers (1)

avinoth
avinoth

Reputation: 430

Savonrb gem will be helpful for you in this case.

It is a ruby SOAP client to make SOAP communications easier. Also, check out this Railscasts episode to get started.

Upvotes: 4

Related Questions