[google-appengine] Re: Web Service Server on Google App Engine

2009-07-23 Thread Martin
hi fellows, I am also searching a solution for this problem ... I have a given service provider which only allows WSDL/SOAP ... right now we use axis on the composite side ... but I am open for any other solution on this ... best MK On Jul 6, 12:46 pm, onur wrote: > Thanks for your reply Ben.

[google-appengine] Re: Is anybody experiencing timeout from the data store right now?

2009-07-23 Thread gjs
Hi again, I went ahead and coded a servlet to delete the offending rows/entities where I was using "geo:" and "tel:" prefixed url strings within a LINK data type column within a datastore entity. The DataViewer is now working ok for me again. Thanks Regards On Jul 22, 11:48 pm, gjs wrote: >

[google-appengine] DownloadError: ApplicationError: 5

2009-07-23 Thread abridgedEdition
For the past hour or so, I've been getting the following error in response to a urlfetch request: ApplicationError: 5 Traceback (most recent call last): [omit code that belongs to me...] File "/base/python_lib/versions/1/google/appengine/api/urlfetch.py", line 241, in fetch return rpc.get_r

[google-appengine] Re: Globally monotonic counter

2009-07-23 Thread n8gray
On Jul 23, 3:18 pm, "Nick Johnson (Google)" wrote: > > Memcache is also strongly consistent. Since both APIs are synchronous, by > the time your API call returns, the changes are visible everywhere - so a > datastore write followed by a memcache write will be seen in that order > everywhere. Ther

[google-appengine] Re: Globally monotonic counter

2009-07-23 Thread Nick Johnson (Google)
On Thu, Jul 23, 2009 at 9:44 PM, n8gray wrote: > > Hi Nick, > > Wow, that's impressive! That's a very useful bit of information. Are > memcache writes guaranteed ordered wrt datastore writes as well, or is > it possible for another part of the system to see them in different > orders? Memcach

[google-appengine] Re: Globally monotonic counter

2009-07-23 Thread n8gray
Hi Nick, Wow, that's impressive! That's a very useful bit of information. Are memcache writes guaranteed ordered wrt datastore writes as well, or is it possible for another part of the system to see them in different orders? Cheers, -n8 On Jul 22, 9:56 am, "Nick Johnson (Google)" wrote: > Hi

[google-appengine] if admin to hide code in a template

2009-07-23 Thread loopymonkey
http://code.google.com/appengine/docs/python/users/adminusers.html user = users.get_current_user() if user: print "Welcome, %s!" % user.nickname() if users.is_current_user_admin(): print "Go to admin area" - - - - - - The above shows how to restrict something unless you are admin can you

[google-appengine] Re: adding libraries to the application

2009-07-23 Thread ___daniel___
I've got the same problem :-( Any help? On 20 Jul., 09:26, mangrar wrote: > I'm trying usin Spring Framework with my google app engine app. In my > eclipse project classpath I have the required libraries (spring- > context.jar, spring-beans.jar, spring-web.jar...) but when the > application sta

[google-appengine] Re: Approaches for Picture Storage

2009-07-23 Thread Tim Hoffman
I do it both ways For some things its appropriate to load the image in the datastore (ie image content to be included in a document for instance) and other in other cases for instance a gallery of images I store the images elsewhere ie Picasaweb. T On Jul 23, 1:33 pm, gerard wrote: > Hey ever

[google-appengine] Re: Google App Engine Custom Domain Stopped Working

2009-07-23 Thread Hrishi
Removing and re-adding the 'App Engine' service for this domain in Apps control panel fixed the issue. Is there a way to avoid this issue? Or was it a one-time issue due to app engine downtime yesterday? Thanks, Hrishikesh Bakshi On Jul 23, 6:11 am, "Nick Johnson (Google)" wrote: > Hi casebash,

[google-appengine] Authenticating user for my app and some Google services at the same time?

2009-07-23 Thread dflorey
Hi, I wonder if it is possible to authenticate a user to login to my app and some other Google services (Contacts, Calendar...) at the same time. I've seen a posting that it is possible to authenticate for several Google services with a single request by enumerating them in the scope separated by

[google-appengine] Have to verify AGAIN

2009-07-23 Thread Jaap Taal
Hi, I have to verify my google app account again, even though I all ready registered. I also created some applications allready! Can someone from google please activate my account? Jaap --~--~-~--~~~---~--~~ You received this message because you are subscribed to t

[google-appengine] Re: Problem with "Verify Your Account by SMS"

