[appengine-java] Help needed : found more than 100 URLMap entries in application configuration

2010-02-26 Thread mably
I'm hitting the Found more than 100 URLMap entries in application configuration limit. What is strange is that I have only 82 url-pattern definitions in my web.xml (many servlets). Is it possible to have it increased by someone at Google? My app ID is webwinewatch. Any help will be greatly

[appengine-java] Re: Datastore migration

2010-02-16 Thread mably
If you need an integrated backup solution in GAE, please star issue : http://code.google.com/p/googleappengine/issues/detail?id=776 On 2 fév, 19:22, Moritz mor...@cloudme.org wrote: Hello everyone, after a couple of versions of my application I found out that I need to change the datamodel

[appengine-java] Re: Local datastore is empty after migrating to 1.3.1

2010-02-12 Thread mably
Same thing happened to me. Got an empty local datastore after updating to 1.3.1. Hopefully I didn't have much data in it. But it might not be the case for everybody. On 12 fév, 09:35, Al Murauski a.murau...@gmail.com wrote: The Development Console tells The datastore is empty after updating

[appengine-java] Re: App Engine cold starts and overly aggressive cycling

2010-02-09 Thread mably
Seems to be the case for me too, I've been noticing instance restarts pretty often these last 2 or 3 days. On 8 fév, 19:02, Ikai L (Google) ika...@google.com wrote: Thanks for the info, Jake. Has anyone else experienced this? That is, has anyone else noticed improvement which has since

[appengine-java] Re: After how much time of no traffic does GAE shut-down the instance

2010-01-10 Thread mably
You might be interested in this issue : http://code.google.com/p/googleappengine/issues/detail?id=2456 On 10 jan, 14:34, Jorge athenas...@gmail.com wrote: It's been some discussion about this topic. You may want to seek posts with words keep warm or cold start, for instance. See also the

