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
|
require 'default.rb'
require 'soap/rpc/driver'
class HwsPort < ::SOAP::RPC::Driver
DefaultEndpointUrl = "http://localhost:2000/"
MappingRegistry = ::SOAP::Mapping::Registry.new
Methods = [
["hello_world", "hello_world",
[
[:in, "from", [::SOAP::SOAPString]],
[:retval, "from", [::SOAP::SOAPString]]
],
"http://localhost:2000/wsdl/hws.wsdl#hello_world", "http://localhost:2000/wsdl/hws.wsdl", :rpc
]
]
def initialize(endpoint_url = nil)
endpoint_url ||= DefaultEndpointUrl
super(endpoint_url, nil)
self.mapping_registry = MappingRegistry
init_methods
end
private
def init_methods
Methods.each do |name_as, name, params, soapaction, namespace, style|
qname = XSD::QName.new(namespace, name_as)
if style == :document
@proxy.add_document_method(soapaction, name, params)
add_document_method_interface(name, params)
else
@proxy.add_rpc_method(qname, soapaction, name, params)
add_rpc_method_interface(name, params)
end
if name_as != name and name_as.capitalize == name.capitalize
sclass = class << self; self; end
sclass.__send__(:define_method, name_as, proc { |*arg|
__send__(name, *arg)
})
end
end
end
end
|