I am working on a SOAP API that has two operations, and each operation requires API keys and many other attributes. Thus, I was able to make a request through SOAPUI, but I had problems translating this code into a ruby code using shroud jam (version 2).
Here is a screenshot of the searchTours request.

Now, how do I translate it into ruby code using Savon? I tried to follow, but it did not work.
client = Savon.client(wsdl: 'url goes here..')
client.operations
message = {security_key: "SECURITYKEYS", attributes_one: "ValueOne", attribute_two: IntegerValue}
response = client.call(:search_records, message: message)
Error message:
Savon :: SOAPFault: (S: Client) Unable to find the submit method for {url_here} SearchRecords
source
share