Displaying 1 result from an estimated 1 matches for "iscorrectapi".
2006 Jul 24
1
XMLRPC WebService and Structs
...t;
</member>
</struct>
</value>
</member>
</struct>
</value>
</param>
</params>
</methodResponse>
Now, by the looks of things I need to do something like.
class IsCorrectApi < ActionWebService::API::Base
api_method :isValid,
:expects =>[MyCall,{:code=>:string}],
:returns =>[Success,MyResult]
end
class MyCall < ActionWebService::Struct
member :username,:string
member :password,:string
member :remoteip,:string
end
class MyRe...