[google-appengine] Re: appcfg.py upload_data authentication failure

2009-07-29 Thread jamesM
Nick, thanks a lot for your help! (though the real bug was a mystic one, probably even as lame as changing the code, not uploading it to the server and working with the server as if it had the new code already:) anyway, now it all works flawlessly! have a good day, james On Jul 28, 1:10 pm,

[google-appengine] Auth options for accessing Reader data

2009-07-29 Thread Dooferlad
Hi, I would like to get access to Google Reader data for use in my web app. It looks like I can't use AuthSub (or if I can I am doing it wrong). Does anyone know what my options are? I can't find any documentation on which authentication mechanisms work with which google applications. Thanks,

[google-appengine] Re: Username as Application Identifier already taken, intended?

2009-07-29 Thread Nick Johnson (Google)
Hi, Initially, we didn't support claiming your own gmail username as an app ID - that feature was added later. Try again now and you should be able to claim that ID for an app. -Nick Johnson On Tue, Jul 28, 2009 at 12:22 AM, Cafebabe ullenb...@googlemail.com wrote: Right after Google App

[google-appengine] Re: UserProperty and bulk uploader

2009-07-29 Thread Nick Johnson (Google)
Hi Tom, All you need to do is provide a conversion function that converts a string to the desired field type. In the case of a User object, that's simply the users.User constructor, which takes an email string. class FooLoader(bulkloader.Loader): def __init__(self):

[google-appengine] Re: Using another SMTP Server

2009-07-29 Thread Nick Johnson (Google)
Hi Ray, There's no way to directly connect to an SMTP server in App Engine - you'll need to use a web service to send emails, and call it from App Engine. -Nick Johnson On Tue, Jul 28, 2009 at 6:33 PM, Ray Malone rayish...@gmail.com wrote: We would like to send out news letters to our

[google-appengine] Re: Getting around joins/in queries

2009-07-29 Thread Mahmoud
Hi Taylor, In our application, we had to solve a similar problem. Basically, we needed to answer the question: what are my friends doing today?. Our initial solution was (pseudo code): events = [] for friend in friends: friend_events = friend.what_are_you_doing_today()

[google-appengine] 2 questions about using google data api from within appengine

2009-07-29 Thread Dave
I'm trying out the basic Google Data API examples within my AppEngine application. I had a couple questions 1) I tried a simple example of requesting a list of a user's documents from within a simple python script on my computer, like this: import gdata.docs.service # Create a

[google-appengine] Re: Need input: developers and Azure VS GAE

2009-07-29 Thread NealWalters
Feel free to contact me about contracting. My website on my profile will lead to my phone. You can see my activity on the Google Python forum for the past few months: http://groups.google.com/group/google-appengine-python/search?group=google-appengine-pythonq=nealwaltersqt_g=Search+this+group

[google-appengine] Registered app not showing

2009-07-29 Thread Daniel Rhoden
What can I do about an app name I registered but doesn't appear in my app list, nor can I register for it now because App Engine thinks it's taken. Who else would really want 'cleanslatesoaps'? Thanks, Daniel --~--~-~--~~~---~--~~ You received this message

[google-appengine] Help on the fetchurl feature [setRequestProperty/set request header has limited length]

2009-07-29 Thread Millton
hi all I'm currently using the GAE java runtime, and when I compose a https request, try to set Authorization header, it will be filtered by GAE, which caused 401 error all the time, the Authorization header is a little longer than basic web auth info, it's used for live contacts REST API. so

[google-appengine] Help on limiation of Authorization header in fetchurl function

2009-07-29 Thread Millton
Hi all I've been using the GAE for a while and there is one feature which fetch a https page from live contact portal , and need a Authorization header, the problem is that the header has a long token as the value, such asAuthoization: Delegated Tokeb dt=xxx..., which was always blocked

[google-appengine] Re: How do you pass variables through a link (url)?

2009-07-29 Thread raamam
Does anyone help me do that in java? Thanks in advance On Jul 23, 1:12 am, Ben bhym...@gmail.com wrote: Matt you will use the request class to retrieve the variable assigned in theurl.   Reference:http://code.google.com/appengine/docs/python/tools/webapp/requestclas... the code would be

