[appengine-java] Re: gae with spring 2.5.6 , jpa and maven problem

2010-05-16 Thread _mvn__user
Yes i have added all the dependencies . The problem was that the eclipse was using a war directory without all the jars . I added a phase in the pom.xml that copied all the jars to the deploy directory . And invoked that phase using mvn install. But another problem apppears . Maven integration

[appengine-java] Re: IllegalArgumentException: ETA too far into the future

2010-05-16 Thread Joe Fawzy
Hi docs says it is 30 days from new Date() value Joe On May 16, 1:43 am, derkent derkentgib...@gmail.com wrote: oops the bug was in my code instead of a delay or countdown, I was giving a time value, so the delay would have been something like 2010 years. I would still be curios to know what

[appengine-java] Re: Freemarker and Unicode: On local: fine, on cloud: become question mark

2010-05-16 Thread Don Schwarz
We need more information to help with this. Did you compare the HTTP response headers between the DevAppServer and when deployed? On May 15, 9:29 pm, Phuong Nguyen phuongn...@gmail.com wrote: Thanks to Google guys, FreeMarker is now run fine. However, there is still a (small/big/?) problem

Re: [appengine-java] Re: Freemarker and Unicode: On local: fine, on cloud: become question mark

2010-05-16 Thread nicolas melendez
Hi, the Locale can't be changed in development, no? NM On Mon, May 17, 2010 at 12:58 AM, Don Schwarz schwa...@google.com wrote: We need more information to help with this. Did you compare the HTTP response headers between the DevAppServer and when deployed? On May 15, 9:29 pm, Phuong

Re: [appengine-java] Re: Freemarker and Unicode: On local: fine, on cloud: become question mark

2010-05-16 Thread Toby Reyelts
You need to make a call to HttpServletResponse.setContentTypehttp://java.sun.com/products/servlet/2.2/javadoc/javax/servlet/ServletResponse.html#setContentType(java.lang.String)to change the charset for the response. Maybe FreeMarker has a facility somewhere to set that, or maybe you need to do it

[appengine-java] session-enabled false and JSESSIONID

2010-05-16 Thread Sergio Lopes
Hi everybody I'm trying to make a completely stateless application. I configured session-enabled to false and it seems that sessions are not being created in server side (the datastore _ah_session table is not growing anymore). But all requests are setting the JSESSIONID cookie. Why? There is no