I'm getting a ResourceException with message of "Length Required (411) - Length 
required". Running JSE client against GAE server project. I was running 2.0.8 
but have updated to 2.1m5 and still the same results. I have a Get and Put 
working on a different resource, but on this resource the Post returns the 
error above and never gets into the implementation on the server.

/**
 * Players resource interface.
 */
public interface PlayersResource {

    @Get
    public List<Player> retrieve();

    @Post
    public void store(Player player);
}

(A second problem is the Get runs on the server fine but on the client it 
always returns null instead of an instance of List<Player>).

Relatively new here...I think from the docs this approach is called "internal 
and transparent serialization" of the transferred objects.

Appreciate any ideas you have. Blown almost a couple days on this now.

Dennis

------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2800169

Reply via email to