To call a Zend_Rest_Server service, you must supply a
GET/POST method argument with a value that is the
method you wish to call. You can then follow that up with any number
of arguments using either the name of the argument (i.e. "who") or
using arg following by the numeric position of the
argument (i.e. "arg1").
Numeric index
Numeric arguments use a 1-based index.
To call sayHello from the example above, you can use either:
?method=sayHello&who=Davey&when=Day
or:
?method=sayHello&arg1=Davey&arg2=Day




