[appengine-java] Create different entity (Database) for each user.

2009-09-14 Thread gopal kalasa
Hi, How to create an application which can share with many companies (multitenancy) with each company has their own database ie if 'Company A' logins they can see his data only. I want to use a single code base and use difference data stores for each user. How can this be done using Google

[appengine-java] Regarding Error in Jsp Code

2009-09-14 Thread anu
hi i have developed a sample application by following apps given in appengine sdk demos sample apps and when i send a request from browser to that application then iam getting the following error on jsp page HTTP ERROR: 500 Unable to compile class for JSP Generated servlet error:

[appengine-java] Re: One-to-many relationships and saving

2009-09-14 Thread datanucleus
- When using the 1-n example from the docs I get lots of problems when trying to remove an item from the child list. Is it supported when using datanucleus to modify the list of children (remove+add) in the same transaction or is only add supported? In DataNucleus-provided datastore plugins

[appengine-java] Re: Can't deploy my first guestbook application

2009-09-14 Thread Max golergka Yankov
Exactly the same problem here. I don't even have javac file anywhere - only javacpl and javacpl.cpl. On 12 сен, 15:10, yellowblood yellowbl...@gmail.com wrote: I followed the tutorial perfectly, yet I can't seem to deploy my application. At first, the deployment failed because it didn't find

[appengine-java] Re: Regarding Error in Jsp Code

2009-09-14 Thread Richard Le Mesurier
Hi, dunno if this helps, but...   %     if(entries.isEmpty()) {    %    div class=noEntries     No Entries    /div In the code above, from the JSP file, the line div class=noEntries is missing a Might help. Ric --~--~-~--~~~---~--~~ You received this

[appengine-java] Re: JDO hook called before id is assigned?

2009-09-14 Thread bysse
I've created an issue for this problem (http://code.google.com/p/ googleappengine/issues/detail?id=2121). Is seems that only makePersistentAll is affected. On Sep 13, 8:31 pm, bysse erik.byst...@gmail.com wrote: More specifically that id isn't set when StoreLifecycleListener.postStore is

[appengine-java] Re: GAE takes 28 sec to read just 200 records

2009-09-14 Thread Vik
hie Can anyone please guide on this? Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com On Fri, Sep 11, 2009 at 10:24 PM, Vik vik@gmail.com wrote: hie any updates please on this Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com On

Re: [giannim] [appengine-java] Can't deploy my first guestbook application

2009-09-14 Thread Gianni Mariani
On Sat, Sep 12, 2009 at 9:10 PM, yellowblood yellowbl...@gmail.com wrote: I followed the tutorial perfectly, yet I can't seem to deploy my application. At first, the deployment failed because it didn't find the javac file, so I copied it. Copying javac.exe will almost certainly cause more

[appengine-java] Regarding error 500

2009-09-14 Thread mahesh
hi i am working with a sample application in gooleappengine and when iam sending a request to application through the browser iam getting the following error HTTP ERROR: 500 Must set a body RequestURI=/helloxmpp1 Caused by: java.lang.IllegalArgumentException: Must set a body at

[appengine-java] Re: Create different entity (Database) for each user.

2009-09-14 Thread Ian Marshall
Hi Gopal, I do not know how you have arranged your entities in your datastore, but using your example you could add a User field to your other persistent entities. For example, using JDO annotations (which I use), you could add the field @Persistent private User userCompany; You could add

[appengine-java] Re: Many to Many

2009-09-14 Thread Ian Marshall
Hello there, Doesn't the section Java | Storing Data | Relationships | Unowned Relationships | Many-to-Many Relationships in the GAE documentation explain how to do it? (I must admit I have not done this myself so I cannot give you a working example!)

[appengine-java] Re: Datastore Limits

2009-09-14 Thread Iain
What do you mean by times out? Do you mean you hit the 30 second deadline? On Sep 14, 3:59 am, hg hgo...@gmail.com wrote: Hi, I am writing a script that is supposed to run quite a few inserts to the datastore - up to a couple of hundred. My script keeps timing out at 92. After I ran it a few

[appengine-java] Re: Can I avoid Data Nucleus and still use JPA?

2009-09-14 Thread leszek
Hibernate is not JPA implementation, it exposes its own API. Hibernate Entity Manager is a product build on standard Hibernate and offering full JPA interface. Google App Engine does not support Hibernate: http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine

[appengine-java] Re: Regarding Error in Jsp Code

2009-09-14 Thread Sreekanth Raju
have you configured 'JRE System Library' to JDK ? if not have look at this http://groups.google.com/group/google-appengine-java/browse_thread/thread/2a4be3c1d4a0feed/1d55c317e54fa985?lnk=gstq=jsp#1d55c317e54fa985 --~--~-~--~~~---~--~~ You received this message

[appengine-java] Re: Create different entity (Database) for each user.

2009-09-14 Thread leszek
Look at this thread, may provide some useful information. http://groups.google.co.uk/group/google-appengine-java/browse_frm/thread/6ae2e6737cbb4b40/f47f015099538467?lnk=gstq=administrator#f47f015099538467 --~--~-~--~~~---~--~~ You received this message because you

[appengine-java] Re: Accessing Memcache in more than one servlet

2009-09-14 Thread Jeff
For above Memcache question, I simply implemented a javax.cache.Cache singleton pattern. I now have access to the cache from more than one servlet. Is anyone aware that this implementation might problematic in the Google App Engine distributed(cloud) runtime? Thanks, Jeff On Sep 11, 2:45 pm,

[appengine-java] Re: Cant deploy application

2009-09-14 Thread Jason Parekh
Hi Ravi, Check out http://code.google.com/appengine/docs/java/tools/eclipse.html jason On Sat, Sep 12, 2009 at 8:36 AM, Ravi Mandliya funkyr...@gmail.com wrote: I have a web project build in eclipse.. I have installed google plugin.. But I cant deploy it, as I dont have configuration file

[appengine-java] Re: Cant deploy application

2009-09-14 Thread Jason Parekh
Sorry posted too early. Looks like this tutorial is outdated (refers to appengine-web.xml, which I think you are saying you do not have?) When you go to deploy, you'll see a link to your project properties in the bottom of the deploy dialog (which normally asks for your username and password).

[appengine-java] Re: Cant deploy application

2009-09-14 Thread Jason Parekh
Also, the docs from the Eclipse plugin will be helpful: http://code.google.com/eclipse/docs/appengine_deploy.html and http://code.google.com/eclipse/docs/appengine_appid_version.html jason On Mon, Sep 14, 2009 at 10:28 AM, Jason Parekh jasonpar...@gmail.comwrote: Sorry posted too early. Looks

[appengine-java] Re: Accessing Memcache in more than one servlet

2009-09-14 Thread Don Schwarz
No, that sounds like a fine approach. You could even create multiple Cache instances and they would still be backed by the same underlying store (assuming they have the same namespace). On Mon, Sep 14, 2009 at 9:18 AM, Jeff jeffarba...@gmail.com wrote: For above Memcache question, I simply

[appengine-java] Re: Regarding Error in Jsp Code

2009-09-14 Thread Rajeev Dayal
* } ** }* /table /div /div /body /html You need to surround the ending curly-braces with % and %, like so: % * } **}* *% * /table /div /div /body /html On Mon, Sep 14, 2009 at 7:04 AM, anu anunimmala.nimm...@gmail.com wrote: hi i have developed a sample application by following

