1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
require 'echo.rb'
require 'echoMappingRegistry.rb'
require 'soap/rpc/driver'
module WSDL::Group
class Group_porttype < ::SOAP::RPC::Driver
DefaultEndpointUrl = "http://localhost:17171/"
Methods = [
[ "urn:group:echo",
"echo",
[ [:in, "parameters", ["::SOAP::SOAPElement", "urn:grouptype", "groupele"]],
[:out, "parameters", ["::SOAP::SOAPElement", "urn:grouptype", "groupele"]] ],
{ :request_style => :document, :request_use => :literal,
:response_style => :document, :response_use => :literal,
:faults => {} }
]
]
def initialize(endpoint_url = nil)
endpoint_url ||= DefaultEndpointUrl
super(endpoint_url, nil)
self.mapping_registry = EchoMappingRegistry::EncodedRegistry
self.literal_mapping_registry = EchoMappingRegistry::LiteralRegistry
init_methods
end
private
def init_methods
Methods.each do |definitions|
opt = definitions.last
if opt[:request_style] == :document
add_document_operation(*definitions)
else
add_rpc_operation(*definitions)
qname = definitions[0]
name = definitions[2]
if qname.name != name and qname.name.capitalize == name.capitalize
::SOAP::Mapping.define_singleton_method(self, qname.name) do |*arg|
__send__(name, *arg)
end
end
end
end
end
end
end
|