[google-appengine] javax.jdo.JDOUserException Help? Options

2009-06-05 Thread neilecker
Im trying to do a JDO query on the datastore using PM and am getting this error: HTTP ERROR: 500 Portion of expression could not be parsed: @gmail.com. -- Here is the code that is causing the error and im not sure how to solve it. Persist

[google-appengine] Fetching items raises a NotSavedError

2009-06-05 Thread martin
Hi, I have a bit of a problem with my page at the moment, I'm quite new to python/GAE/web dev so hopefully it's something silly and easy to solve ;) First of all, I have this method: class AttachFile(webapp.RequestHandler): def post(self): entry = blobclasses.BlobFile() #fill the entry

[google-appengine] Virus Scanning

2009-06-05 Thread lent
Hi, I have seen in other posting by google person that App Engine has abuse detection system (in the posting I saw it seem like the system was detecting or falsely detecting denial of service attacks). Does App Engine do virus scanning on incoming request information? It seems like something Ap

[google-appengine] Re: urlFetch does not retrieve accentuated characters ?

2009-06-05 Thread Alain de Raynal
Hello again, one week later, the problem is slightly different: When I tried the same operation from the gae servers, urlFetch returns Adri�n B�ltre instead of the expected "Adrián Béltre" The accentuated characters are no longer recognized... Does anybody know what has changed in the past week

[google-appengine] Re: Port 8080

2009-06-05 Thread David Wilson
Are you running any kind of personal firewall product? 2009/6/5 andrijaperovic : > > Hi, > > I have downloaded the Java SDK and Eclipse plugin. I was following > along with the tutorial for creating the guestbook application (or > rather running the GuestbookServlet.java), but when I do Run->Debu

[google-appengine] Re: LANGUAGE_CODE problem

2009-06-05 Thread Takashi Matsuo
Hi, There is a similar issue already reported. http://code.google.com/p/googleappengine/issues/detail?id=583 According this issue, the verbose_name on properties is evaluated when this module loaded, so the translation is done on a very early stage. But in this case, maybe it is not related, I'

[google-appengine] Re: Design Question - Large Datastore Objects

2009-06-05 Thread mscwd01
I think your solution sounds the most elegant Tim... However, I am a little confused. So I would retrieve the desired BaseObject and then how do I retrieve all the SubObjects that hold a reference to it? Can you explain this bit: .subobject_set.all().filter (somefilter) Thanks! On Jun 6, 1:26 a

[google-appengine] Re: Design Question - Large Datastore Objects

2009-06-05 Thread Tim Hoffman
Even easier would be to have every subobject hold a reference to the parent BaseObject Then given any BaseObject you can mybaseobject.subobject_set.all().filter(somefilter) T On Jun 6, 7:27 am, djidjadji wrote: > You can, do two calls to the datastore > > # first get the required BaseObject

[google-appengine] Scheduled Maintenance timing

2009-06-05 Thread davew
Regarding the scheduled maintenance on June 10th (Wednesday) at 4 PM Pacific Time. Would it be possible to have this in the early mornings, or late evenings? During off-peek hours? 4pm PST is prime evening usage time on the East coast, and is kids getting online after school on the West coast.

[google-appengine] Re: Java App Engine Error

2009-06-05 Thread zhnupy
You need to tell eclipse to use the sdk's jre. In the menu windows > preferences go to branch Java > Installed JREs and add your sdk directory there, and select the checkbox on its left. regards On Jun 5, 12:31 am, birds fly wrote: > The error ,I got too. You are java environment config not cor

[google-appengine] Port 8080

2009-06-05 Thread andrijaperovic
Hi, I have downloaded the Java SDK and Eclipse plugin. I was following along with the tutorial for creating the guestbook application (or rather running the GuestbookServlet.java), but when I do Run->Debug as- >Web Application i get an error message saying that the port already has a bind. I chan

[google-appengine] Controling if

2009-06-05 Thread BooRock
Hi There I have some static files (images, css,js). They return HTTP 200 OK code response every time; i want to use HTTP/1.0 304 Not Modified for these static files so is this possible? How can i do? --~--~-~--~~~---~--~~ You received this message because you are

[google-appengine] Re: Design Question - Large Datastore Objects

2009-06-05 Thread djidjadji
You can, do two calls to the datastore # first get the required BaseObject base = BaseObject.all().filter(...).get() if not base: return # then get the SubObjects that link to this BaseObject with the right fields subobjs = SubObject.all.filter('baseref =', base.reffield).filter('somefield >'

[google-appengine] Re: Design Question - Large Datastore Objects

2009-06-05 Thread mscwd01
So the relational model I mentioned would be the better option? Its a pity there isnt a feature to select desired baseObjects and then search within SubObjects linked to that object within a DataStore call... On Jun 5, 9:50 pm, djidjadji wrote: > One huge object would be very inefficient. You h

[google-appengine] Re: Design Question - Large Datastore Objects