[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-12-31 Thread mably
Don't forget to star issue : http://code.google.com/p/googleappengine/issues/detail?id=965 On Dec 31, 3:23 pm, minor-undroid mnrn...@gmail.com wrote: Hi there, I reproduced same problem. I cannot send attachment file and inline image with HTML mail. (Of course, I could send plain text mail

[appengine-java] Re: Generating QR Codes with ZXing

2009-12-26 Thread mably
Here is my ZXing ByteMatrix to PNG encoder, derived from the PNGEncoder from KeyPoint Software distributed under the LGPL license. It generates GrayScale only PNG bar codes. /* * Copyright (C) 2009 Francois Masurel * * This program is free software: you can redistribute it and/or modify * it

[appengine-java] Re: Generating QR Codes with ZXing

2009-12-20 Thread mably
, 18:50, mably fm2...@mably.com wrote: Has anyone successfully used Google ZXing library on GAE for generating QR Codes ? Thanx for your help. François -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send

[appengine-java] Re: Generating QR Codes with ZXing

2009-12-20 Thread mably
) in Javascript, with an Open source code I found after  2 seconds of Googeling. If you want to decode Images, then I think the ZXing code has some AWT dependencies, which aren't GAE whitelisted. -- Roberto On Dec 20, 12:16 pm, mably fm2...@mably.com wrote: More generally, has anybody

[appengine-java] Generating QR Codes with ZXing

2009-12-19 Thread mably
Has anyone successfully used Google ZXing library on GAE for generating QR Codes ? Thanx for your help. François -- 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

[appengine-java] Re: Multipart mail regression in 1.2.8 ?

2009-12-08 Thread mably
If you encounter the same problem, please vote for issue http://code.google.com/p/googleappengine/issues/detail?id=965 On 8 déc, 12:16, mably fm2...@mably.com wrote: Hi Ikai, Effectively the code you provided seems to work but not exactly as I hoped. Before 1.2.8, I was able to send an html

[appengine-java] Re: HttpSession and setMaxInactiveInterval

2009-11-26 Thread mably
The session cookie is lost when you close your browser. So no way to get back to the original session once you reconnect. Nothing in common with an eventual authentication cookie. On 26 nov, 22:32, Peter Hulsen hul...@gmail.com wrote: Hi, I am writing a custom authentication process and like

[appengine-java] Re: Help With Images In Java

2009-11-23 Thread mably
Found this doc on Google, it might help you : http://balusc.blogspot.com/2007/04/imageservlet.html#ImageServletServingFromDatabase On 20 nov, 05:09, java-dev sehgal@gmail.com wrote: hi all, I need some help with images in appengine using java. Now I have sucessfully uploaded an image

[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-11-19 Thread mably
for this limitation could be to store incoming images in the data store on an incoming email, then reference them in the emails that get sent out. It's not ideal, but it may be the solution to what you are looking for. On Wed, Nov 18, 2009 at 3:36 PM, mably fm2...@mably.com wrote: I haven't

[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-11-18 Thread mably
this working outside of App Engine? Do you have working code from that? If there are discrepancies in our implementation of javax.mail.* and standard implementations we should be aware. On Mon, Nov 16, 2009 at 10:30 PM, mably fm2...@mably.com wrote: In fact standards attachments works. But it's

[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-11-18 Thread mably
Of course, the code above doesn't need to be run in mail handler servlet :-) On Nov 19, 12:01 am, mably fm2...@mably.com wrote: I've written a simple class sending an HTML email with an embedded image (cf. below) via GMail SMTP.  It works perfectly fine when run locally from Eclipse

[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-11-18 Thread mably
this. If not, I'll open an issue. On Wed, Nov 18, 2009 at 3:06 PM, mably fm2...@mably.com wrote: Of course, the code above doesn't need to be run in mail handler servlet :-) On Nov 19, 12:01 am, mably fm2...@mably.com wrote: I've written a simple class sending an HTML email with an embedded image

[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-11-16 Thread mably
InternetAddress(RECIPIENT, Recipient));             Transport.send(message);         } catch (MessagingException e) {             throw new ServletException(e);         }     } } On Sat, Nov 14, 2009 at 1:11 AM, mably fm2...@mably.com wrote: Hi Ikai, have you been able to reproduce my Converting

[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-11-14 Thread mably
Hi Ikai, have you been able to reproduce my Converting attachment data failed exception ? I'm still stuck on this strange bug. Thanx for your help. On 11 nov, 00:00, mably fm2...@mably.com wrote: Of course, here is below my email relay servlet class.  What I'm willing to do is to hide my

[appengine-java] Re: Need GAE logs explanation

2009-09-25 Thread mably
is by registering a load-on-startup servlet and logging from its init method). If so, what's likely happening is that you're not including your app initialization when you only time the service method of your servlet. On Thu, Sep 24, 2009 at 11:41 AM, mably fm2...@mably.com wrote: Hello everybody

[appengine-java] Need GAE logs explanation

2009-09-24 Thread mably
Hello everybody, I dont really understand the logs GAE shows me in the admin console : I have a first URI showing a simple search form that gives me : 09-24 08:24AM 30.341 /default/ftsearch.do?_contenttype_=content 200 117ms 103cpu_ms 73api_cpu_ms But my servlet service method lasts only :

[appengine-java] Datastore index deletion

2009-09-24 Thread mably
I tried to use appcfg command line with action update_indexes but it doesn't delete my unnecessary indexes. It seems there is no vacuum action like in the python version, am I right ? So, does anybody have another solution to delete a datastore index with the java SDK ? Francois Bordeaux,

[appengine-java] PDF Generator Library

2009-09-23 Thread mably
Does anybody know of a java PDF generator library working with Google App Engine ? Even a low-level one. Any help would be greatly appreciated. Thanx in advance. Francois Bordeaux, FRANCE --~--~-~--~~~---~--~~ You received this message because you are

[appengine-java] java.lang.IllegalArgumentException: id or name, but not both, must be set in each key path element

2009-09-15 Thread mably
I get this exception in my application. Anybody knows what is it about ? java.lang.IllegalArgumentException: id or name, but not both, must be set in each key path element at com.google.appengine.api.datastore.DatastoreApiHelper.translateError (DatastoreApiHelper.java:29) at