[appengine-java] Is replyTo supposed to work when sending emails?

2009-12-04 Thread Guillaume Laforge
Hi all, I specified a replyTo when building a message I'm sending from my application. I'm sending with my authorized email address, but setting a different replyTo, corresponding to the email a user has entered in a contact form. However, the email I receive doesn't seem to exhibit the replyTo I

Re: [appengine-java] Is replyTo supposed to work when sending emails?

2009-12-04 Thread Guillaume Laforge
So I guess I'm not dreaming, replyTo is not respected. Should I file an issue in the bug tracker about this? On Fri, Dec 4, 2009 at 13:45, david ruescas fastn...@gmail.com wrote: Ive observed the same behaviour -- You received this message because you are subscribed to the Google Groups

Re: [appengine-java] Is replyTo supposed to work when sending emails?

2009-12-04 Thread Guillaume Laforge
Actually, I've had a look at the message headers, and I do see a reply to: Reply-To: f...@bar.com But it's when I hit reply in Gmail that it replies to the sender and not the replyTo. So perhaps it's more a problem of Gmail itself than of the SDK? David, have you experienced this when replying

Re: [appengine-java] Is replyTo supposed to work when sending emails?

2009-12-04 Thread david ruescas
I cant remember right now, but ill get back to you On 12/4/09, Guillaume Laforge glafo...@gmail.com wrote: Actually, I've had a look at the message headers, and I do see a reply to: Reply-To: f...@bar.com But it's when I hit reply in Gmail that it replies to the sender and not the replyTo.

Re: [appengine-java] App Engine SDK 1.2.8 released including new Admin Console features

2009-12-04 Thread Vince Bonfanti
Is SDK 1.2.8 going to be added to the Eclipse update site? Vince On Thu, Dec 3, 2009 at 6:06 PM, App Engine Team appengine.nore...@gmail.com wrote: The App Engine team has been hard at work tackling our the issues on our tracker, tweaking APIs and closing bugs. In addition to a ton of bug

[appengine-java] Re: Help Requested: How to persist a HashMapString, T extends Object?

2009-12-04 Thread datanucleus
JDOHelper.makeSerializedDirty(object); Maybe best not to call it JDOHelper since that class is already defined and you'll give people the impression that this is a valid method on that (standard) class, and the method clearly wont work for classes using XML metadata. -- You received this

[appengine-java] unable to deploy new versions after upgrade to 1.2.8

2009-12-04 Thread jacek.ambroziak
I am going through all the usual motions and yet the deployment of a new version never finishes successfully; instead I am getting java.lang.RuntimeException: Version not ready. in the /tmp log -- You received this message because you are subscribed to the Google Groups Google App Engine for

Re: [appengine-java] unable to deploy new versions after upgrade to 1.2.8

2009-12-04 Thread Raphael André Bauer
On Fri, Dec 4, 2009 at 6:32 PM, jacek.ambroziak jacek.ambroz...@gmail.com wrote: I am going through all the usual motions and yet the deployment of a new version never finishes successfully; instead I am getting java.lang.RuntimeException: Version not ready. in the /tmp log I had the same

Re: [appengine-java] unable to deploy new versions after upgrade to 1.2.8

2009-12-04 Thread Don Schwarz
Yes, it should be fixed now. Let us know if you're still having trouble. On Fri, Dec 4, 2009 at 11:35 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: On Fri, Dec 4, 2009 at 6:32 PM, jacek.ambroziak jacek.ambroz...@gmail.com wrote: I am going through all the usual motions and

[appengine-java] Re: javax.jdo.JDOObjectNotFoundException: Could not retrieve entity of kind Transactions with key Transactions(Transactions(67))

2009-12-04 Thread zackmac
com.google.appengine.api.datastore.Key:Categories(76) is what's returned on the insert: Categories category = new Categories(user.getNickname(), account, categoryName); pm.makePersistent(category); Object o = JDOHelper.getObjectId(category); System.out.println(o.toString()); This is what's

[appengine-java] Unable to update app: Version not ready.

2009-12-04 Thread PLL
Hi, I am receiving a Unable to update app: Version not ready deployement error for the application quemap-alpha-dev. Can anybody help ? thank you. Here are the Event Details: /**/ Message: Unable to update app: Version not ready. See the

[appengine-java] Re: Querying sub objects with JDOQL in GAE/J

