RE: Re: Post method not work when deployed to GAE

2011-04-27 Thread Thierry Boileau
Hello all, the now closed issue 1219 [1] described the solution to this issue. In a few words, a new boolean attribute called entityBuffering has been added to the ClientResource class. When set to true, the entity is first stored in memory then sent to the GAE server. Best regards, Thierry

RE: Re: Post method not work when deployed to GAE

2011-04-27 Thread Thierry Boileau
I forgot to say that the fix is available in the current snapshot and will be part of the 2.1m4 release. Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=2724966

Re: Post method not work when deployed to GAE

2011-01-09 Thread Thierry Boileau
Hello, from what I notice, this has to do with chunked encoding and GAE. I keep on investigating this point. Best regards, Thierry Boileau Hello Thierry, I have installed and run your examples. They work well as expected. Though, there are big differences in the scenarios of your tests and

RE: Re: Post method not work when deployed to GAE

2011-01-09 Thread Thierry Boileau
Hello Joe, I've found what happens. The servlet container modifies the headers when the incoming entity is chunked. It removes the Transfer-Encoding: chunked header, which leads to a wrong interpretation of the incoming entity (see ServerCall#getRequestEntity method). I wonder if we can update

RE: Post method not work when deployed to GAE

2011-01-02 Thread webpost
Hi Joe, I don't have a solution for you but I have been having the same problem. In my search through the forums, I noticed that several others have reported similar problems in recent weeks:

RE: Post method not work when deployed to GAE

2011-01-02 Thread Joe Dec
Hi Orville, I am not sure if all the links you provided are directly linked to the problem : no deserialization of JSON-Data on POST/PUT-Methods. But I might be wrong here. Anyway : this issue will be looked into soon, hopefully: http://restlet.tigris.org/issues/show_bug.cgi?id=1219 - you

RE: Post method not work when deployed to GAE

2010-12-30 Thread Joe Dec
Hello, I've tried Version 2.0.4 which has also this issue: POSTing data to GAE does not work when using the resource.wrap method on the client side. On the GAE, the data object passed to the annotated @post-Method is always null. It works with a locally deployed version. Also, when I do a

RE: Post method not work when deployed to GAE

2010-12-21 Thread Joe Dec
Are there any experiences on this? Is this issue reproducible? Thanks, Joe -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=2692538

RE: Post method not work when deployed to GAE

2010-12-20 Thread Joe Dec
Hello, I have the same issue using the current 2.1-snapshot as of today. Details of the setup: - Restlet Client: --- - Android 2.1-snapshot Libs in Classpath: - jackson-core-asl-1.6.3.jar - jackson-mapper-asl-1.6.3.jar - org.restlet.ext.jackson.jar -

RE: Post method not work when deployed to GAE

2010-12-02 Thread Thierry Boileau
Hello all, this should have been fixed in the current snapshot. Could you give it a try? http://www.restlet.org/downloads/unstable Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=2687285

RE: Post method not work when deployed to GAE

2010-12-01 Thread webpost
I have the same problem. I am using 2.1 milestone 1. I can Get but not Put or Post a Serializable object Mike -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=2687173

RE: Post method not work when deployed to GAE

2010-11-23 Thread Franck SMITH
Hi, I have exactly the same problem, I can send use neither post or put method. Any news ? Thx Regards Hi, I am new in using restlet framework. I followed the first application tutorial to create an application using GAE datastore. Everything works fine on my development environment,