[appengine-java] Re: Issue on using Spring MVC framework on GAE.

2009-09-14 Thread Brian Dorry
Running into the same problem here using both the bean definition and overriding the initBinder method on the SimpleFormController. Any other insight into this issue? On Sep 11, 3:13 pm, Jason (Google) apija...@google.com wrote: If you're subclassing SimpleFormController, you can also override

[appengine-java] Re: Java Security Error

2009-09-14 Thread Ravi Mandliya
Thanks for the reply... Can u please elaborate How JDBC request can be pushed to another server I have an event coming up so I have to upload the site in urgency. any help would be appreciated. On Sep 14, 2:25 am, Gianni Mariani gian...@google.com wrote: App Engine does not allow access to

[appengine-java] compositing images not implemented?

2009-09-14 Thread mcrady
On the image service overview page (http://code.google.com/appengine/ docs/java/images/overview.html), you say It can also composite multiple images into a single image. So I put a bunch of work into something that depends on compositing images and I get to actually compositing the image and I

[appengine-java] Re: Many to Many

2009-09-14 Thread objectuser
Right, I'd read the docs like Ian mentioned. The big caveat as with anything in GAE is that the queries you intend to perform will drive your model. There's more than one way to model a many to many, so you need to make sure that the model you choose supports the queries you need. On Sep 14,

[appengine-java] Re: Datastore Limits

2009-09-14 Thread Larry Cable
read this thread ... you might want to batch the writes you should get around 200-300 objects per write (under the 5 sec timeout) and probably around 2k per request before hitting the 30sec request timeout (all depends on the complexity of your objects) On Sep 14, 5:54 am, Iain

[appengine-java] Re: Warning message about junit plugin from datanucleus in my logs when running Junit tests

2009-09-14 Thread Rajeev Dayal
Hi, Another way to handle this would be to create a separate logging.properties file, and then add the following to your launch configuration: -Djava.util.logging.config.file=/path/to/test/logging.properties ... This would be cleaner than modifying your code. Rajeev On Tue, Sep 8, 2009 at

[appengine-java] Re: Get Multipart Data from the request

2009-09-14 Thread Larry Cable
+1 On Sep 13, 6:18 am, Philippe Marschall philippe.marsch...@gmail.com wrote: On Jul 22, 7:41 pm, Jason (Google) apija...@google.com wrote: As indicated in the Will it play in App Engine page, you will not be able to use the traditional Apache Commons FileUpload API since it relies on

[appengine-java] Re: Detching an object graph with JDO

2009-09-14 Thread bysse
Okej, i've learned a bit more since i've posted these messages. I didn't quite understand (still don't probably) fetchgroups and detach enough. Anyway, the problem i had with could be avoided by defining fetch groups for fields that will be stored in different tables. If i have a declaration

