Closed sappo closed 9 years ago
@hintjens ping
Sorry, was in a conference. Send a PR for the spec?
On Thu, Oct 8, 2015 at 6:58 PM, Kevin Sapper notifications@github.com wrote:
@hintjens https://github.com/hintjens ping
— Reply to this email directly or view it on GitHub https://github.com/zeromq/rfc/issues/68#issuecomment-146622959.
Sure I can prepare a PR.
On Fr, Okt 9, 2015 at 3:54 , Pieter Hintjens notifications@github.com wrote:
Sorry, was in a conference. Send a PR for the spec?
On Thu, Oct 8, 2015 at 6:58 PM, Kevin Sapper notifications@github.com wrote:
@hintjens https://github.com/hintjens ping
— Reply to this email directly or view it on GitHub https://github.com/zeromq/rfc/issues/68#issuecomment-146622959.
— Reply to this email directly or view it on GitHub.
:-) thanks. I'd do it except I'm in an airport catching a flight and exhausted from too much socializing...
On Fri, Oct 9, 2015 at 3:59 PM, Kevin Sapper notifications@github.com wrote:
Sure I can prepare a PR.
On Fr, Okt 9, 2015 at 3:54 , Pieter Hintjens notifications@github.com wrote:
Sorry, was in a conference. Send a PR for the spec?
On Thu, Oct 8, 2015 at 6:58 PM, Kevin Sapper notifications@github.com wrote:
@hintjens https://github.com/hintjens ping
— Reply to this email directly or view it on GitHub https://github.com/zeromq/rfc/issues/68#issuecomment-146622959.
— Reply to this email directly or view it on GitHub.
— Reply to this email directly or view it on GitHub https://github.com/zeromq/rfc/issues/68#issuecomment-146879322.
No Problem. Have a good flight.
On Fr, Okt 9, 2015 at 4:11 , Pieter Hintjens notifications@github.com wrote:
:-) thanks. I'd do it except I'm in an airport catching a flight and exhausted from too much socializing...
On Fri, Oct 9, 2015 at 3:59 PM, Kevin Sapper notifications@github.com wrote:
Sure I can prepare a PR.
On Fr, Okt 9, 2015 at 3:54 , Pieter Hintjens notifications@github.com wrote:
Sorry, was in a conference. Send a PR for the spec?
On Thu, Oct 8, 2015 at 6:58 PM, Kevin Sapper notifications@github.com wrote:
@hintjens https://github.com/hintjens ping
— Reply to this email directly or view it on GitHub
https://github.com/zeromq/rfc/issues/68#issuecomment-146622959.
— Reply to this email directly or view it on GitHub.
— Reply to this email directly or view it on GitHub https://github.com/zeromq/rfc/issues/68#issuecomment-146879322.
— Reply to this email directly or view it on GitHub.
I'm currently working on a REST (HTTP) to XRAP gateway which works fine up to a certain point. My first issue is with the query string. REST APIs usually use the query string to allow filtering, sorting, selecting and paging of collections. Currently those query parameters cannot be passed with the GET message. My idea is to extend the GET message with a hash that hold these parameters:
The second issue is with custom metadata that one would attach to a GET_OK or GET_EMPTY. Those metadata may be the total size of a collection in case of paging, the API version or Hypermedia links (HATEOS). My idea is again to extend GET_OK message with a hash:
These issues are possibly true for POST, PUT and DELETE as well but I currently don't have a use case to verify.
The third issue is regarding etags in GET_OK. A user might not be the creator or modifier of a resource and thus doesn't know the etag of this resource. Hence it would be helpful to pass the etag of a resource with GET_OK as well, so this client can use it as if none match for its next GET request.