in reply to (OT) URL Pipes

What do you see the difference being between this and using regular parameters?

i.e. /rest/customer/search?f_name=bob&command=save

Replies are listed 'Best First'.
Re^2: (OT) URL Pipes
by valdez (Monsignor) on Nov 29, 2005 at 13:28 UTC

    There is no real difference, what really matters here is the ordering of commands; in both cases you should write your own 'query' parser, since CGI.pm will not help you with this.
    There are many interesting articles about this topic at The Restful web.

    HTH, Valerio