[appengine-java] Re: Datastore Limits

2009-09-14 Thread hg
No, I don't mean the 30 second timeout. First I thought that that was the issue, but then I counted and it wasn't near 30 seconds. I also realized that the script always stopped after 92 writes. On Sep 14, 3:54 pm, Iain iain.robe...@gmail.com wrote: What do you mean by times out? Do you mean

[appengine-java] Re: Detching an object graph with JDO

2009-09-14 Thread bysse
Clearly i'm just as lost now as before On Sep 14, 7:54 pm, bysse erik.byst...@gmail.com wrote: Okej, i've learned a bit more since i've posted these messages. I didn't quite understand (still don't probably) fetchgroups and detach enough. Anyway, the problem i had with could be avoided

[appengine-java] What's the Java equivalent of appcfg.py?

2009-09-14 Thread Sam Sach
Hi: I'd like my app to download and upload from the datastore -- that is, to work as a file system. The only API, however, that I've found that does this is written in Python. I'd like to know what if there's a Java equivalent. --Sam --~--~-~--~~~---~--~~ You

[appengine-java] Re: Datastore Limits

2009-09-14 Thread hg
Thanks for replying. A couple of questions: Which thread should I read? Batching the writes seems like a great idea, I'll try it. On Sep 14, 7:01 pm, Larry Cable larry.ca...@gmail.com wrote: read this thread ... you might want to batch the writes you should get around 200-300 objects per

[appengine-java] Re: Exhaustive JPA/JDO tutorial

2009-09-14 Thread Esteban Masoero
This should help: http://www.datanucleus.org/products/accessplatform_1_1/index.html Regards, Esteban Java_GAE escribió: Hi, Please anybody can post a link to exhaustive and intensive tutorial on JPA/JDO. I got head and tail from the google app engine tutorial but need to understand much

[appengine-java] Migration to Google App Engine for Java

2009-09-14 Thread leszek
Some thoughts based on experience. http://hoteljavaopensource.blogspot.com/2009/09/migration-to-google-app-engine.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to

[appengine-java] Re: What's the Java equivalent of appcfg.py?

2009-09-14 Thread Vince Bonfanti
The GaeVFS (Google App Engine Virtual File System) project implements a distributed, writable file system for Google App Engine: http://code.google.com/p/gaevfs/ The current release (0.3) supports an API based on Apache Commons VFS (http://commons.apache.org/vfs/). The latest code in

[appengine-java] Re: Datastore Limits

2009-09-14 Thread hg
Thank you for replying. I tried batching the writes, and it didn't solve the problem. However, it did show me that my script is dying after I create 92 (exactly) entities, whether or not they have all been persisted. Could this be connected to the 2k per request? What exactly is the 2k per

[appengine-java] Re: What's the Java equivalent of appcfg.py?

2009-09-14 Thread Sam Sach
Thanks, that answered my question. --Sam On Sep 14, 3:18 pm, Vince Bonfanti vbonfa...@gmail.com wrote: The GaeVFS (Google App Engine Virtual File System) project implements a distributed, writable file system for Google App Engine:    http://code.google.com/p/gaevfs/ The current release

[appengine-java] Re: Any way to work around 30 second request time limit?

2009-09-14 Thread hg
Thank you for that! It looks promising. On Sep 12, 11:56 pm, Gianni Mariani gian...@google.com wrote: On Sun, Sep 13, 2009 at 5:29 AM, hg hgo...@gmail.com wrote: Hi, I have a task that I need to run via cron. It takes a fair amount of time - is there any way around the 30 second request

[appengine-java] Re: Expression Language does not get evaluated in JSP

2009-09-14 Thread Jason (Google)
Did you put the jsp-property-group element inside of a jsp-config element? I tried this, and it uploaded without errors. - Jason On Thu, Sep 10, 2009 at 11:17 PM, Java_GAE next.is@gmail.com wrote: Thanks Marcel. There is another issue related with EL. When I tried to use jsp-

[appengine-java] Re: Getting 'Request was aborted after waiting too long to attempt to service your request.' after application idle

2009-09-14 Thread lent
Don, I have sent you my application id through email (by doing reply to author). A few of things I should mention: 1) we're using JPA 2) we are not creating EMF by doing: Persistence.createEntityManagerFactory(transactions-optional); instead it is created through spring's