[google-appengine] Setting sender's name using MAIL API

2009-07-29 Thread to
Hi, while sending emails through Mail API i've noticed, that even though I set the full sender's name, i.e. Average Joe aver...@joe.com, the email gets sent with only aver...@joe.com as the sender. Is it possible to send emails with full - name and email - sender's credentials? aver...@joe.com

[google-appengine] Re: Type for any types of proprety?

2009-07-29 Thread Daniel Rhoden
A String can go a long way as well. Hopefully your property table has some sane restrictions as to what can go in it. On Jul 29, 2009, at 3:00 AM, Tobias wrote: You may want to use an expando as described here http://code.google.com/appengine/docs/python/datastore/expandoclass.html On

[google-appengine] Anything better than naked domains?

2009-07-29 Thread Daniel Rhoden
At any of the paid levels or free, is there any better support of private domains than just naked domains, mapping appid to http:// appid.yourdomain.com ? For example, lets say I have domain 'mydomain.com' and I registered 'mydomain' on App Engine. It would be pretty silly having people go

[google-appengine] Re: Setting sender's name using MAIL API

2009-07-29 Thread Nick Johnson (Google)
Hi to, This is a known issue: http://code.google.com/p/googleappengine/issues/detail?id=677 . We're working on it. -Nick Johnson* * On Wed, Jul 29, 2009 at 8:52 AM, to toin...@gmail.com wrote: Hi, while sending emails through Mail API i've noticed, that even though I set the full sender's

[google-appengine] Re: Anything better than naked domains?

2009-07-29 Thread Nick Johnson (Google)
Hi Daniel, We don't support 'naked' domains due to issues with the way DNS works (you can't CNAME a 'naked' domain). We are actively looking for a way to resolve this. There's no limitation on what subdomain(s) you can map your app to, however - it doesn't have to be 'mydomain' or anything else.

[google-appengine] Re: Registered app not showing

2009-07-29 Thread Nick Johnson (Google)
Hi Daniel, The app id you mention doesn't exist. It will show up as in use if a gmail account exists with that username. If that's your gmail account, you can sign in with it and use it to create the app. -Nick Johnson On Wed, Jul 29, 2009 at 3:46 AM, Daniel Rhoden drho...@gmail.com wrote:

[google-appengine] Re: Help on limiation of Authorization header in fetchurl function

2009-07-29 Thread Nick Johnson (Google)
Hi Millton, Are you able to give more details? What is the service, and what authentication method does it use? How did you determine that App Engine was not forwarding the Authorization header? -Nick Johnson On Wed, Jul 29, 2009 at 7:50 AM, Millton easywo...@gmail.com wrote: Hi all I've

[google-appengine] Unable to Deploy New Version

2009-07-29 Thread Joshua Smith
I changed the version: attribute in my application, and updated the server. When I try to view the new version, I'm getting: Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please report your problem and mention this error

[google-appengine] Re: Registered app not showing

2009-07-29 Thread Daniel Rhoden
Thanks so much! I DO have that account. If I sign up with that account as well, wouldn't I be in violation of having more than one App Engine Account? Is that ok now? On Jul 29, 2009, at 11:10 AM, Nick Johnson (Google) wrote: Hi Daniel, The app id you mention doesn't exist. It will show

[google-appengine] Re: Anything better than naked domains?

2009-07-29 Thread Paul Kinlan
If you have the server, it is possible to quickly set up a reverse proxy using nginx that will forward the requests (and change the host header from domain.com to www.domain.com) to the app engine, obviously there are latencies and a single point of failure involved. Paul 2009/7/29 Nick Johnson

[google-appengine] Re: Registered app not showing

2009-07-29 Thread Nick Johnson (Google)
Hi Daniel, Signing up with an additional account is fine, as long as you don't use it to create apps that attempt to evade the free quota limits by distributing your traffic across multiple apps. I'll activate your gmail account so you can use it to create the app. Once you've done so, you can

[google-appengine] Re: Anything better than naked domains?

2009-07-29 Thread Nick Johnson (Google)
On Wed, Jul 29, 2009 at 5:37 PM, Barry Hunter barrybhun...@googlemail.comwrote: 2009/7/29 Nick Johnson (Google) nick.john...@google.com: Hi Daniel, We don't support 'naked' domains due to issues with the way DNS works (you can't CNAME a 'naked' domain). We are actively looking for a

