Re: [google-appengine] Connect to GMail using JavaMail

2014-05-17 Thread Vinny P
On Fri, May 16, 2014 at 5:49 AM, wrote: > For another hand, there're clients who use OAuth 2.0 3-legged (normal > identification). I can't connect with them to GMail. > Are all client accounts failing the 3-legged OAuth, or are there some accounts that work properly and some that do not? Can yo

Re: [google-appengine] Editing app.yaml file

2014-05-17 Thread Vinny P
On Sun, May 11, 2014 at 5:15 AM, wrote: > Hi I just joined the group. How do I Edit my app.yaml file. > The app.yaml file is a plain text document. You can edit it with your system's default text editor: Notepad, TextEdit, etc. - -Vinny P Technology & Media Advisor Chicago, IL

Re: [google-appengine] UserService isLoggedIn always returns false when using LocalUserServiceTestConfig in JUnit test

2014-05-17 Thread Vinny P
On Thu, May 15, 2014 at 5:41 AM, Patrik M wrote: > and in setup > > userHelper.setEnvAttributes(envAttr).setEnvAuthDomain("example.com"). > setEnvEmail("t...@example.com").setEnvIsAdmin(false).setEnvIsLoggedIn(true > ); > UserService userService = UserServiceFactory.getUserService(); > > userSer

Re: [google-appengine] Re: Wait, what? App Engine doesn't work with latest version of WordPress?

2014-05-17 Thread Jeff Schnitzer
On Dec 17, 2013 2:41 PM, "Vance Hallman" wrote: > > [...] you need to put a little faith in wordpress.org's PHP and javascript team. [...] I don't understand. Usually the punchline of a joke is at the end of a message, not in the middle. Jeff -- You received this message because you are subsc

Re: [google-appengine] Stange log (twice start with two successive requests)

2014-05-17 Thread timh
Tasks need to be written so that they are idempotent (ie can be run again at any point without changing the result). I don't know why you task is being run twice, but this is always a possible but unlikely outcome so they need to be able to deal with this possibility. T On Saturday, May 17, 2

Re: [google-appengine] Stange log (twice start with two successive requests)

2014-05-17 Thread Malleswari
Hi, May I know the reason for running same process in multiple instances. I too faced this in my application, but it was not happened at the time of loading the application instead, it happened while task queue was serving one request. The same request handled twice with different insta