2009-12-04 Thread GOFE
Just want to share what I did. I use JDOQL to query the preferred child object. From that child object, I use its key to get the parent key, and from that parent key I have the primary key of the parent object. Then, I get the parent and child object together in the same entity group using the

[appengine-java] Re: App Engine SDK 1.2.8 released including new Admin Console features

2009-12-04 Thread Oasis
Is it deployed to Eclipse update site? I could not found this release in Eclipse software update, even after refresh. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

[appengine-java] What does precompilation-enabledtrue/precompilation-enabled do?

2009-12-04 Thread Gary B
The 1.2.8 release notes state that pre-compilation reduces the length of loading requests. Does pre-compilation reduce the *time* to load the application? How does pre-compilation work? I noticed that the appcfg update command logs information about precompilation. -- You received this message

[appengine-java] Re: App Engine SDK 1.2.8 released including new Admin Console features

2009-12-04 Thread App Engine Team
1.2.8 is available on the Eclipse update site now. Sorry for the delay. On Dec 3, 6:26 pm, Oasis oasisf...@gmail.com wrote: Is it deployed to Eclipse update site? I could not found this release in Eclipse software update, even after refresh. -- You received this message because you are

Re: [appengine-java] Unable to update app: Version not ready.

2009-12-04 Thread Ikai L (Google)
This should have been resolved. Can you double check? On Fri, Dec 4, 2009 at 8:56 AM, PLL pask...@gmail.com wrote: Hi, I am receiving a Unable to update app: Version not ready deployement error for the application quemap-alpha-dev. Can anybody help ? thank you. Here are the Event

[appengine-java] JDO/JPA Snippets That Work - != and IN Filters

2009-12-04 Thread Max Ross (Google)
http://gae-java-persistence.blogspot.com/2009/12/queries-with-and-in-filters.html -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j...@googlegroups.com. To unsubscribe from this

[appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-04 Thread javaprime
Same problem here. On Dec 4, 8:16 am, Jeremy Blythe jeremybly...@gmail.com wrote: I get this error: Constructor threw exception; nested exception is java.lang.RuntimeException: javax.xml.bind.JAXBException  - with linked exception: [java.lang.ClassNotFoundException:

Re: [appengine-java] JAXB doesn't work for me in 1.2.8

2009-12-04 Thread Toby Reyelts
Can you supply a stacktrace please? On Fri, Dec 4, 2009 at 3:16 AM, Jeremy Blythe jeremybly...@gmail.comwrote: I get this error: Constructor threw exception; nested exception is java.lang.RuntimeException: javax.xml.bind.JAXBException - with linked exception:

Re: [appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-04 Thread Don Schwarz
Can one of you post a full stack trace? Thanks, Don On Fri, Dec 4, 2009 at 12:42 PM, javaprime javapr...@gmail.com wrote: Same problem here. On Dec 4, 8:16 am, Jeremy Blythe jeremybly...@gmail.com wrote: I get this error: Constructor threw exception; nested exception is

[appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-04 Thread javaprime
Error for /cron/url_update_delta java.lang.ExceptionInInitializerError at com.amazonaws.queue.AmazonSQSClient.clinit(AmazonSQSClient.java: 108) at compareodds.webapp.server.util.SQSQueue.buildQueue(SQSQueue.java: 65) at compareodds.webapp.server.util.SQSQueue.buildURLQueue

[appengine-java] Re: javax.jdo.JDOObjectNotFoundException: Could not retrieve entity of kind Transactions with key Transactions(Transactions(67))

2009-12-04 Thread datanucleus
java.lang.NullPointerException at ma.CategoriesServlet.doPost (CategoriesServlet.java:61) So you have an NPE in your code. Which log are you referring to?  Can you point me to where it would be on my computer? The log for GAE/J of course. No idea where you've configured it to go to. Look at

[appengine-java] Persist Hashmap and PersistenceManager question

2009-12-04 Thread CTR
I followed the following thread (http://groups.google.com/group/google- appengine-java/browse_thread/thread/fb12ab60c68bf664/400cf3c83be90ce9? lnk=gstq=persist+hashmap) to successfully persist my hashmap. I had a hard time to get it working because of the following issue: If I use the following

Re: [appengine-java] Sticky sessions -- keeping a user on a single JVM

2009-12-04 Thread Ikai L (Google)
Stephan, No, there is no way to stick sessions to application instances. While you can't associate all the data in a single Memcache key, you can break up the data, using a Memcache value as an index for the rest of the data. On Wed, Dec 2, 2009 at 2:48 PM, stephan smor...@gmail.com wrote: I

Re: [appengine-java] JAI working in JAE?

2009-12-04 Thread Ikai L (Google)
Have you tried it yet? Let us know how it works out and we can add an entry to the Will it play list: http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine On Wed, Dec 2, 2009 at 10:07 PM, moissinac jcmoissi...@gmail.com wrote: The GAE-Java image service is very

Re: [appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-04 Thread Toby Reyelts
Thanks for the quick reports folks. We've identified this as a fault which occurred during our push to production. We're working on this and will post back on this thread when it's resolved. On Fri, Dec 4, 2009 at 2:26 PM, javaprime javapr...@gmail.com wrote: Error for /cron/url_update_delta

[appengine-java] Regarding Secure Data Access for the users of my service

2009-12-04 Thread VSS
We are creating an Active Directory Kind of an application on App Engine. What I want to know is there a way to store data securely so that I can sell this application as a service to other domains. I should not be able to acess data produced by users of other domains. I noticed if we use JDO, I

Re: [appengine-java] Re: DWR SUPPORT

2009-12-04 Thread Shawn Brown
Hi, Some said GAE did not support DWR while I had read about Will it play in App Engine.It showed that Direct Web Remoting (DWR) Version(s): 2.0.5, 3.0 RC1 Status: COMPATIBLE DWR uses threads for some things like reverse ajax. For sure, that will not work in appengine at least the way

[appengine-java] Re: IOException on uploading app

2009-12-04 Thread GaryC
Same issue. Just getting started today with Eclipse 3.5 and Appengine 1.2.8 and JDK 1.6.0_16. Forward slashes are a problem on Windows, no? com.google.apphosting.utils.config.AppEngineConfigException: Received IOException parsing the input stream for /work/workspace/gac4-

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

2009-12-04 Thread Max Ross (Google)
We're using the UrlFetchService to invoke the task URL, and the local implementation of UrlFetchService times out after 5 seconds. For task execution the timeout should instead be 30 seconds. I'll get a fix together, but in practice the timeout shouldn't actually impact the completion of the

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

2009-12-04 Thread Vince Bonfanti
That's correct--the task still completes successfully even after the timeout exception shows up in the console window. Vince On Fri, Dec 4, 2009 at 5:11 PM, Max Ross (Google) maxr+appeng...@google.commaxr%2bappeng...@google.com wrote: We're using the UrlFetchService to invoke the task URL,

Re: [appengine-java] Re: JAXB doesn't work for me in 1.2.8

2009-12-04 Thread Toby Reyelts
It's probably worth mentioning that, as a temporary workaround, you should be able to bundle your own JAXB implementation with your webapp. For example, the reference version can be obtained from https://jaxb.dev.java.net/. On Fri, Dec 4, 2009 at 4:31 PM, Toby Reyelts to...@google.com wrote:

[appengine-java] Re: Unexpected exit when debugging

2009-12-04 Thread atolley
I'm seeing this too when using the RPC on MacOSX. It just started after a software update in Eclipse. Trying to run the basic default GWT app results in the app crashing with this error message: Invalid memory access of location 0010 eip=98d7077b On Nov 30, 10:31 am, marksea

[appengine-java] Re: Processing incoming email

2009-12-04 Thread m seleron
Hi.Peter, As one example. When you use InputStream inputStream = message.getInputStream(); // ByteArrayDataSource inboundDataSource = new ByteArrayDataSource(inputStream, message.getContentType()); Multipart

[appengine-java] Re: IOException on uploading app

2009-12-04 Thread GaryC
Resolved. The issue was the Connection refused. I had to update the proxy settings in Eclipse. On Dec 4, 4:49 pm, GaryC garyacr...@gmail.com wrote: Same issue.   Just getting started today with Eclipse 3.5 and Appengine 1.2.8  and JDK 1.6.0_16.  Forward slashes are a problem on Windows, no?

[appengine-java] Failed to startup after ver 1.2.8 update

2009-12-04 Thread doc123
Application does not start up after update ver 1.2.8 Error Message is following Error occurred during initialization of VM agent library failed to init: instrument Error opening zip file or JAR manifest missing : C:\eclipse\plugins

[appengine-java] Class XXX has multiple relationship fields of type YYYY

2009-12-04 Thread Max Ross (Google)
SDK 1.2.8 contains a new check that detects if one of your JDO or JPA model objects has two relationship fields of the same type. For example: class A { ListB bList; ListB anotherBList; } Unfortunately I was a little too aggressive with this check, so the following also run afoul of the

[appengine-java] Re: Failed to startup after ver 1.2.8 update

2009-12-04 Thread doc123
I updated ver1.2.8 at Dec-5th by seeing update request on Eclipse screen. But I was very surprised when I am seeing 1.2.8 is pre-release SDK and have no production environment by this post(=

Re: [appengine-java] Re: Failed to startup after ver 1.2.8 update

2009-12-04 Thread Shawn Brown
And So is it become official version at Dec-5th? I think so. Well Dec 4th. http://groups.google.com/group/google-appengine-java/browse_thread/thread/18e49b1559752fae/fdf7c0bc29d6e74d?lnk=gstq=App+Engine+SDK+1.2.8+released+including+new+Admin+Console+features#fdf7c0bc29d6e74d Shawn --

[appengine-java] Indexing Problem(always return incorrect number of rows)

2009-12-04 Thread Ravi Sharma
Hi, After indexing my all queries returning fewer rows. I have this class public class AudioMedia{ @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Key id; @Persistent private String title; . @Persistent private String

[google-appengine] Re: Concern about deploying real applications on Google AppEng

2009-12-04 Thread DBPZ
Thank you -- it is the last way, still it is feasible. Would Google establish numbers of data centers around the world, just like what Amazon is doing? On Dec 4, 7:47 am, Jake scher...@gmail.com wrote: One simple but less-than-ideal solution is to setup a light weight reverse http proxy on a

[google-appengine] accessing date fields set to auto now and django forms

2009-12-04 Thread Alex
Hi, The gae doc says 'DateTime fields with auto_now or auto_now_add set to true are automatically not displayed' in django forms. Is there some way I can access these date values through the form to display them even though they are readonly. I am using code such as this: form =

[google-appengine] Can I speed up indexing with good table design?

2009-12-04 Thread jpmorganuk
Hi, I have been reading How Index Building Works by Ryan Barrett, published on November 24, 2008 at http://code.google.com/appengine/articles/index_building.html The article suggests the performance of indexing depends on the performance/ability of a worker to process the index on a shard of

Re: [google-appengine] Can I speed up indexing with good table design?

2009-12-04 Thread Nick Johnson (Google)
Hi, On Fri, Dec 4, 2009 at 11:53 AM, jpmorganuk market...@farrellheyworth.co.uk wrote: Hi, I have been reading How Index Building Works by Ryan Barrett, published on November 24, 2008 at http://code.google.com/appengine/articles/index_building.html The article suggests the performance of

[google-appengine] updating 1 field inmultiple items according to another field in one go

2009-12-04 Thread sofia
Hi, I have a model that I need to filter by date, start and end date. It has a DateTime property to which this double filter was going to be applied but I've since found out that this isn't possible in app engine. So now I want to add a new field with only the year and month, something like

Re: [google-appengine] updating 1 field inmultiple items according to another field in one go

2009-12-04 Thread Robert Kluin
You need to create a script that loops through setting the new property then doing a put(). Robert On Dec 4, 2009, at 9:40, sofia sofiacard...@gmail.com wrote: Hi, I have a model that I need to filter by date, start and end date. It has a DateTime property to which this double filter was

[google-appengine] Re: gql not giving full result set

2009-12-04 Thread mani doraisamy
Ikai, As Dinesh mentioned we had exported and imported data using remote api (using some weird query) to get this working. Unfortunately, batch export/import also did not work. So, some clarity related to this issue would help us avoid surprises in future: - Bulk export/import is also based on the

Re: [google-appengine] @Lob

2009-12-04 Thread hicham khairane
It works thank you 2009/12/3 Ikai L (Google) ika...@google.com Have you looked into using com.google.appengine.api.datastore.Blob? http://code.google.com/appengine/docs/java/datastore/dataclasses.html

Re: [google-appengine] updating 1 field inmultiple items according to another field in one go

2009-12-04 Thread Eli Jones
What do you mean by double filter? What exactly is the select/query you want to run? What does your Model look like? From your description of the issue, it's hard to tell what you mean by double filter. Thanks for clarification. On Fri, Dec 4, 2009 at 9:40 AM, sofia sofiacard...@gmail.com

[google-appengine] Re: updating 1 field inmultiple items according to another field in one go

2009-12-04 Thread sofia
I would like to do something like SELECT * FROM MyTable WHERE input_date = start_date AND input_date = end_date but I get Inequality Filters Are Allowed On One Property Only See http://appengine-cookbook.appspot.com/recipe/how-to-query-by-date-range/ Well, guess i'll have to do the script then

[google-appengine] Re: updating 1 field inmultiple items according to another field in one go

2009-12-04 Thread sofia
Hmm, maybe I'm wrong and a query by date range is possible. Just saw this http://stackoverflow.com/questions/1513526/app-engine-gql-querying-a-date-range Post.gql('WHERE created_at DATE(:1, :2, :3) AND created_at DATE(: 1, :2, :4) and slug = :5', int(bit[0]), int(bit[1]), int(bit[2]),

[google-appengine] Documenting Each App Having its Own Datastore?

2009-12-04 Thread Hans
I think this is obvious to a lot of us, but I wonder if it's worth explicitly documenting up front in the Java/Python Datastore overviews that each application has its own corresponding datastore? If so, one could add an additional paragraph in each Introducing the Datastore section of

Re: [google-appengine] Re: updating 1 field inmultiple items according to another field in one go

2009-12-04 Thread Robert Kluin
If you use the inequality filter you will need to sort by that field first, and you will not be able to use an inequality filter on any other fields. If those issues are not problems, then you should be OK. Just a thought though, if you will always be asking for one month of data you may be

[google-appengine] Deployment failing today?

2009-12-04 Thread bugaco
Hi, I am unable to deploy application today. Creating staging directory Scanning for jsp files. Compiling jsp files. Compiling java files. Scanning files on local disk. Initiating update. Cloning 20 static files. Cloning 125 application files. Cloned 100 files. Uploading 0 files. Deploying new

[google-appengine] Re: Deployment failing today?

2009-12-04 Thread GAEfan
Me, too. -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options,

[google-appengine] Re: Deployment failing today?

2009-12-04 Thread Jesse
me2 On Dec 4, 9:11 am, GAEfan ken...@gmail.com wrote: Me, too. -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] Re: Deployment failing today?

2009-12-04 Thread Danny Tuppeny
Having the same problem :-( Tried uploading as a new version, doesn't work either. Also - when this fails, the default version of my app seems to get set to Default=No (though it still serves pages)! On Dec 4, 4:59 pm, aw alvinw...@gmail.com wrote: I have the same problem. On Dec 4, 8:55 am,

[google-appengine] App version is stuck; can't change default or disable.

2009-12-04 Thread John Gardner
My app appears to be stuck at a particular default version. I can change the default, and the console shows it changed (205), but when I go to the site its clearly serving up the old version (175). It was working fine until today; I've deployed dozens of times, and it's all worked. The

[google-appengine] index creation quota

2009-12-04 Thread Eric Ka Ka Ng
Hi, I have an billing enabled application that hits the index creation quota (which I think is about 100 from the threads I read). I understand exceeding 100 composite indexes maybe a sign of bad schema design. The main reason for high number of composite indexes is, for some 'model' in the

[google-appengine] Unable to update app:Connection reset

2009-12-04 Thread Jordan Yu
Hi, I follow the google's steps to run GuestBook java version on my computer successfully. However, I try to deploy it by eclipse, but it is failed with Unable to update app:Connection reset. Our SDK version is 1.2.6. The log file is shown as following: Can anyone help about it? Thanks. Jordan

[google-appengine] Appengine JDO Relationships Issues

2009-12-04 Thread Guru
I have a class naming User and this includes 2 address references (billingAddress and shippinAddress) of type Adddress. Im unable to make the one-to-one relation between these classes. My problem is, when I save User, both addresses get saved(which is right). But when I try to getUserById, I

[google-appengine] Re: Stuck Index

2009-12-04 Thread Nickolas Daskalou
Is index building a once-off thing that happens when a new index is uploaded to the production site, or does this also apply after every single put() or delete() call to the Datastore? I hope it's the former and not the latter, as this would be a deal breaker for a lot of companies looking to

[google-appengine] Standard and mobile edition apps under same domain (two different sub domains)

2009-12-04 Thread djennings
I created a website (including blog) along with a mobile edition using python. The website, blog and mobile edition will eventually be under a Google Apps/Engine domain. The main app will be hosted at www.domain.com and the mobile edition at www.domain.com/mobile/, and this works just fine on the

[google-appengine] app engine verification by SMS

2009-12-04 Thread Townsville Harley Owners Group
Hi, I have verified my app engine account by SMS and now have gone in to setup a second app and it is telling me to verify my account by SMS. Obviously, I have already used my phone number and so am getting the error message. Can anyone help? -- You received this message because you are

[google-appengine] Time stamp on deployment log

2009-12-04 Thread GAEfan
Can we get a time-stamp on the deployment log? Many times, I can't remember if I've deployed my latest saved version, so I end up deploying again just to make sure. A simple time stamp in the log would make checking fast and easy. Thanks! -- You received this message because you are

Re: [google-appengine] App version is stuck; can't change default or disable.

2009-12-04 Thread Ikai L (Google)
John, the deployment issues should have been resolved. Can you take a look? We'll be updating the groups shortly. On Fri, Dec 4, 2009 at 9:00 AM, John Gardner hux...@gmail.com wrote: My app appears to be stuck at a particular default version. I can change the default, and the console shows it

Re: [google-appengine] Time stamp on deployment log

2009-12-04 Thread Nick Johnson (Google)
Hi, If you click on 'versions' in the admin console, you should see something like live (deployed 37 days, 9:55:01 ago) next to each version. -Nick Johnson On Fri, Dec 4, 2009 at 6:21 PM, GAEfan ken...@gmail.com wrote: Can we get a time-stamp on the deployment log? Many times, I can't

[google-appengine] Virtual Domains

2009-12-04 Thread oxiops
Hello - I am wondering if there is a realistic way to run an app in the app engine that serves thousands of domains. For example, to serve an app that is private labeled for our customers. Is there any limit to the number of domains that an app can be served for? Is there a way to

[google-appengine] Re: Standard and mobile edition apps under same domain (two different sub domains)

2009-12-04 Thread Ray Malone
Under the setting for the app in your domain manager you should be able to add a another sub domain to point to the same app. Then you will need to update your records from the company you registered with to point the sub domain to ghs.google.com. I do this with several of my apps. However, you

[google-appengine] Data Store Timeouts that are Random

2009-12-04 Thread Ray Malone
My app has been running for almost a year now and runs great. The speed of app engine compared to hosting anywhere else has been great. However, I get random timeouts for simple gets. These queries are the exact same that run all day long several time a day and as you can see from my logs there

[google-appengine] Re: updating 1 field inmultiple items according to another field in one go

2009-12-04 Thread sofia
Eli, I'm not sure I follow you but as far as I understand that would not be possible in this scenario. Let's say we have a table of articles and we need to know how many articles were created between 15 Dec 2009 and 30 Dec 2009 (or any other dates for that matter) - I would never be able to

Re: [google-appengine] Re: updating 1 field inmultiple items according to another field in one go

2009-12-04 Thread Eli Jones
I guess I am misunderstanding what column is what... if you just have a Model defined like this: Articles(db.Model): article = db.StringProperty() input_date = db.DateTimeProperty() Then.. like you mentioned.. you'd just do a query like: GqlQuery(Select * from Articles Where

[google-appengine] files 1MB? If not.. redirect a POST?

2009-12-04 Thread Matt P
hello - I am creating a service where people can upload data to a app engine URL. How can I upload files that are 1MB? I already sent out the binary for my to Apple which includes a URL to POST to. If I can't upload files 1MB with GAE, then can I somehow redirect a POST being made to

[google-appengine] Re: Data Store Timeouts that are Random

2009-12-04 Thread gae123
Same experience here. In fact, a user just yesterday called me about this, I looked at the logs and it was a timeout... I have now removed the Sever Error message and replaced it with a very polite these things happen just retry in a few seconds and only call me if it happens every time On

Re: [google-appengine] files 1MB? If not.. redirect a POST?

2009-12-04 Thread Joshua Smith
You are hosed. Instead, upload to Amazon S3, and manage the files in GAE. S3 lets you set up a signature so people can upload into a bucket you set up. Then after the upload, it redirects to whatever URL you want, which you can use to log the upload in you GAE app. After that, you can talk

[google-appengine] Using Web form to Upload CSV File issue

2009-12-04 Thread Elvin
Hello, All! Please help me with this issue!!! I'm new to GAE and Python and I'm trying to make function to upload CSV files using the Web form rather that bulkuploader. I'm try to utilize csv.reader to parse the CSV but I get an incorrect result, instead of reading each row individually, it treats

Re: [google-appengine] how many index

2009-12-04 Thread Ikai L (Google)
The number of kinds won't count against your index quota. Here's a good article describing how the datastore works underneath the hood: http://code.google.com/appengine/articles/storage_breakdown.html A single index exists for Entities by Kind. What you'll need to watch out for are the indexes

[google-appengine] Assigning words with spaces to a text box

2009-12-04 Thread Felix
Hi, When I am trying to assign a value,which is a normal text with multiple words with spaces, to a text box, the value get truncated after the first word.The value is stored completely in the datastore. Thanks -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Standard and mobile edition apps under same domain (two different sub domains)

2009-12-04 Thread djennings
If I had two separate applications under the same google apps domain (m.domain and www.domain.com), could these two applications share a common database/datastore since it's the same developer (both in python) under the same google apps domain? On Dec 4, 12:33 pm, Ray Malone rayish...@gmail.com

Re: [google-appengine] Assigning words with spaces to a text box

2009-12-04 Thread Robert Kluin
We will probably need to see a little code to help you. On Fri, Dec 4, 2009 at 4:39 PM, Felix felix1...@gmail.com wrote: Hi, When I am trying to assign a value,which is a normal text with multiple words with spaces, to a text box, the value get truncated after the first word.The value is

Re: [google-appengine] Re: Standard and mobile edition apps under same domain (two different sub domains)

2009-12-04 Thread Robert Kluin
You can map both domains to your app. Then within your application you can detect to domain and take the appropriate action. In other words, the same application will handle both domains -- your code will handle routing the request to the proper handler. Robert On Fri, Dec 4, 2009 at 4:42

[google-appengine] Corrupt index rebuilt today, still missing up to 56% of items

2009-12-04 Thread Johann C. Rocholl
I've been having problems with two descending __key__ indexes on my app. Today I deleted and rebuilt one of the indexes, but the new index is still missing up to 56% of items compared to the normal ascending __key__ index. Here's my index definition from index.yaml: - kind: domains_domain

Re: [google-appengine] Corrupt index rebuilt today, still missing up to 56% of items

2009-12-04 Thread Ikai L (Google)
Johann, These queries have different second parameters in their Key.from_path. Is this just a text error? Domain.all(keys_only=True).order('__key__').filter('__key__ =', db.Key.from_path('domains_domain', 'menewokzxwsqipne')).fetch(100)

[google-appengine] Re: Corrupt index rebuilt today, still missing up to 56% of items

2009-12-04 Thread Johann C. Rocholl
No, this is not an error. I'm using the last result of the ascending query as the starting point for the descending query, so that I can compare the result ranges. On Dec 4, 2:27 pm, Ikai L (Google) ika...@google.com wrote: These queries have different second parameters in their Key.from_path.

[google-appengine] Error using org.json.JSONArray or JSONObject in GAE

2009-12-04 Thread philathea80
I am developing a java rest serice with GAE. I was going to use JSON to pass the object in and out (http post and get). I am receiving an error stating that org.json.JSONObject is not supported by Google App Engine in the representation class of the GET. Has anyone had any luck using restlet

[google-appengine] Re: Incomplete index was built [was: Slow index build]

2009-12-04 Thread Jason (Google)
Hi Eric. We're investigating this issue on our end. Looking into this a bit deeper, I see that one of the entities that didn't appear in the query results was written on the 27th and the second was written on the 30th. I know that you had re-built your index a second time after our chat on

[google-appengine] Re: Tragedy of the Commons, and Cold Starts

2009-12-04 Thread Toby Reyelts
There's an enhancement request (http://code.google.com/p/ googleappengine/issues/detail?id=2456) open for this for Java, though it probably applies equally well to Python. Go voice your opinion. On Nov 3, 2:21 pm, Adligo sc...@adligo.com wrote: I think paying to keep the instances warm is a

[google-appengine] Re: files 1MB? If not.. redirect a POST?

2009-12-04 Thread Matt P
Not so fast Josh. Looks like there is at least a java project to allow uploads 1MB. If it is possible in java land, it should be possible in python. Does a similar package exist for python? Matt On Dec 4, 12:21 pm, Joshua Smith joshuaesm...@charter.net wrote: You are hosed. Instead, upload

[google-appengine] Receiving Email, ASCII Decode, Stuck in Queue

2009-12-04 Thread mb
My app receives mail and stores them in the datastore. It usually works fine, but occasionally it has problems decoding the message body. It logs errors like: UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 50: ordinal not in range(128) The error happens when trying to

Re: [google-appengine] Re: Incomplete index was built [was: Slow index build]

2009-12-04 Thread Eric Rannaud
On Fri, Dec 4, 2009 at 3:22 PM, Jason (Google) apija...@google.com wrote: Hi Eric. We're investigating this issue on our end. Looking into this a bit deeper, I see that one of the entities that didn't appear in the query results was written on the 27th and the second was written on the 30th. I

[google-appengine] GAE for domains vs GAE Authentication

2009-12-04 Thread Oli Warner
I have two Google accounts under the same email address for some* reason. A standard Google Account and my Google for domains account. Yesterday, logged in as my standard account, I signed up for GAE, verified via SMS and created a new app. I saw nothing. After reading the help, I saw it had been

[google-appengine] Re: Limit on image size very low

2009-12-04 Thread Denis
Ikai, Could you please specify a planned date (at least with month precision) of so wanted feature release? Also would it only alter a datastore structure size, or also be applied to incoming/outgoing emails limits, responses limits, POST request size? Thanks in andvance On Nov 19, 1:13 am, Ikai

Re: [google-appengine] Re: Incomplete index was built [was: Slow index build]

2009-12-04 Thread Jason (Google)
Hi Eric. Yes, the reason why you see 3 instead of 4 was because we re-put one of the incorrect entities. If you re-put the other (either programatically or via the Admin Console), you should see it appear when you execute the query. We're still working on determining why they weren't returned with

Re: [google-appengine] Re: Incomplete index was built [was: Slow index build]

2009-12-04 Thread Eric Rannaud
On Fri, Dec 4, 2009 at 4:17 PM, Jason (Google) apija...@google.com wrote: Hi Eric. Yes, the reason why you see 3 instead of 4 was because we re-put one of the incorrect entities. If you re-put the other (either programatically or via the Admin Console), you should see it appear when you

[google-appengine] My site seems to have been deleted

2009-12-04 Thread dartdog
http://tombrander.appspot.com/ It has been running for about a year now it just shows some blank html??? I have not touched it not even as admin on the blog much less via the App-engine admin interface?? What's up It had been running for about a year but vanished today (I think) -- You received

[google-appengine] Re: Tragedy of the Commons, and Cold Starts

2009-12-04 Thread Toby Reyelts
On Oct 23, 3:02 pm, bugaco ice...@gmail.com wrote: I had a bit weird experience with this... So I wrote app (http://analytics.bugaco.com) that runs on App Engine. Than I looked at the request logs to see how it is running. Request logs suggested that I'm using a lot of CPU time on hitting

Re: [google-appengine] My site seems to have been deleted

2009-12-04 Thread OvermindDL1
On Fri, Dec 4, 2009 at 5:28 PM, dartdog tombran...@gmail.com wrote: http://tombrander.appspot.com/ It has been running for about a year now it just shows some blank html??? I have not touched it not even as admin on the blog much less via the App-engine admin interface?? What's up It had

[google-appengine] Re: Tragedy of the Commons, and Cold Starts

2009-12-04 Thread marksea
We're discouraging people from using pinging techniques to keep their VMs warm, because it increases the number of loading requests for all of the low traffic applications on App Engine. It would be a shame if we had to change scheduling behavior to enforce that policy. Would also be a

[google-appengine] Re: accessing date fields set to auto now and django forms

2009-12-04 Thread skyleecm
yes, can access thru the form.instance {{ form.instance.dob }} On Dec 4, 6:55 pm, Alex alexle...@googlemail.com wrote: Hi, The gae doc says 'DateTime fields with auto_now or auto_now_add set to true are automatically not displayed' in django forms. Is there some way I can access these date

Re: [google-appengine] index creation quota

2009-12-04 Thread Eric Ka Ka Ng
Hi Ikai, May we know what would be that higher index quota? coz we are already hitting the ceiling and not able to create anymore we need. - eric 2009/12/5 Ikai L (Google) ika...@google.com Eric, Billing enabled apps have a higher index quota. If you enabled billing, you should have a

  1   2   >