I wanted to consume SOAP web service in Ruby.
This SOAP web service has attachment which expects zip file to be sent. How to send zip attachment through ruby
I use Savon gem to connect to SOAP Webservice
I wanted to consume SOAP web service in Ruby.
This SOAP web service has attachment which expects zip file to be sent. How to send zip attachment through ruby
I use Savon gem to connect to SOAP Webservice
As far as I'm concerned, there is not support of attachments in savon
.
Try using savon-multipart
, or soap4r
.
Check out this question How do I use Ruby's SOAP::Attachment class?