[appengine-java] Re: Downloading application logs from app engine

2010-10-02 Thread Vikas Hazrati
I guess copy paste is the only way out ;) On Sep 30, 5:45 pm, Vikas Hazrati vhazr...@gmail.com wrote: I am trying to download the application logs from the app engine but with the command that I am using appcfg.sh request_logs myapp/war 0051.txt I am able to get the app engine logs and not

[appengine-java] Eclipse import

2010-10-02 Thread Stuart Johnson
I want to play with the gwt-gae-image-gallery in eclipse. http://github.com/ikai/gwt-gae-image-gallery What is the correct way to import this project into eclipse? Thanks. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

[appengine-java] Re: ClassCastException [Lcom.google.appengine.api.datastore.Key

2010-10-02 Thread hendrix.jason
Didier, Thanks for the suggestion, but I have deleted the datastore and tried again with a fresh datastore, and the same thing happens. Thanks, Jason On Sep 29, 10:23 pm, Didier Durand durand.did...@gmail.com wrote: Hello,

[appengine-java] Re: ClassCastException [Lcom.google.appengine.api.datastore.Key

2010-10-02 Thread hendrix.jason
Cryille, Using debug mode, I can see that the group_keys array is being populated correctly. The error is appearing on the last line: ListGroup groups = (ListGroup) q.execute(group_keys); Thanks, Jason On Sep 30, 3:41 am, Cyrille Vincey crll...@gmail.com wrote: Try : Key k =

Re: [appengine-java] Simplest key query

2010-10-02 Thread andy stevko
Hi Paul, FWIW, Here is a slightly edited version of my JDO query by id. Perhaps it can help you get over this bump. @SuppressWarnings(unchecked) public Account lookupAccountById( PersistenceManager pm, Long accountId) { logger.fine(looking up account id= + accountId ); // look up

Re: [appengine-java] Re: ClassCastException [Lcom.google.appengine.api.datastore.Key

2010-10-02 Thread Cyrille Vincey
As far as I know, the execute() method does not work with arrays arguments. Modify the declaration of your 'group_keys' from 'Key[]' to 'Key'. By the way, all query errors happen to be assigned to the 'execute' line in debug mode. Le 2 oct. 2010 à 19:41, hendrix.jason hendrix.ja...@gmail.com a

[appengine-java] Re: ClassCastException [Lcom.google.appengine.api.datastore.Key

2010-10-02 Thread hendrix.jason
group_keys is an array containing several Key values. I want to perform a query that returns all Group items that have a key value that exists in the array group_keys. On Oct 2, 5:24 pm, Cyrille Vincey crll...@gmail.com wrote: As far as I know, the execute() method does not work with arrays

[appengine-java] Re: ClassCastException [Lcom.google.appengine.api.datastore.Key

2010-10-02 Thread hendrix.jason
FYI... This issue was resolved by changing the last line from this: ListGroup groups = (ListGroup) q.execute(group_keys); to this: ListGroup groups = (ListGroup) q.execute(Arrays.asList(group_keys)); Thanks, Jason On Oct 2, 5:55 pm, hendrix.jason hendrix.ja...@gmail.com wrote: group_keys is

[google-appengine] Re: Messages not delivered using Mail API

2010-10-02 Thread Bob
it's sy-newsletter. but almost no exception was thrown by mail.Send() during this campaign. On 1 Okt., 21:12, Ikai Lan (Google) ikai.l+gro...@google.com wrote: Do you have an App ID you can provide? This doesn't sound like the mail.Send() issue we've been seeing, as that results in a thrown

[google-appengine] List of namespaces in the datastore

2010-10-02 Thread Hugo Visser
Currently there doesn't seem to be a way to list all namespaces in the datastore, is this correct? This could potentially lead to the situation that data is lost because the namespace name is lost, especially if an app uses generated namespace names. Hugo -- You received this message because

[google-appengine] Re: Namespace API for Staging

2010-10-02 Thread MLTrim
Thanks Ikai :) I opted for a separate app ID. It's curious that Google itself is suggesting to use Namespaces for Testing and Production. http://code.google.com/intl/it-IT/appengine/docs/python/multitenancy/namespaces.html On Sep 30, 11:45 pm, Ikai Lan (Google) ikai.l+gro...@google.com wrote: I

Re: [google-appengine] List of namespaces in the datastore

2010-10-02 Thread Robert Kluin
Yes. That is correct. Maybe you should keep a list of all the used namespaces so you can clean up if needed. Robert On Sat, Oct 2, 2010 at 06:16, Hugo Visser botte...@gmail.com wrote: Currently there doesn't seem to be a way to list all namespaces in the datastore, is this correct?

[google-appengine] Re: Google only Indexing my URL that I disallow in my robot.txt file, not indexing any of the ones I allow

2010-10-02 Thread SivaTumma
Once try putting just the following lines in your robots.txt User-agent: * Disallow: /datasource/ -- 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