[google-appengine] Re: Unable to Deploy New Version

2009-07-29 Thread Joshua Smith
Figured it out. There was a syntax error in my .py file, and I was getting this weird error, instead of the usual stack trace syntax errors usually produce. That's what I get for deploying a trivial change without running it locally first! :)

[google-appengine] Re: Anything better than naked domains?

2009-07-29 Thread Barry Hunter
2009/7/29 Nick Johnson (Google) nick.john...@google.com: On Wed, Jul 29, 2009 at 5:37 PM, Barry Hunter barrybhun...@googlemail.com wrote: 2009/7/29 Nick Johnson (Google) nick.john...@google.com: Hi Daniel, We don't support 'naked' domains due to issues with the way DNS works (you

[google-appengine] Re: Registered app not showing

2009-07-29 Thread Daniel Rhoden
Dag-nabit. I just discovered that I never registered the account cleanslateso...@gmail.com . I did some Googling and found out that account was used at one point by a similar entity (what are the odds??) So sorry for the confusion. I hope this doesn't mess anything up by activating that

[google-appengine] Re: Unable to Deploy New Version

2009-07-29 Thread Daniel Rhoden
I did the same thing and learned that you can't do decimal version number, only integers. (oh the waisted time) On Jul 29, 2009, at 11:53 AM, Joshua Smith wrote: Figured it out. There was a syntax error in my .py file, and I was getting this weird error, instead of the usual stack trace

[google-appengine] Re: Unable to Deploy New Version

2009-07-29 Thread Nick Johnson (Google)
Hi Daniel, Versions are strings, not integers. I believe decimal points are prohibited, however. -Nick Johnson On Wed, Jul 29, 2009 at 6:10 PM, Daniel Rhoden drho...@gmail.com wrote: I did the same thing and learned that you can't do decimal version number, only integers. (oh the waisted

[google-appengine] Re: Task Queue Exception: What does it mean?

2009-07-29 Thread Joshua Smith
Am I asking this question on the right group? The silence from google is deafening here! --~--~-~--~~~---~--~~ 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] Re: Deployment Limit?

2009-07-29 Thread Jeff S (Google)
Hi Jeremy, Could you send me the app ID for this app? I imagine the quota limit is not an issue today, but I'd still like to take a look. How frequently were the new versions being uploaded? Cheers, Jeff On Mon, Jul 27, 2009 at 10:41 PM, JeremyT jpt62...@gmail.com wrote: Hello all! Today

[google-appengine] Logs query

2009-07-29 Thread jc
Is it possible to add an option which can filter by cpu time, that will help on performance analytics. --~--~-~--~~~---~--~~ 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] IP Range and URL Fetch

2009-07-29 Thread r3k
Hi there, One of the providers I'm working with requires that I provide them with an IP range that my requests will be coming from. Does App Engine provide this? Thanks, Allen --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

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

2009-07-29 Thread Nick Johnson (Google)
Hi, If you are having trouble with SMS verification, or want an additional account activated, please fill out the following form: http://appengine.google.com/waitlist/sms_issues (This is from the following FAQ http://code.google.com/appengine/kb/sms .html#error ) Once you fill out this form,

[google-appengine] Re: Noob web programmer seeks Jedi guru

2009-07-29 Thread Mark Essel
Sorry to be slow getting back to you Jeff. I had borked the callback to redirect to the authorize handler. I swapped my emails to be daily and must have missed your reply in the deluge, my apologies. I sincerely appreciate the offer of help! You wouldn't happen to know of a handy scala oauth GAE

[google-appengine] Retrieve source code from appspot

2009-07-29 Thread G
Is there any mechanism to retrieve the deployed source code from appspot ? I have had my laptop stolen and some of my backups are rather stale and in one case non-existant (I know dumbass move). I'm guessing the answer is no but you never know. Thanks G

[google-appengine] Cloud Computing / Python / Django opportunity with NASA in CA

2009-07-29 Thread Mehdi H
Hello Dev Enthusiasts, My name is Mehdi Hanbali and I’m a technical recruiter with TEKsystems. We’re a partner with NASA and they’re currently working to build a Cloud Computer Infrastructure here in Mountain View, CA at NASA Ames Research. It’s a really cool project because of its high