[appengine-java] self referral one-to-many relationship with null root

2009-09-14 Thread Arash
I have a class which has a collection of itself as its children. It is mapped as : @Persistent private Group parent; @Persistent(mappedBy= parent) private ListGroup children; The problem is I cannot insert the root object. The call to makePersistent comes back successfully, but the

[appengine-java] Re: appengine artifacts not updated

2009-09-14 Thread Jason (Google)
Hi David. We're blocked on a couple of commits that are needed before this happens, but I'll try to get another update to you soon. - Jason On Fri, Sep 11, 2009 at 3:14 AM, David Yu david.yu@gmail.com wrote: Any googler out there care to shed some light? On Sep 10, 4:28 am, Marcel

[appengine-java] Re: Entity ID and keyName identification scope

2009-09-14 Thread Jason (Google)
No, you can't count on generated IDs being contiguous or monotonically increasing. - Jason On Fri, Sep 11, 2009 at 9:19 AM, iker98 ike...@gmail.com wrote: Thank you Max, I understand a bit more the numeric ID generator in datastore. Now I am aware that the numeric ID allocation for the

[appengine-java] Re: JSTL and Expression Language how to

2009-09-14 Thread Jason (Google)
The page has been updated. - Jason On Fri, Sep 11, 2009 at 10:59 AM, Guilherme Silveira guilherme.silve...@gmail.com wrote: Hello guys, It seems that JSP Api+JSTL does not work out of the box at appengine as it says here

[appengine-java] Re: Problem saving an object using makePersistent

2009-09-14 Thread Jason (Google)
Your code looks fine. I just copied it over to a non-Spring context and it worked without a hitch. Did you see this error before upgrading your SDK? Are you seeing it in both the local development server and production? If you start a new project and copy over your domain and DAO classes, does it

[appengine-java] Re: Problem saving an object using makePersistent

2009-09-14 Thread Jason (Google)
Also, do you have any unit tests that touch the App Engine datastore, and if so, can you run these to see if they work? - Jason On Mon, Sep 14, 2009 at 3:41 PM, Jason (Google) apija...@google.com wrote: Your code looks fine. I just copied it over to a non-Spring context and it worked without

[appengine-java] Re: Session destruction events, API availability therein

2009-09-14 Thread Don Schwarz
It's worth noting that session data isn't cleaned up by default. This means that you can implement your own session cleanup logic and perform any other cleanup logic hat you need to do at the same time. On Mon, Sep 14, 2009 at 5:50 PM, Jason (Google) apija...@google.com wrote: Yes, this seems

[appengine-java] Re: Session destruction events, API availability therein

2009-09-14 Thread Jason (Google)
Yes, this seems reasonable. You can run this job, hitting the cleanup servlet, once a day or any interval you see fit. For more info: http://groups.google.com/group/google-appengine-java/browse_thread/thread/4f0d9af1c633d39a - Jason On Fri, Sep 11, 2009 at 6:45 PM, Erem ehb...@gmail.com wrote:

[appengine-java] Re: Server error 500

2009-09-14 Thread Jason (Google)
Your data is not lost -- I can see that you have several entities stored in your datastore. It looks like your jdo.jsp file is not in the right location. Have you placed it in the war directory? Sharing your web.xml file would be helpful. - Jason On Sat, Sep 12, 2009 at 1:22 PM, Anton Ananich

[appengine-java] Re: Bulk update throws exception

2009-09-14 Thread Jason (Google)
From the error message, it sounds like the parent isn't getting set correctly. You'll need to share some of your code in order for me to help you further -- what does your Release class look like and how are you persisting it? - Jason On Sat, Sep 12, 2009 at 4:36 AM, Anita an...@ensarm.com

