Displaying 1 result from an estimated 1 matches for "lesson_plan".
2006 Jul 31
5
ActionWebService API
Hi *,
I need to pass a hash to a webservice, so I defined my API with:
api_method :search,
:expects => [{
:tags => :string,
:assignment => :string,
:resource => :string,
:lesson_plan => :string,
:subject => :string,
:all_types => :string
}], :returns => [[Resource]]
when I try to test the webservice with scaffold the signature doesn''t
seem to be correct:
Resource[] Search(string subject)
What''s happening here ? :)
TIA,
n...