[appengine-java] Re: app upload issue

2010-06-30 Thread Szymon Malok
Change your app version and upload then. On 1 Lip, 04:47, Vik wrote: > Hie > > Can someone help me on how to resolve it? I understand what the error means > but dont know where to go to fix it > > Initiating update. > java.io.IOException: Error posting to > URL:https://appengine.google.com/api

[appengine-java] Are there any problems with GAE at the moment?

2010-06-17 Thread Szymon Malok
I am still having 500 error. I can't even open admin console. -- 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 group, send email t

[appengine-java] Numeric id from encoded String key

2010-03-08 Thread Szymon Malok
How is it possible to read an entity ID (numeric) from encoded String key? I am using JDO. We see such id when reviewing datastore entites with Datastore Viewer. Probably I am missing something, so thanks a lot ! -- You received this message because you are subscribed to the Google Groups "Goo

[appengine-java] Re: Using a Key in a query filter

2010-01-28 Thread Szymon Malok
Hi, I have the same problem with following code: public static RService getOneService(String owner, String idService, PersistenceManager pm) { List Services = new ArrayList(); Query query = pm.newQuery(RService.class); query.setFilter("id==keySe

[appengine-java] Re: Using a Key in a query filter

2010-01-28 Thread Szymon Malok
Ok I removedquery.setRange(0,1); error disappeared. Still sth is wrong but not with __key__ -- 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 u

[appengine-java] Adding boolean / int field to data model impossible ?

2010-01-07 Thread Szymon Malok
Hello, I have encountered a problem with adding additional field to my datamodel. I understood that existing entites get null values on added field, but null is not allowed on boolean and int for example? GAE won't even let me iterate entities to update these fields. Well in this case I had abou