View Savon Request XML without Sending to Server
Using Savon 2 I do it this way, write a method that return the request body from the client. client = Savon::Client.new(….) this is not mentioned in the documentation def get_request # list of operations can be found using client.operations ops = client.operation(:action_name_here) # build the body of the xml inside the message here ops.build(message: … Read more