[appengine-java] Re: warmup requests going crazy (9850 requests in 15 hours)

2011-05-06 Thread pac
Since yesterday, I am also seeing lots fo warm requests and some of them are failing 2011-05-05 11:28:34.515 /_ah/warmup 500 248296ms 1540cpu_ms 0kb 0.1.0.3 - - [05/May/2011:11:28:34 -0700] GET /_ah/warmup HTTP/1.1 500 0 - - 1.350128199943308417.landofproperties.appspot.com ms=248297

[appengine-java] Re: warmup requests going crazy (9850 requests in 15 hours)

2011-05-06 Thread pac
I also saw lots of warm request yesterday and few of them failed with error: EXCEPTION com.google.apphosting.api.DeadlineExceededException: This request (f508b2b459c9812c) started at Today seems to be ok. On May 6, 9:26 am, Aswath Satrasala aswath.satras...@gmail.com wrote: I had this issue

[appengine-java] Re: Blobstore vs. Datastore for HTML files

2011-05-06 Thread Yegor
Brandon, Have you considered storing HTML in compressed form as Datastore blobs? Being plain text HTML should have very high compression ratio. * java.util.zip.GZIPOutputStream is usually no worse than x5, but it is slower * com.ning.compress.lzf.LZFOutputStream should yield x3 compression, but

[appengine-java] Re: Blobstore vs. Datastore for HTML files

2011-05-06 Thread Brandon Donnelson
I haven't yet. Are you storing compressed to save on cost? I am mainly working with images at the moment and sending them to the blobstore so I haven't had the need to consider that yet. Thats interesting point if you are trying to save on cost of storage that way. How much time does it take

[appengine-java] Re: Using BulkUpload into Local Java Dev Server on Mac

2011-05-06 Thread Renan
I've got the same error: error: [Errno 54] Connection reset by peer [INFO] Authentication Failed *Please google, help us. I have to insert by hand the same data from appengine datastore. Please and thanks. But please, help. On Mar 10, 2:28 am, Brian Conneen conn...@gmail.com wrote: I've

[appengine-java] API Channel

2011-05-06 Thread CoDe
First of all hi every1, I have the following bug with api channel. I've builded an chat room, everything is ok so far but sometimes the socket.onmessage function is not refreshing from ChannelService channelService = ChannelServiceFactory.getChannelService(); channelService.sendMessage(new

[appengine-java] xml parsing on GAE servers acts weird