[appengine-java] Re: JDO startsWith for Japanese does not work on production server

2009-09-14 Thread Jason (Google)
You should add a filter that calls request.setCharacterEncoding() and sets the appropriate encoding before handling the request. If you query for the data without startsWith and display it on-screen, do you see what you expect or is it garbled? Also, make sure you add this line after declaring

[appengine-java] Re: java.security.AccessControlException: access denied (java.lang.RuntimePermission accessClassInPackage.sun.io)

2009-09-14 Thread Jason (Google)
It looks like you're trying to make a direct connection to your IBM DB2 database, which App Engine's sandbox doesn't permit: http://code.google.com/appengine/docs/java/runtime.html#The_Sandbox If you want to use an external database, you will have to place a web service in front of it and use

[appengine-java] Re: Announcing JDO/JPA Snippets That Work

2009-09-14 Thread Larry Cable
I'd also encourage you as part of this to focus on the mapping of JPA/JDO RDBMS like concepts onto the DS, as this I have found to be most problematic ... (or at least include pointers from the example back to the online docs) which is funny because I confess that you could write down all I know

[appengine-java] Re: Bulk update throws exception

2009-09-14 Thread Larry Cable
nope you are right ... it's not useless ... apologies I *think* the problem is in mapping (conceptually) from a mental RDBMS model to a GAE DS model ... where entity group might be mistaken for table ... :) On Aug 26, 3:02 pm, Jason (Google) apija...@google.com wrote: Why do you indicate that

[appengine-java] Re: JDO/JPA Snippets That Work - Creating a bidirectional, owned, one-to-many relationship

2009-09-14 Thread Larry Cable
you might want to extend this example to use the ISBN as the book's PrimaryKey, which might be a natural choice for the entities id, ensuring uniqueness in the DS ... Thanks - larry On Sep 14, 4:07 pm, Max Ross maxr+appeng...@google.com wrote: Hello hello and welcome to the very first

[appengine-java] Re: SDK-1.2.5 for various GWT modules

2009-09-14 Thread Duong BaTien
I find out the issue. It is the cache in my browser of previous error. Please ignore the question. BaTien On Mon, 2009-09-14 at 10:18 -0600, Duong BaTien wrote: Hi: I use GAE SDK and GWT for different applications. For GAE SDK, i take out 3 libs related to jpa since i use jdo

[appengine-java] Re: How can I use GAE for Java?

2009-09-14 Thread Aizai Taxiang
Thanks for your reply. There is not any more questions. The credit card is a problem ,but I think I can find the U.S. credit card payments service in C2C community. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[appengine-java] Re: JDO startsWith for Japanese does not work on production server

2009-09-14 Thread Yasuo Higa
Hi Jason, Thanks for your reply. On Tue, Sep 15, 2009 at 8:21 AM, Jason (Google) apija...@google.com wrote: You should add a filter that calls request.setCharacterEncoding() and sets the appropriate encoding before handling the request. If you query for the data without startsWith and

[appengine-java] Re: Can I avoid Data Nucleus and still use JPA?

2009-09-14 Thread jeremy rose
On Sep 14, 7:57 pm, jeremy rose jeremy.rosenb...@gmail.com wrote: On Sep 14, 6:06 am, leszek leszek.ptokar...@gmail.com wrote: Hibernate is not JPA implementation, it exposes its own API. Hibernate Entity Manager is a product build on standard Hibernate and offering full JPA

[google-appengine] Re: How to apply an unique constrain to a field of a class using JDO annotations?

2009-09-14 Thread Thomas Wiradikusuma
AFAIK you can't App Engine doesn't support unique unless it's a key. On Sep 14, 2:42 am, Artem Kuroptev kurop...@gmail.com wrote: I'have tried to make a field of a class unique using different combinations of JDO annotations. Never successfully. Here is one of my variations: ---

[google-appengine] Re: Can't access the dashboard anymore

2009-09-14 Thread Nick Johnson (Google)
Hi Riyadh, Rud, What Google Apps domain are you using? Also, can you please provide the app ID of one of your apps, and double-check that signing in from http://appengine.google.com/a/yourdomain (replacing yourdomain with the Apps domain your account is for) does not work? -Nick Johnson On Thu,

[google-appengine] Re: cron / queue quota ?

2009-09-14 Thread Nick Johnson (Google)
Hi Jason, Scheduled tasks are limited to 20. There is no limit on the number of named queue entries you can add, other than the overall daily queue quota. -Nick Johnson On Fri, Sep 11, 2009 at 12:23 AM, Jason C jason.a.coll...@gmail.com wrote: Is there any quota on the number of cron entries?

