require 'soaspec' # This class is not part of the gem. It's an example of a class you can make # to describe your APIs. Usually this would exist in the 'lib' directory # Common configuration for the Savon client should go here class BLZService < Soaspec::SoapHandler # Add to or override default Savon client options def savon_options { wsdl: 'http://localhost:4999/BLZService?wsdl' } end # # Specifying that get_weather_result must be present in the SOAP response mandatory_elements [:plz] # Example of xpath value that must be true for all success scenarios mandatory_xpath_values 'ns1:bezeichnung' => 'Deutsche Bank' # Example of setting an attribute on the root XML element root_attributes 'Version' => '1' end