2011-05-06 Thread Richie
Hey guys, I created an app where a user can upload an xml, I display the nodes in a GWT table then the user selects the nodes he/she wants to download. Sounds easy, works perfectly in hosted mode. I use only the base xml parsing, no 3rd party jars in the project (aside from

[appengine-java] java.lang.NoClassDefFoundError: com.sun.org.apache.xerces.internal.dom.DocumentImpl

2011-05-06 Thread racoq
Hello! I'm getting a major headache about an soap web service client/ server example. What is more intriguing is that using part of the following official howto available: https://code.google.com/intl/pt-PT/appengine/articles/soap.html My specs are: Ubuntu 10.04 LTS Eclipse Helios Google

[appengine-java] Re: Deferred Task with non default queue

2011-05-06 Thread Gianni Mariani
Hi Marcel, Yes, it should work in a production server, not on the development server. Are you trying this on the production environment? If so, let me know what your app id is. g On Apr 27, 7:28 pm, Marcel Overdijk marceloverd...@gmail.com wrote: Hi Gianni, If I understand correctly I can

[appengine-java] Re: Google update available for Eclipse?

2011-05-06 Thread David Chandler
http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html GPE is led by the GWT team. You'll also find most discussion about GPE releases on the GWT group: http://groups.google.com/group/google-web-toolkit /dmc On May 6, 12:18 am, Sam Stigler sam.stig...@gmail.com wrote: Hi all, I got a

[appengine-java] Inter-instance communication

2011-05-06 Thread Ion Ionascu
Hello, Could you please tell me what option are available for inter-instance communication? Actually, I'm curious if there other options than memchace and datastore/blob. Thank you, Ion Ionascu www.ionionascu.eu -- You received this message because you are subscribed to the Google Groups

[appengine-java] Re: Remote_api in Java works in Development Server?

2011-05-06 Thread Renan
I'm pretty surprised too! Its a must have feature to solve problems! i've got the same error (no matter what i try): - Authentication Failed at Terminal - Cookie name Path is a reserved token - in Server On Mar 11, 9:17 pm, Brian Conneen conn...@gmail.com wrote: I'm also having the

Re: [appengine-java] xml parsing on GAE servers acts weird

2011-05-06 Thread Stephen Johnson
You don't show what stream you're passing in so I can't comment on if that might be an issue but you should try setting namespaceAware to true like this to see if it will cause the DeferredDocumentImpl to not be used. I use code like this and works fine for me. DocumentBuilderFactory dbf =

[appengine-java] JPA fetching class.anotherClass.attribute

2011-05-06 Thread kidowell
Hello, I am currently working for a university project about digital humanities, basically its an app where you can read books and make and share annotations to it. Im facing a problem that got me stuck for 4 days long now, and I do not know what to do. Here is the tech spec: Annotatio: has

[appengine-java] Randomizing a query

2011-05-06 Thread Brandon Donnelson
I've been playing with randomizing query results. So far its working well for me. I still have more configurations to try. Has anybody else tried randomizing? What I do in brief: 1. query results with desired filter 2. buffer the results into another entity with an incremented index 3. loop the

Re: [appengine-java] xml parsing on GAE servers acts weird

2011-05-06 Thread Brandon Donnelson
I see a java.lang.ClassNotFoundException. Got the libs in war? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email

[appengine-java] Re: java.lang.NoClassDefFoundError: com.sun.org.apache.xerces.internal.dom.DocumentImpl

2011-05-06 Thread Brandon Donnelson
If you pulled the source code in, try renaming(refractor) the source make sure its referencing the correct class. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to

[appengine-java] Re: Uploading a file to the blobstore in Base64 gives wrong filesize in blobinfo. Any work arounds?

2011-05-06 Thread Brandon Donnelson
Wahoo. I'm getting really good results chunking base64 over RPC calls into a entity. After the chunks are all sent, I recombine the chunks and decode into bytes for save the file to blobstore. I am having so much more control with chunking, I'm starting to dig it. :) Brandon Donnelson

[appengine-java] Re: bug with cron job?

2011-05-06 Thread Vik
anyone on this plz? Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Thu, May 5, 2011 at 7:44 AM, Vik vik@gmail.com wrote: Hi A cron job in our system is set to email every first day of month. all of a sudden i am noticing that it is mailing everyday.

Re: [appengine-java] Re: Objectify: IllegalAccessError

2011-05-06 Thread Jeff Schnitzer
Specific GAE SDK version requirements are documented in the Objectify release notes for each version. Code moves fast in appengine-land! Jeff On Tue, May 3, 2011 at 3:19 PM, GeneralSlaine lennart.ben...@gmail.com wrote: Jeff, I'm using 1.3.8 I think reading from this Jar file:

[appengine-java] Re: xml parsing on GAE servers acts weird

2011-05-06 Thread Didier Durand
Hi, You have a ClassNotFoundException on a Xerces class according to your dump: so you are not using the basic xml classes to parse your xml but also xerces. You should add the xerces jar in you lib directory regards didier On May 5, 6:16 pm, Richie richiejr...@gmail.com wrote: Hey guys, I

[appengine-java] Re: Blobstore vs. Datastore for HTML files

2011-05-06 Thread bradr
Ikai, this is what a 1.5MB HTML page looks like: http://svnbook.red-bean.com/en/1.5/svn-book.html :) I can't think of many other examples, outside of single page user guides for open source projects. So your point is very fair, especially given the average HTML files size is ~25 KB. 1MB XML