I am using savon 2.11.1
gem to get soap request and responses in my rails application. I am creating client Object using
Savon.client(wsdl: "sample_url", ssl_verify_mode: :none)
and invoking
client.call(:method_name, hash)
When I invoke call method I am getting this error from savon.
HTTPError(302)
When I tried the URL from chrome soap client extension I am getting successful response.
Can anyone please help me on fixing this.
Thanks in Advance