search for: webapplication_id

Displaying 2 results from an estimated 2 matches for "webapplication_id".

Did you mean: re_application_id
2006 May 24
2
array parameters in web services
I''m working in a web service, actually, I have: class UnifiedLoginApi < ActionWebService::API::Base class CLL_Metadata < ActionWebService::Struct member :key, :string member :type, :string member :value, :string member :webapplication_id, :string member :user_tenfold_id, :string member :login_username, :string end api_method :GetMetadata, :expects => [{:metadata_type => :string}, {:metadata_key => :string}, {:metadata_value...
2006 May 31
0
web services datat types
...member :answerDescription, :string member :answer, :string member :metadata, CLL_Metadata end class CLL_Metadata < ActionWebService::Struct member :key, :string member :type, :string member :value, :string member :webapplication_id, :string member :user_tenfold_id, :string member :login_username, :string end This is the api api_method :GetMetadata, :expects => [ { :metadata => [CLL_Metadata] } ], :returns => [CLL_Answer] and this is the controller for the web ser...