2009-06-05 Thread djidjadji
One huge object would be very inefficient. You have to retrieve the whole lot every time you get() a BaseObject. You are limited to a total size of 1 Mbyte per object. Much cleaner is the approach with the two object Models. Now you can have an unlimited number of SubObjects and let the index do

[google-appengine] Re: Gmail API?

2009-06-05 Thread David Wilson
If all you need is access to the user's address book, the Google Contacts API works for that AFAIK: http://code.google.com/apis/contacts/ 2009/6/5 GenghisOne : > > Is there an API for Gmail and if so is there some documentation that > explains how to use it? > > Thx much. > > > -- It is

[google-appengine] Re: Gmail API?

2009-06-05 Thread Charlie
Yeah. This is unfortunate, since app engine can't make pop or imap calls since they're not HTTP. On Jun 5, 1:48 pm, johntray wrote: > No API, just the standard pop and imap interfaces. (I don't know where > those are documented, but I presume they can be readily found online.) > > On Jun 4, 8:47

[google-appengine] Re: LANGUAGE_CODE problem

2009-06-05 Thread Jarek Zgoda
http://docs.djangoproject.com/en/dev/topics/settings/#altering-settings-at-runtime "You should not alter settings at runtime". >From my experience - altering settings sometimes works and sometimes not. On 4 Cze, 17:36, wilmersarmiento wrote: > Hi, > > I'm working with the form validation frame

[google-appengine] Re: Web Services

2009-06-05 Thread mscwd01
I have implemented a RESTful web service using Restlet: http://blog.noelios.com/2009/04/11/restlet-in-the-cloud-with-google-app-engine/ It was fairly straightforward to set up. Regarding your question about the client needing to specify the google account credentials - this is a question i'd lik

[google-appengine] Re: Gmail API?

2009-06-05 Thread johntray
No API, just the standard pop and imap interfaces. (I don't know where those are documented, but I presume they can be readily found online.) On Jun 4, 8:47 pm, GenghisOne wrote: > Is there an API for Gmail and if so is there some documentation that > explains how to use it? > > Thx much. --~--

[google-appengine] help with number of application

2009-06-05 Thread gops
hi , i have used all my application quota ( ah.. i am getting so many ideas for apps ) .. is it possible to increase the quota so that i do not have to use my other id ?? --- and is it possible that even if we do not able to delete application -- we can disable it -- so that we can have spare spa

[google-appengine] Re: Only own domain, not appspot.com

2009-06-05 Thread gops
try this: http://appengine-cookbook.appspot.com/recipe/redirect-from-appspot-to-your-domain On Jun 5, 5:30 am, Shane wrote: > Hi, > > I'm sure I know the answer to this already, but is it possible to make > the domain 'myappid.appspot.com' invisible? I have pointed my own > domain to the GAE ap

[google-appengine] Design Question - Large Datastore Objects

2009-06-05 Thread mscwd01
Hi, I have a question regarding the best method of storing a complex object which may grow to be very large in size. I have an object 'BaseObject' which has a field of type List. I wish to add many SubObject's to BaseObjects, perhaps millions. When querying a SubObject I will first retrieve the

[google-appengine] Issue with urlfetch after upload (no problem in local development environment) Error: raise DownloadError(str(e)) DownloadError: ApplicationError: 2

2009-06-05 Thread zellerfossil
Dear Google App Engine Group, since a couple of days I am developing an application within GAE to communicate with Amazon's Mechanical Turk REST API. Everything is working perfectly when I am testing locally in my development environment. After I upload my application to GAE I keep geeting Errors

[google-appengine] Re: Java App Engine Error

2009-06-05 Thread birds fly
The error ,I got too. You are java environment config not correct. and maybe you were App Enginer Eclipse Java Environment config error. 2009/6/5 nikhil bharadwaj > I was developing a web app with a few static html's , jsp's and servlets. > > I got this error message: > > Compiling module com.we

[google-appengine] App Engine work for a startup

2009-06-05 Thread Lou
Hi, We're seeking an App Engine developer for some development in a company we're starting up. With solid income streams in the pipeline, we are offering a competitive rate for the work being done. The work is clearly specified, and communication will be done with a fellow developer (who is rea

[google-appengine] Web Services

2009-06-05 Thread bsautner
I am seeing a lot of variations on this question where i think some other people are getting stuck on this. I'm sorry my SOA expertise comes from the world of .net that i've painfully extracted myself from. I know i'm missing some basic info on SOA and Java - If anyone can help point me in th

[google-appengine] Re: GAE Utilities

2009-06-05 Thread Wooble
It needs to be deployed along with your application, same as any third- party library. On Jun 5, 8:54 am, J Singh wrote: > I'm confused about the best way to deploy GAE utilities' session module. > > The documentation says to use: > >   from appengine_utilities.sessions import Session >   self.s

[google-appengine] GAE Utilities

2009-06-05 Thread J Singh
I'm confused about the best way to deploy GAE utilities' session module. The documentation says to use: from appengine_utilities.sessions import Session self.session = Session() Does that mean appengine_utilities is already available as a module on GAE and I just need to reference it? Or do