Created
May 29, 2009 21:02
-
-
Save jdunphy/120208 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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