Displaying 2 results from an estimated 2 matches for "return_value_1".
Did you mean:
return_value_2
2006 Aug 14
1
various returns parameters in action web service
I''m working with ActionWebService, building a SOAP Service.
I realize that I can returns various values, in example:
api_method :foo,
:expects [ { :value1 => :int },
{ :value2 => :int } ],
:returns [ { :return_value_1 => :int},
{ :return_value_2 => :string},
{ :return_value_3 => :string} ]
the question is as follows, then in the controller:
def foo
# How do I return the values for return_value_1, return_value_2
# and return_value_3 here?
end
----------...
2006 Aug 14
0
return values in SOAP with Action Web Service
I''m working with ActionWebService, building a SOAP Service.
I realize that I can returns various values, in example:
api_method :foo,
:expects [ { :value1 => :int },
{ :value2 => :int } ],
:returns [ { :return_value_1 => :int},
{ :return_value_2 => :string},
{ :return_value_3 => :string} ]
the question is as follows, then in the controller:
def foo
# How do I return the values for return_value_1, return_value_2
# and return_value_3 here?
end
----------...