Sha256: efa3c549dc89fcebc9867d08c5ec92fc3048ce80663ebede80c6012b7bac0f56

Contents?: true

Size: 777 Bytes

Versions: 2

Compression:

Stored size: 777 Bytes

Contents

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
soaspec-0.0.83 lib/soaspec/generator/lib/blz_service.rb.erb
soaspec-0.0.82 lib/soaspec/generator/lib/blz_service.rb.erb