Exception: WSDL::UnsupportedStyleError

Inherits:
Error
  • Object
show all
Defined in:
lib/wsdl/errors.rb

Overview

Raised when an operation uses an unsupported SOAP style.

Currently, rpc/encoded style operations are not supported. Document/literal and rpc/literal styles are supported.

Examples:

begin
  operation = client.operation('Service', 'Port', 'LegacyOperation')
rescue WSDL::UnsupportedStyleError => e
  puts "Operation style not supported: #{e.message}"
end