[google-appengine] Re: TaskQueue API eta Question

2009-09-14 Thread Nick Johnson (Google)
Hi Paul, As far as I'm aware, there's no upper limit on the ETA you can set. -Nick Johnson On Sat, Sep 12, 2009 at 7:51 PM, Paul Kinlan paul.kin...@gmail.com wrote: Hi Guys, Just a quick question. Is there a maximum time that eta/countdown that I can use on Task, for instance can I set a

[google-appengine] Re: Indexes stuck building

2009-09-14 Thread Nick Johnson (Google)
Hi Dave, What is your App ID? -Nick Johnson On Mon, Sep 14, 2009 at 1:04 AM, Dave ddev...@gmail.com wrote: Hi, I have two indexes that are stuck building and have been in this state for more than a day. I've deleted everything out and done the vacuum but they stay in the building state.

[google-appengine] Re: TaskQueue API eta Question

2009-09-14 Thread Paul Kinlan
Excellent, I potentially have a situation where it could be a task could be scheduled for a couple of months into the future and I am trying to work out if a cron poller would be more appropriate instead. Paul 2009/9/14 Nick Johnson (Google) nick.john...@google.com Hi Paul, As far as I'm

[google-appengine] Re: Dramatic increase in api cpu usage.

2009-09-14 Thread Nick Johnson (Google)
Hi Peter, On Sat, Sep 12, 2009 at 12:33 AM, Peter Liu tinyee...@gmail.com wrote: Thanks for explaining how api cpu usage is calculated. I haven't enable billing yet, so my quota is low, but every time I invoke a background task that do batch commits, the api_cpu is in red, warning me the

[google-appengine] Re: Server Error (500) Indexes stuck in building

2009-09-14 Thread Nick Johnson (Google)
Hi Ben, I've reset your indexes - you should be able to vacuum and rebuild them now. -Nick Johnson On Sun, Sep 13, 2009 at 6:07 PM, Ben bhym...@gmail.com wrote: Hi I added a bunch of new indexes and deleted a bunch of old ones. The old ones seem to have been properly deleted, but the new

[google-appengine] Re: Indexes stuck building

2009-09-14 Thread Dave
Hi Nick, thx for the response. It's myblindrebel. Dave On Sep 14, 6:35 am, Nick Johnson (Google) nick.john...@google.com wrote: Hi Dave, What is your App ID? -Nick Johnson On Mon, Sep 14, 2009 at 1:04 AM, Dave ddev...@gmail.com wrote: Hi, I have two indexes that are stuck building and

[google-appengine] Re: Indexes stuck building

2009-09-14 Thread Nick Johnson (Google)
Hi Dave, I've reset your index states to 'error', so you should be able to vacuum and recreate them now. -Nick Johnson On Mon, Sep 14, 2009 at 1:10 PM, Dave ddev...@gmail.com wrote: Hi Nick, thx for the response. It's myblindrebel. Dave On Sep 14, 6:35 am, Nick Johnson (Google)

[google-appengine] Re: bulkloader.py help - BadValueError: Items in the stores list must all be Key instances

2009-09-14 Thread Nick Johnson (Google)
On Fri, Sep 11, 2009 at 9:43 PM, mjbruder mjbru...@gmail.com wrote: Nick, That worked perfectly. Thank you! One more question. I'm now having some difficulty importing my 'author' property because it says it needs to be a user. I get BadValueError: Property author must be a User. However,

[google-appengine] Re: bulkloader.py help - BadValueError: Items in the stores list must all be Key instances

2009-09-14 Thread mjbruder
Thanks Nick, I thought I tried users.User already, but it looks like it works now. Appreciate all the help. Mike On Sep 14, 7:29 am, Nick Johnson (Google) nick.john...@google.com wrote: On Fri, Sep 11, 2009 at 9:43 PM, mjbruder mjbru...@gmail.com wrote: Nick, That worked perfectly.

[google-appengine] Re: Can't access the dashboard anymore

2009-09-14 Thread Rud
I got mine working over the weekend. I misunderstood which domain I should be using for yourdomain. It was the domain for the email used to login / create the applications. Seems silly in retrospect... Rud On Sep 14, 5:22 am, Nick Johnson (Google) nick.john...@google.com wrote: Hi Riyadh, Rud,

[google-appengine] Re: Datastore Latency issues?

2009-09-14 Thread someone1
I was mistaken, there was only 70MB left to delete, and I finally finished, although I am still testing my code to delete the parent properly but it hasn't been able to get past that fetch(). There should be NO MORE descendants so why is this continuing to fail??? This must be a bug in the

