search for: cll_answer

Displaying 3 results from an estimated 3 matches for "cll_answer".

2006 May 24
2
array parameters in web services
...string}, {:metadata_value => :value}, {:webapplication_id => :string}, {:user_tenfold_id => :string}, {:login_username => :string}], :returns => [CLL_Answer] end The problem is as follows, in the function GetMetadata, I need to receive an array of CLL_Metadata objects, and not a single CLL_Metadata object, how can I do it? Rodrigo Dominguez ? Iplan Networks ???????????????Datos Personales rdominguez@iplan.com.ar ??????rorra@rorra.com.ar www.iplan.c...
2006 Nov 07
0
somebody is calling my setters in the webservices!!!
a simple code to define a web service structures: class CLL_Answer < CLL_Struct member :answer, :bool member :answer_description, :string member :error, :bool member :error_description, :string # This is my setter def error_description=(value) @answer_description = nil @error = true @error_description = val...
2006 May 31
0
web services datat types
Ok, this is the model (just two structs) class CLL_Answer < ActionWebService::Struct member :server_status, :bool member :answerDescription, :string member :answer, :string member :metadata, CLL_Metadata end class CLL_Metadata < ActionWebService::Struct member :key, :string member :type,...