[appengine-java] Total Stored Data billing is misleading

2011-08-14 Thread GoSharp Lite
My admin console shows 'Size of all entities' is 1 GByte. My Billing Status show 'Total Stored Data' is 9.45 GBytes. It seems the billable 'Total Stored Data' is affected by datastore entities, indexes, memcache, task queue and other background mechanism. I will be a much happier customer if I

[appengine-java] Re: sitemap.xml and urllist.txt

2011-08-14 Thread Vik
any help on this plz? Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Fri, Aug 12, 2011 at 8:17 AM, Vik vik@gmail.com wrote: any advise on this plz? Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Wed, Aug 10,

Re: [appengine-java] Re: date comparison fails

2011-08-14 Thread Vik
Does not work for me Not sure why it fails . I even tried: Query query = pm.newQuery(AdUsage.class); query.setFilter(smsUseDate = smsUseDateParam smsUseDate = smsUseDateParam + vendorSeq == vendorSeqParam); query.declareParameters(java.util.Date smsUseDateParam, Long vendorSeqParam);

Re: [appengine-java] Re: Entity modelling

2011-08-14 Thread MK Z
Hi, Thanks for your reply. The category is not related to the group - category holds value like Science/Tech/Music while Group stores value like Teens/Kids/Adult. The reason I have these two fields I want to be able to sort the forum according to category and follow by group. So in the forum

[appengine-java] Creating an image into the blobstore by programmation

2011-08-14 Thread Christian Goudreau
Hi everyone, I tried unsuccessfully to create image pragmatically on the server side and add it to the blobstore. By following the instructions in the tutorial about writing file, I end up with an error on that line: AppEngineFile file =fileService .createNewBlobFile(text/plain); I want to use

[appengine-java] Re: secure appengine urls with security constraints

2011-08-14 Thread Kesava Neeli
Anyone has ideas on this topic? I don't want my application on appengine to be publicly available to anyone who knows the url. My client app running on mobile handsets ONLY should be able to hit my app on appengine servers. -- You received this message because you are subscribed to the Google

[appengine-java] Re: gae.parent-pk doesnt work in list query

2011-08-14 Thread lp
On Aug 12, 7:03 pm, datanucleus andy_jeffer...@yahoo.com wrote: Invalid JPQL (a Key cannot equal a List). This makes more sense Select c from ChatUser c where c.parentKey IN :parentKey thanks for the response. however i have the following issues. 1.I am using the query Select c from

[appengine-java] Re: gae.parent-pk doesnt work in list query

2011-08-14 Thread lp
1.I am using the query  Select c from ChatUser c where c.key =:keyList elsewhere and it is working fine. How can it be working? i now concerned how the above query can work. i assumed it was producing an IN/OR query, hence limited by 30 OR statements. however unit testing in the development

[appengine-java] Re: gae.parent-pk doesnt work in list query

2011-08-14 Thread lp
On Aug 12, 7:03 pm, datanucleus andy_jeffer...@yahoo.com wrote: Invalid JPQL (a Key cannot equal a List). This makes more sense Select c from ChatUser c where c.parentKey IN :parentKey i tried the IN clause it get the same error. @Basic @Extension(vendorName=datanucleus,