Skip to content

Instantly share code, notes, and snippets.

@jdunphy
Created May 29, 2009 21:02
Show Gist options
  • Save jdunphy/120208 to your computer and use it in GitHub Desktop.
Save jdunphy/120208 to your computer and use it in GitHub Desktop.
def add_rpc_method_with_soapaction_as(name, name_as, soapaction, *params)
param_def = SOAPMethod.create_rpc_param_def(params)
qname = XSD::QName.new(@namespace, name_as)
@proxy.add_rpc_method(qname, soapaction, name, param_def)
add_rpc_method_interface(name, param_def)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment