Hi, I have an annotation to chapter 6.3 Call Encoding Using HTTP GET. Is there a benefit from making the procedure name appearing as the last component of the URI path? I would prefer to transmit it in the same way as the params like: path?procedure=sum&a=10&b=20.

Hi, The problem would be :

  • how to send a parameter called "procedure" ?

Some URI APIs use $ as magick first char for get vars having a special meaning this would allow $method and $id:

GET /path?$method=sum&$id=12&a=10&b=20