class SOAP::CGIStub

Public Class Methods

new(*arg) click to toggle source
Calls superclass method SOAP::RPC::CGIStub.new
# File lib/soap/compat.rb, line 72
def initialize(*arg)
  super
  methodDef if respond_to?('methodDef')
end

Public Instance Methods

addMethod(receiver, methodName, *paramArg) click to toggle source
# File lib/soap/compat.rb, line 79
def addMethod(receiver, methodName, *paramArg)
  addMethodWithNSAs(@default_namespace, receiver, methodName, methodName, *paramArg)
end
addMethodAs(receiver, methodName, methodNameAs, *paramArg) click to toggle source
# File lib/soap/compat.rb, line 83
def addMethodAs(receiver, methodName, methodNameAs, *paramArg)
  addMethodWithNSAs(@default_namespace, receiver, methodName, methodNameAs, *paramArg)
end
addMethodWithNS(namespace, receiver, methodName, *paramArg) click to toggle source
# File lib/soap/compat.rb, line 87
def addMethodWithNS(namespace, receiver, methodName, *paramArg)
  addMethodWithNSAs(namespace, receiver, methodName, methodName, *paramArg)
end
addMethodWithNSAs(namespace, receiver, methodName, methodNameAs, *paramArg) click to toggle source
# File lib/soap/compat.rb, line 91
def addMethodWithNSAs(namespace, receiver, methodName, methodNameAs, *paramArg)
  add_method_with_namespace_as(namespace, receiver, methodName, methodNameAs, *paramArg)
end