Results 1 to 1 of 1

Thread: Why isn't roo + GWT RESTful?

Threaded View

  1. #1
    Join Date
    Jul 2010
    Posts
    8

    Default Why isn't roo + GWT RESTful?

    Hi,

    Have a basic GWT app, using
    Code:
    persistence setup --provider DATANUCLEUS --database HYPERSONIC_PERSISTENT 
    ...
    controller all --package ~.web
    Getting the list of the items is done with
    POST /gwtRequest
    with a body such as
    {operation: findEmployeesEntries}
    I would have expected a
    GET /entities/Employees/?page=23

    Getting entity details is done similar, with findEmployee operation.
    I would have expected a
    GET /entities/Employees/14/

    Update is done with a similar POST, instead of PUT, and same on DELETE.

    Why isn't roo + GWT RESTful?
    Last edited by mariusa; Jul 27th, 2010 at 03:20 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •