[appengine-java] Infinite redirection loop...

2011-04-08 Thread Dom Derrien
Here is a behavior I don't how to prevent: - Launching https://anothersocialeconomy.appspot.com/404.html in a browser displays my (poor) 404 page. - Launching it with a trailing character (https:// anothersocialeconomy.appspot.com/404.htmll) starts a loop of redirection with continued appending

[appengine-java] Re: Old Tasks stopped working -- http://gae/api/appversion/cloneblobs?... return HTTP 500!

2010-12-03 Thread Dom Derrien
. = Insanity: doing the same thing over and over again and expecting different results. Albert Einstein On Thu, Dec 2, 2010 at 6:17 PM, Dom Derrien dominique.derr...@gmail.comwrote: Before posting my message here, I looked at various sources to see if someone else

[appengine-java] Old Tasks stopped working -- http://gae/api/appversion/cloneblobs?... return HTTP 500!

2010-12-02 Thread Dom Derrien
Hi, I've an application heavily relying on tasks and sooner this afternoon, the tasks stopped to be scheduled as normal. No error reported, just them having disappeared. Thinking it might be a side-effect of the deprecation of the API from the labs, I updated my environment for 1.4.0, upgraded

[appengine-java] Re: Old Tasks stopped working -- http://gae/api/appversion/cloneblobs?... return HTTP 500!

2010-12-02 Thread Dom Derrien
Forgive me for the noise. Going back to see what's wrong with the tasks. A+, Dom -- On Dec 2, 8:54 pm, Dom Derrien dominique.derr...@gmail.com wrote: Hi, I've an application heavily relying on tasks and sooner this afternoon, the tasks stopped to be scheduled as normal. No error reported

[appengine-java] Re: Tasks SSL

2010-11-09 Thread Dom Derrien
Accatino fht...@gmail.com wrote:  - what error do you receive?  copy and paste log  - try to remove ssl. The connection is internal. (AFAIK) fabrizio On Tue, Nov 9, 2010 at 3:37 AM, Dom Derrien dominique.derr...@gmail.comwrote: Context: - Tasks as defined in http://code.google.com

[appengine-java] Tasks SSL

2010-11-08 Thread Dom Derrien
Context: - Tasks as defined in http://code.google.com/appengine/docs/java/taskqueue/overview.html - Secured URLs as described in http://code.google.com/appengine/docs/java/config/webxml.html In the following excerpts, you can see I want to be sure that only administrators can access over SSL

[appengine-java] Re: Long delay for mail deliveries (15 min)

2010-10-01 Thread Dom Derrien
/r/appengine Twitter:http://twitter.com/app_engine On Wed, Sep 29, 2010 at 7:05 PM, Dom Derrien dominique.derr...@gmail.comwrote: Thanks Ikai for taking a look at the issue. Re: reasonable to expect an email delay 5 minutes, with the 90th percentile of emails being delivered in under 2

[appengine-java] Re: Long delay for mail deliveries (15 min)

2010-09-29 Thread Dom Derrien
or times when email seems to be slower? -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger:http://googleappengine.blogspot.com Reddit:http://www.reddit.com/r/appengine Twitter:http://twitter.com/app_engine On Wed, Sep 29, 2010 at 3:05 AM, Dom Derrien dominique.derr

[appengine-java] Long delay for mail deliveries (15 min)

2010-09-28 Thread Dom Derrien
Hi, Lately, for my app (id: anothersocialeconomy), I've started to notice that many mail messages are delivered after a long delay. Usually, when I can reply to a generated message, I get a feedback by email in a matter of seconds. In GMail, I see the yellow box in bottom right corner announcing

[appengine-java] Mail message dispatch from the web.xml

2010-01-28 Thread Dom Derrien
I've problems setting up specific servlets to respond to mail messages... I've followed the directions given at http://code.google.com/appengine/docs/java/mail/receiving.html to setup a series of three filters: - /_ah/mail/maezel* = MailResponder - /_ah/mail/twitter* = TwitterResponder -

[appengine-java] Re: Mail message dispatch from the web.xml

2010-01-28 Thread Dom Derrien
/receiving.html: 2 mapping definitions have the same name “handleowner”. A+, Dom -- On Jan 28, 1:39 pm, Dom Derrien dominique.derr...@gmail.com wrote: I've problems setting up specific servlets to respond to mail messages... I've followed the directions given at http://code.google.com/appengine

[appengine-java] Re: 1.2.8 SDK Prerelease - help us verify!

2009-12-07 Thread Dom Derrien
()) {       for (QueueStateInfo.TaskStateInfo ti : qsi.getTaskInfo()) {         System.out.println(ti.getTaskName());       }     } Hope this helps, Max On Sat, Dec 5, 2009 at 9:12 PM, Dom Derrien dominique.derr...@gmail.comwrote: Max, I've an issue probably related to my tests that recreate an environement at each

[appengine-java] Re: 1.2.8 SDK Prerelease - help us verify!

2009-12-05 Thread Dom Derrien
Hi Max, To be able cover my code with unit tests, I created a mock class for the App Engine environment (http://github.com/DomDerrien/two-tiers- utils/blob/master/src/Java/com/google/apphosting/api/ MockAppEngineEnvironment.java). As reported in my recent blog post

[appengine-java] Re: 1.2.8 SDK Prerelease - help us verify!

2009-12-05 Thread Dom Derrien
, Dom Derrien dominique.derr...@gmail.com wrote: Hi Max, To be able cover my code with unit tests, I created a mock class for the App Engine environment (http://github.com/DomDerrien/two-tiers- utils/blob/master/src/Java/com/google/apphosting/api/ MockAppEngineEnvironment.java). As reported

[appengine-java] Re: 1.2.8 SDK Prerelease - help us verify!

2009-12-05 Thread Dom Derrien
that allows the tests to verify that the expected tasks have been inserted into the queue. http://github.com/DomDerrien/two-tiers-utils/blob/master/src/Java/com/google/appengine/api/labs/taskqueue/MockQueue.java A+, Dom -- On Dec 6, 12:12 am, Dom Derrien dominique.derr...@gmail.com wrote: Max, I've

[appengine-java] Re: receiving mail demo

2009-11-07 Thread Dom Derrien
Same issue: what I expected to be of type Multipart is of type ByteArrayInputStream... public static String getText(Part message) throws MessagingException, IOException { Object content = message.getContent(); if (message.isMimeType(text/*)) { return (String)