RE: [CONF] Apache Syncope REST API upgrade

2013-02-20 Thread Jan Bernhardt
Hi Syncoper, Here are some more best practices for RESTful APIs. Use PUT if you want to persist an entity as it is. Use POST from any kind of processes. Hence I would recommend to change: PUT /connectors/reload To POST /connectors/reload Best regards. Jan From: conflue...@apache.org

Re: [CONF] Apache Syncope REST API upgrade

2013-02-20 Thread Francesco Chicchiriccò
On 20/02/2013 15:13, Jan Bernhardt wrote: Hi Syncoper, Here are some more best practices for RESTful APIs. Use PUT if you want to persist an entity as it is. Use POST from any kind of processes. Hence I would recommend to change: PUT /connectors/reload To POST /connectors/reload Hi Jan,

Re: [CONF] Apache Syncope REST API upgrade

2013-02-20 Thread Francesco Chicchiriccò
On 20/02/2013 15:15, Francesco Chicchiriccò wrote: On 20/02/2013 15:13, Jan Bernhardt wrote: Hi Syncoper, Here are some more best practices for RESTful APIs. Use PUT if you want to persist an entity as it is. Use POST from any kind of processes. Hence I would recommend to change: PUT