[google-appengine] Re: Datastore Latency issues?

2009-09-14 Thread someone1
A better question... why is my name My dick is bigger than your dick? Did my account get hacked!? On Sep 14, 11:46 am, My dick is bigger than your dick someo...@gmail.com wrote: Does anybody have any idea on what could be wrong? This is EXTREMELY aggravating as I still have over 700MB of

[google-appengine] How to query a partial string match AND ignore case

2009-09-14 Thread Marty
I want to query a String member and ignore the case. so I want to find an object where stringName==Marty and the pattern is : some_pattern== RT convert stringName to upperCase convert some_pattern to upperCase then select * where stringName LIKE (%some_pattern%%) what does the setFilter look

[google-appengine] Re: Can't access the dashboard anymore

2009-09-14 Thread Rud
More information on this problem... I used my wife's cell to get an SMS. I created an application but after that it takes me right back to the create application page. Created another application and right back again. From My Account, I click on my applications and go right back to the create

[google-appengine] Re: Error on update. Ask for email 3 times and then... 401 authentication error

2009-09-14 Thread m4spam
Got the same error. Is there any solution? On 8 сен, 17:51, Lecter23 lecte...@gmail.com wrote: Hi. This is the log of the update: Initiating update. Email: x...@gmail.com Password for x...@gmail.com: Saving authentication cookies to C:\Documents and Settings

[google-appengine] Wait for server call

2009-09-14 Thread Angel
I have this code, which sends a call to the server. This call takes a few seconds to complete. I should not run System.out.println until the call ends. I do this? How I wait for the server? thanks [CODE] String value=nothing; BDServiceAsync service = GWT.create(BDService.class);

[google-appengine] Newbie question on filter()

2009-09-14 Thread nikihana
Hi All, I am new to python - so this might be embarrassing - but thanks in advance! Can somebody tell me why I get an error when I uncomment the line in the code below and run it in the appengine interactive shell? The error I get is: 'title =', 'song' Traceback (most recent call last):

[google-appengine] Create and download binary file

2009-09-14 Thread Mark
Hi, I am trying to allow users of my app to download binary files which are created on the fly. These files will contain model data in binary format. I am doing the following now; def post(self): self.response.headers[Content-Type] = application/octet-stream

[google-appengine] quiero usar solo la validacion de usuario de django

2009-09-14 Thread JorgeP
hola grupo, soy nuevo programando en google engine, pues mi pregunta es la siguiente he estado configurando el inicio de sesión para que al momento de subir mi aplicación solo tengan acceso las personas que sean creadas dentro de está... que no tengan cuentas en google... he seguido un ejemplo

[google-appengine] Re: TaskQueue API eta Question

2009-09-14 Thread Benjamin Schuster-Böckler
As far as I understand, there IS an upper limit: maximum countdown/ETA for a task: 30 days from the current date and time from: http://code.google.com/appengine/docs/python/taskqueue/overview.html Best, Benjamin On 14 Sep 2009, at 12:38, Paul Kinlan wrote: Excellent, I potentially have a

[google-appengine] Re: TaskQueue API eta Question

2009-09-14 Thread pbs25
As far as I understand, there IS an upper limit: maximum countdown/ETA for a task: 30 days from the current date and time from: http://code.google.com/appengine/docs/python/taskqueue/overview.html Best, Benjamin On Sep 14, 12:38 pm, Paul Kinlan paul.kin...@gmail.com wrote: Excellent, I

[google-appengine] No Handlers matched this URL - Warning - What does it mean?

2009-09-14 Thread Shirish
09-12 11:01PM 21.595 /favicon.ico 404 5ms 0cpu_ms 0kb Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/531.9 (KHTML, like Gecko) Version/4.0.3 Safari/531.9,gzip(gfe) 24.34.250.89 - - [12/Sep/2009:23:01:21 -0700] GET /favicon.ico HTTP/ 1.1 404 0

[google-appengine] Run your Lucene Applications on Google AppEngine with GAELucene

