[appengine-java] Re: Caching pages.

2010-02-13 Thread abhi
@ bimbo jones - Thanx , thats a good idea, i guess i found out how to use memcache for jsps , jsp has a buffer , so i can save it to memcache :) @Brain - The server should cache JSP's for you- what do you mean by that? Do you mean browser cache? -- You received this message because you are

[appengine-java] Re: Persisting polymorphic classes using the low level API or Objectify

2010-02-13 Thread Krishna
John, Thank you very much for pointing me to Twig. I'll play around with it this weekend and get back to you if I have any questions. Thanks, Shrikrishna On Feb 6, 12:12 am, John Patterson jdpatter...@gmail.com wrote: Hi Shrikrishna , Im not sure about Objectify but Twig supports storing and

[appengine-java] Re: Google Calendar log on GAE: Redirect requested but followRedirects is disabled

2010-02-13 Thread Frederik Pfisterer
Any luck dissabling the warning? If yes, could you post a logging.properties entry or any steps to underake? thanks, Fred On 18 Dez. 2009, 19:56, Pion onlee2...@gmail.com wrote: By using the appropriate URLs as shown on the example,         // The base URL for a user's calendar metafeed (needs

[appengine-java] Re: First access to a jsp takes a while

2010-02-13 Thread Brian
I had this problem as well. Basically your app is running a a Google controlled JVM somewhere. After X seconds of not being used (where X is a number decided on Google based on load, etc) your JVM shuts down. When you get a new request, it has to start up, and then server the request. A simple

[appengine-java] using getResourceAsStream to fetch XSL Sheet

2010-02-13 Thread derkent
I am using a jar which is doing the following : new StreamSource(getClass().getClassLoader().getResourceAsStream(xslPath))); It is loading an xsl style sheet from a jar. If I use the library locally everything is ok, but if I try to do the same thing in an app engine servlet, it can't find the

[appengine-java] grails, first integration test fails

2010-02-13 Thread Sector7B
Hi, it seems some people have luck with grails running in GAE using the plugin. I have the latest versions of groovy, the grails gae plugin, grails, and app engine. Just wrote a simple test. Basically it appears the id doesn't get generated and or saved. Below are the details. I'd appreciate

[appengine-java] Re: How to build a java desktop client for my hosted app engine application ?

2010-02-13 Thread Guwalani Mahendra
Thanks a Lot ! that blog helped me a lot thanks Mahendra On Feb 5, 1:32 am, Ikai L (Google) ika...@google.com wrote: This article should help: http://krasserm.blogspot.com/2010/01/accessing-security-enabled-googl... On Mon, Feb 1, 2010 at 3:23 AM, Guwalani Mahendra

[appengine-java] Re: Problem with Junit Test with JDO

2010-02-13 Thread Moritz
Not sure if you tried already, but I removed the file:/C:/Users/ Timofey.NovaBigBook-PC/Documents/Eclipse/Horoscope/war/ WEB-INF/lib/datanucleus-jpa-1.1.5.jar (the workspace file) from the build path and then all tests were successful. On 13 Feb., 07:07, Timofey Koolin timo...@koolin.ru wrote: I

[appengine-java] Re: Problem with Junit Test with JDO

2010-02-13 Thread Moritz
Not sure if you tried already, but I removed the file:/C:/Users/ Timofey.NovaBigBook-PC/Documents/Eclipse/Horoscope/war/ WEB-INF/lib/datanucleus-jpa-1.1.5.jar (the workspace file) from the build path and then all tests were successful. On 13 Feb., 07:07, Timofey Koolin timo...@koolin.ru wrote: I

[appengine-java] Mobile phone picture message HowTo

2010-02-13 Thread moca
I am able to send a text with an image attachment to a normal email account like hotmail and yahoo and receive both text and image on the other end, but i am having trouble sending a picture message to a mobile phone using the mobile phone subscriber's email suffix like 10digitnumber@vzwpix.com

[appengine-java] Re: Problem with Junit Test with JDO

2010-02-13 Thread Moritz
Remove datanucleus-appengine-1.0.5.final.jar from your build path, but leave it in the WEB-INF/lib folder. On 13 Feb., 07:07, Timofey Koolin timo...@koolin.ru wrote: I use eclipse. I create new project for create Junit tests of my GAE application, add my gae application in

[appengine-java] Re: Problem with Junit Test with JDO

2010-02-13 Thread Moritz
Remove datanucleus-appengine-1.0.5.final.jar from your build path, but leave it in the WEB-INF/lib folder. On 13 Feb., 07:07, Timofey Koolin timo...@koolin.ru wrote: I use eclipse. I create new project for create Junit tests of my GAE application, add my gae application in

[appengine-java] Re: java.io.IOException: Truncated quoted printable data (in 1.3.0 and 1.3.1)

2010-02-13 Thread moca
I started by reading this thread, but still encountered the same problem. (Truthfully i thought i was adding a reply to that thread but seems i started a new one.) I am quite confident i am not doing the wrong thing. It appears that hotmail may not be encoding quoted-printable chars correctly

Re: [appengine-java] Re: java.io.IOException: Truncated quoted printable data (in 1.3.0 and 1.3.1)

2010-02-13 Thread seleronm
Hi, Receive mail there are various conditions for Can you give me more information 1.Can you correctly receive it in case of gmail? (I'm sorry in the idle question. ) 2.Do you do with mail including the attachment? 3.What value is stored in

[appengine-java] Re: Mail with ODT attachment

2010-02-13 Thread seleronm
Hi, I think it is a good idea. On 2月13日, 午前1:34, Peter Ondruska peter.ondru...@gmail.com wrote: Shall we file a bug report for enhancement to include open document formats? What do you think? On Feb 12, 12:05 pm, seleronm seler...@gmail.com wrote: Hi. ODTmight not be able to be used.

[appengine-java] Re: First access to a jsp takes a while

2010-02-13 Thread Spines
That is called a loading request. What I am talking about is not the extra time due to a loading request. I'm talking about the first access to a jsp. I know that it is not a loading request because first I access a simple servlet and experience the extra ~1.5 seconds of the loading request.

[appengine-java] Re: First access to a jsp takes a while

2010-02-13 Thread Spines
By the way, what I am talking about above is an experiment I did to see if a simple jsp experienced this. I first noticed it in my real app which has a loading request time of about 7 seconds due to using Spring MVC and other things. On my real app I noticed that even after the loading request