[google-appengine] eclipse adding *.jsp file to war directory

2009-07-29 Thread ping
hello, i have a problem with adding *.jsp files to my project. everytime when im adding such a file eclipse marks it as faulty. There are no concrete error tipps. it only marks the whole file. When i run my application in debug mode everything is okay, but im not able to deploy my application..

[google-appengine] Re: Task Queue Exception: What does it mean?

2009-07-29 Thread Jeff S (Google)
Hi Joshua, Thanks for the feedback and apologies for the slow reply. I'd like to see if I can get more details on what was going on in this particular case to see if we can offer an error message which is more clear. Could you send me your app ID and the task data which is being enqueued? Also,

[google-appengine] Re: DownloadError: ApplicationError: 5

2009-07-29 Thread Jeff S (Google)
Hi condor, The maximum deadline for urlfetch is 10 seconds and it might be possible that the spreadsheets API is taking longer than that to reply even if the expected feed size is small. Have you tried to fetch just a single row entry (instead of a feed query)

[google-appengine] Re: Help on the fetchurl feature [setRequestProperty/set request header has limited length]

2009-07-29 Thread Jeff S (Google)
Hi Michael, Hmmm, the Authorization header should be allowed. There could be a few factors involved that I'd like to learn a bit more about. What are the approximate sizes of the authorization header, the full request. Could you share some of the URLs which these requests are being sent to? Also

[google-appengine] Re: YUI widgets and GAE

2009-07-29 Thread Tim Hoffman
Hi I honestly can't see the why from a yui point of view that the dev server could be any different to the prod server, unless you have slightly different output of the html and/or accompanying styles. I suggest you save the css and html page as rendered on both systems and then do a diff

[google-appengine] Re: Retrieve source code from appspot

2009-07-29 Thread Mahmoud
Hi G, See the Community FAQ here: http://knol.google.com/k/marce/app-engine-community-faqs/vkzeph4si12v/1# Cheers, Mahmoud On Jul 29, 4:14 pm, G badbackj...@googlemail.com wrote: Is there any mechanism to retrieve the deployed source code from appspot ? I have had my laptop stolen and some

[google-appengine] Re: sendmail InvalidSenderError

2009-07-29 Thread thebrianschott
Thanks everyone for your help. I finally realized that the only way to satisfy the gae sendmail requirements is to make my own email address the sender address, -- not the user -- because when the email is sent, no user is involved. This is not the solution I wanted, and I hope it does not prove

[google-appengine] Datastore Design

2009-07-29 Thread Mark Jones
I'm using the AppEnginePatch to get a fairly useful Django implementation. The problem I've run into is that parent/child/ ancestor relationships aren't well supported. I've found a less than pretty workaround for the moment. The link to this discussion is

[google-appengine] Created an application if you like to view and use, you are most welcome !!

2009-07-29 Thread Huzefa
Hi !! Created an application if you like to view and use, you are most welcome !! http://general-ledger.appspot.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group,

[google-appengine] Are there any data recovery mechanisms for google app engine database?

2009-07-29 Thread DiveIntoGAE
If I delete some important datas by mistake, how can I recover them? --~--~-~--~~~---~--~~ 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

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

2009-07-29 Thread G.Jara
Hi Nick, Same issue as other people from Colombia: there is not any Colombian mobile operator listed yet. Could you please activate my account? Thank you. On Jul 29, 3:38 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi, If you are having trouble with SMS verification, or want an

[google-appengine] Re: YUI widgets and GAE

2009-07-29 Thread Djaccb
Your suggestion is a good one to review the css and HTML in both the local and GAE version. I am very puzzled there would be any difference because when I use the appcfg.py routine the local files are uploaded to GAE. There should not be any difference between the two sets of files.

[google-appengine] Re: YUI widgets and GAE

2009-07-29 Thread Tim Hoffman
You may find you have different things in various caches such as the browser cache, intervening proxies etc.. T On Jul 30, 1:17 pm, Djaccb djac...@gmail.com wrote: Your suggestion is a good one to review the css and HTML in both the local and  GAE version. I am very puzzled there would be any