2009-07-23 Thread Pin Donga
I have the same problem vico.ar has. I'm Argentinian and i can't verify my account. I get the following error: "Mobile Number or Username" On Jul 23, 7:16 am, "Nick Johnson (Google)" wrote: > Hi Martin, > > I've activated your account. > > -Nick Johnson > > > > On Tue, Jul 21, 2009 at 11:25 PM,

[google-appengine] Authenticating user for my app and some Google services at the same time?

2009-07-23 Thread dflorey
Hi, I wonder if it is possible to authenticate a user to login to my app and some other Google services (Contacts, Calendar...) at the same time. I've seen a posting that it is possible to authenticate for several Google services with a single request by enumerating them in the scope separated by

[google-appengine] Can I sell the service(application) with GAE?

2009-07-23 Thread KARi
The service that I constructed on GAE Can the service offer be done to the third party in charge? I am not making the sales partner contract. sorry, I am not accustomed to English. thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribe

[google-appengine] any good ways to deal with the user session?

2009-07-23 Thread Neuron.Lin
user api in google.appengine.api.users doesn't seem so powerful, and i want to manage users by myself. is there any api for user session? or, how can i modify the pages created by create_login_url? --~--~-~--~~~---~--~~ You received this message because you are sub

[google-appengine] Re: No SMS support for my country

2009-07-23 Thread robert.e.hick...@googlemail.com
I am having a simmaler problem (I don't have a phone). --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com To unsubscribe

[google-appengine] Approaches for Picture Storage

2009-07-23 Thread gerard
Hey everyone, I'm trying to figure out, how do applications utilizing App Engine actually store their Pictures? What are the approaches? Do you simply upload it to Datastore? or is it better to host it elsewhere and use Datastore to keep a url? Is there a better solution? I've been searching

[google-appengine] Re: Transactionally updating multiple entities over 1MB

2009-07-23 Thread Nick Johnson (Google)
Hi Juraj, No, there's no limit to the size of an entity group - only on the maximum rate at which you can update entities in a single entity group. -Nick Johnson On Fri, Jul 17, 2009 at 4:03 PM, Juraj Vitko wrote: > > Nick, just one clarification (I can't find in docs) - is there a limit > on

[google-appengine] Re: Google App Engine Custom Domain Stopped Working

2009-07-23 Thread Nick Johnson (Google)
Hi casebash, Can you please try removing and re-adding the 'App Engine' service for this domain in your Apps control panel, and report back if that fixes the error? Also, make sure you don't have anything else, such as Sites, mapped to the www subdomain. -Nick Johnson On Wed, Jul 22, 2009 at 7:5

[google-appengine] Re: Problem with "Verify Your Account by SMS"

2009-07-23 Thread Nick Johnson (Google)
Hi Martin, I've activated your account. -Nick Johnson On Tue, Jul 21, 2009 at 11:25 PM, martin wrote: > > Hi, > I am also having problems with SMS account verification. I keep > getting "Mobile Number or Username" error. > I'm from Taiwan, China. I type +886 and mobile number (no area code > n

[google-appengine] Re: SMS Verfication Troubles

2009-07-23 Thread Nick Johnson (Google)
Hi Vinci, I've activated your account. -Nick On Wed, Jul 22, 2009 at 3:12 PM, Vinci Amorim wrote: > Hi Nick Johnson, > > I´m having the same problem (Brazil). > > > > On Wed, Jul 22, 2009 at 9:52 AM, Nick Johnson (Google) < > nick.john...@google.com> wrote: > >> >> Hi Nicolas, >> >> I've activa

[google-appengine] Re: simultaneous dynamic requests, max blob size, multi-blob?

2009-07-23 Thread Jeff Enderwick
Thanks Nick! On Wed, Jul 22, 2009 at 3:56 AM, Nick Johnson (Google) wrote: > > Hi Jeff, > > When I said 10MB, I was referring to the 10MB request size limit, and > pointing out that the forthcoming blob API will allow storing blobs > larger than that size also. You can currently store anything up

[google-appengine] Re: When will appcfg.py be able to download/check out?

2009-07-23 Thread Nick Johnson (Google)
Hi Jungang, Using a version control system such as SVN or Git is your best bet. App Engine is not intended to be used as version control. -Nick Johnson On Wed, Jul 22, 2009 at 11:46 PM, Juguang XIAO wrote: > This is not a usual case, but people at times may still need it. > > I have two machin

[google-appengine] very high urlfetch error rate

2009-07-23 Thread jianwen
Yesterday,last about 8 hours, the urlfetch error rate was above 20%; Same issue starts again now. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-