2009-09-14 Thread lhelper
Enlightened by the discussion Can I run Lucene in google app engine? [http://www.nabble.com/Can-I-run-Lucene-in-google-app-engine-- td23017742.html], I implemented a google datastore based Lucene component, GAELucene, which can help you to run search applications on google app engine. The main

[google-appengine] How to use parameter query in JPQL?

2009-09-14 Thread Jun Tsai
hi, I use jpa as my persistence method.But I find I couldn't use parameter query. query = entityManager.createQuery(select a from A a where a.email=? 1); query.setParameter(1,x...@xxx.com); list = query.getResultList(); list is empty; but If I use query = entityManager.createQuery(select a

[google-appengine] Recipients Emailed shows I sent 600+ emails, but I didn't

2009-09-14 Thread Benjamin Schuster-Böckler
I'm a bit puzzled by the statement on my dashboard that I sent more than 600 emails today. There's not a single line of code where I'm actively sending any emails. My server is still in testing, so I made all URL calls admin-only, just to make sure I'm not being hacked and used as a spam

[google-appengine] GXT and Datastore

2009-09-14 Thread Cabron
Hi all, I'm trying to use ExtJS Gxt with GAE. In the GAE tutorial there is a JDO example on how to use the datastore. But with GXT the project structure is a little different. How can I use the GAE datastore and the RPC client-server communication used by GXT? Many thanks

[google-appengine] Reached Apps Limits

2009-09-14 Thread Lassina Ouattara
Can I get an increase? I Need to deploy a couple of more apps but I have already reached the 10 applications per username limit. I actually have twelve but two of them were shared with me, If an admin can increase the limit for my username that will be great! - Zie Lassina Ouattara

[google-appengine] Re: PDF Generation

2009-09-14 Thread Mike
Hi John - Do you have a code snippet of how you got this to work? I've tried piping images through the Google Image Library without success (AppEngine just hangs for me). I'm might have to rewrite reportlab to support StringIO but I'd love to avoid that if possible. Thanks in advance. :)

[google-appengine] I know Perl - which is better to adopt java / python

2009-09-14 Thread abhishek
Hi friends, I consider myself to be good in Perl, i know google app engine is not for Perl,i need to know which is the better option now for me to develop applications for google app - Java / Pyhton. I am thinking about java though. Also can you point me any tutorial for that apart from those

[google-appengine] Re: Google App Engine Program Policies

2009-09-14 Thread Tom
Would it be a problem to run an ad-serving platform on App Engine (not pages of advertisements but actual ads that are linked to from publisher pages)? I'm interested in using GAE for my ad management tools but the ambiguity in the program terms relating to advertising leaves a lot of the issues

[google-appengine] simultaneous dynamic requests limitation

2009-09-14 Thread mitnickcbc
Hi, I'm leveraging GAE recently and I'm very impressive by the improvements GAE has made during the last 12 months. 12 month ago, I have no option but to migrate my app to EC2 due to the high amount CPU limitation and non-billable quota on GAE. I'm glad to see that these two issues have been

[google-appengine] filter on entries from a certain user

2009-09-14 Thread Peter Newman
Guys - I have a class class Contact(db.Model): person = db.ReferenceProperty(Person) contact_date = db.DateTimeProperty(auto_now_add=True) remarks = db.TextProperty() owner = db.UserProperty(auto_current_user_add=True) however if i add an record in Django with the generic view

[google-appengine] Re: PDF Generation

2009-09-14 Thread Mike
I struggled a bit to get this working today, but eventually found a solution. I am trying to write out JPEG images stored in the datastore. (They are all JPEGs to begin with.) Initially I was trying a number of things, such as dumping the JPEG blog directly into drawImage, running the blob

[google-appengine] Re: Datastore Latency issues?

2009-09-14 Thread My dick is bigger than your dick
Does anybody have any idea on what could be wrong? This is EXTREMELY aggravating as I still have over 700MB of data that needs to be removed and I have resorted to doing it manually since i can't even query this Model type anymore... though other queries seem to work fine and I can query using

[google-appengine] Help with inheritance and JDO

2009-09-14 Thread Todd Nine
Hi all, I've used hibernate for a while, and I'm having a bit of trouble switching to JDO. I have several entities that all entities will share. Rather than a parent table, I'd prefer these columns be embedded directly in each entity. As such, I've defined my abstract entity and child entity

[google-appengine] Migrating JDO Entities

2009-09-14 Thread Todd Nine
Hi all, I've used Hibernate with auto create table data on several projects previously, so the switch to JDO hasn't been a problem. However, I have a question regarding application upgrades. In previous projects, we sometimes need to run an SQL script after an application has been updated to

[google-appengine] Re: I know Perl - which is better to adopt java / python

2009-09-14 Thread Locke
Python is certainly more similar to Perl than Java is. However, Ruby is probably even easier on the Perl brain. App engine supports Ruby (in Java): http://code.google.com/p/appengine-jruby/ Give that a look. Failing that, you will want to go with Python. On Sep 12, 1:59 am, abhishek

  1   2   >