I am using wash_out gem in rails 3.2.22
When buiding a complex type ex: 'AuditCase'
I use the following defenition:
class AuditCase < WashOut::Type
map :caseID => :long,
:periodStart => :dateTime,
end
And it gives me the following…
Here is my problem: One of our client wants to access soap actions with passing action_name in query string. Is it possible to do it with wash_out gem?
example url: http://example.com/dummy_soap/action?action_name=do_something
Any help is…
I am using wash_out to create a soap webservice, this is my controller:
class SignerController < ApplicationController
soap_service
soap_action 'xmlSign', args: {
xml: :string,
certificate: :string
},
return: {
…
I use wash_out from the master branch.
Why I can't use identical data types in different soap actions?
Sample:
soap_action "get_groups",
:args => {:page => :integer},
:return => {:data => [{:id => :integer, :name => :string}], :total =>…
I want to add optional paramteter in soap_action(wash_out) request, here is the code
soap_action "DeActivate_VAS_Request",
:args => {:some_arguments}, :return => {:return_values}
and operation is
…
I am trying to integrate the salesforce with my rails 6 application with the help of Washout
(0.12.0), and Savon
The issue is that I am not able to reach any action within the web service I have created by Washout and Savon gem.
Further code…
When I make wash_out routes with
wash_out :my_controller
it generates two path:
http://myip/my_controller/wsdl - default link to wsdl file
http://myip/my_controller/action - default link to action
I'd like to create specific links, because I…
i build a web service project by wash_out gem ,i can call functions use the Savon gem ,but when i tried to connect to my webservice server by soap.jar in java; its doesn't work , how to write the url of functions? and how to send actions by…
this is my error stack :
> TypeError (no implicit conversion of nil into String):
>
> activesupport (5.0.0.1) lib/active_support/security_utils.rb:23:in `digest'
lib/action_controller/metal/http_authentication.rb:71:in `block in
>…
I'm running Ruby 1.9.3 and Rails 3.1. I can successfully manually test my usage of the Washout gem by sending myself XML payloads. I am trying to recreate the following bash command in a rails test:
curl -H "Content-Type: text/xml; charset=utf-8"…
I am using a library that doesn't handle namespaced models. I have a rails engine that has all the ActiveRecord models that I need to use and as such I reference them with the namespace of the engine, ex: TableEngine::Posts.
Is there a way in Ruby…
Inside a test environment I am using the wash_out GEM within a Ruby on Rails server to run a SOAP service that serves as a Proxy between two different transfer protocols.
At the end of the test run, I would like to quit the Rails server with a…
I am trying to migrate a old webservice in soap made for actionwebservice to a new soap gem.
I found wash_out, it looks a great gem for me, but I am not understanding some things in the official page.
https://github.com/inossidabile/wash_out
I have…