On Nov 23, 2010, at 6:28 AM, Lorin Rivers wrote:
> 
> How can I perform an 'OR' request with a url? Or pass a list using a url?
> 
> I have 'AND' figured out…

I'm not quite sure what you're asking here, but I'm guessing that you're 
interpreting the '&' in a query string as 'and'. But it's not; it's just a 
separator, punctuation. What you want the handler to do with the arguments is a 
matter of convention and agreement.

A somewhat limited way to do it would be to put your operator in args:

http://domain.com/app/ctlr/fcn/or?item1&item2&item3
http://domain.com/app/ctlr/fcn/and?item1&item2&item3
http://domain.com/app/ctlr/fcn/list?item1&item2&item3

Reply via email to