show/hide this revision's text 2 example

I think my question would be better explained with a couple of examples...

GET http://myservice/myresource/?name=xxx&country=xxxx&%5Fpage=3&%5Fpage%5Flen=10&%5Forder=name asc

that is, on the one hand I have conditions ( name=xxx&country=xxxx ) and on the other hand I have parameters affecting the query ( _page=3&_page_len=10&_order=name asc )

now, I though about using some special prefix ( "_" in thes case ) to avoid collisions between conditions and parameters ( what if my resourse has an "order" property? )

is there some standard way to handle these situations?

--

I found this example (just to pick one) http://www.peej.co.uk/articles/restfully-delicious.html

GET http://del.icio.us/api/peej/bookmarks/?tag=mytag&dt=2009-05-30&start=1&end=2

but in this case condition fields are already defined (there is no start nor end property)

I'm looking for some general solution...

-- edit, a more detailed example to clarify

Each item is completely indepent from one another... let's say that my resources are customers, and that (luckily) I have a couple millions of them in my db.

so the url could be something like

http://myservice/customers/?country=argentina,last%5Foperation=2009-01-01..2010-01-01

It should give me all the customers from argentina that bought anything in the last year

Now I'd like to use this service to build a browse page, or to fill a combo with ajax, for example, so the idea was to add some metada to control what info should I get

to build the browse page I would add

http://...,%5Fpage=1,%5Fpage%5Flen=10,%5Forder=state,name

and to fill an autosuggest combo with ajax

http://...,%5Fpage=1,%5Fpage%5Flen=100,%5Forder=state,name,name=what%5Fever%5Ftype%5Fthe%5Fuser*

to fill the combo with the first 100 customers matching what the user typed...

my question was if there was some standard (written or not) way of encoding this kind of stuff in a restfull url manner...

show/hide this revision's text 1

standard way of encoding pagination info on a restful url get?

I think my question would be better explained with a couple of examples...

GET http://myservice/myresource/?name=xxx&country=xxxx&%5Fpage=3&%5Fpage%5Flen=10&%5Forder=name asc

that is, on the one hand I have conditions ( name=xxx&country=xxxx ) and on the other hand I have parameters affecting the query ( _page=3&_page_len=10&_order=name asc )

now, I though about using some special prefix ( "_" in thes case ) to avoid collisions between conditions and parameters ( what if my resourse has an "order" property? )

is there some standard way to handle these situations?

--

I found this example (just to pick one) http://www.peej.co.uk/articles/restfully-delicious.html

GET http://del.icio.us/api/peej/bookmarks/?tag=mytag&dt=2009-05-30&start=1&end=2

but in this case condition fields are already defined (there is no start nor end property)

I'm looking for some general solution...