[appengine-java] Filter on property 'date' uses operator '='. Joins are only supported when all filters are 'equals' filters.

2011-04-30 Thread Charms Styler
Hi I ran into the following issue while running a joined query between a Date range through JDO, is there any work around for this?? org.datanucleus.store.appengine.query.DatastoreQuery$UnsupportedDatastoreFeatureException: Problem with query SELECT FROM Task WHERE dailyCells == d d.date =

[appengine-java] Datastore Viewer - Server Error

2011-04-22 Thread Charms Styler
I keep getting the following message when ever I Click on the *Datastore Viewer* link at the Admin Control Panel. How can I view my App data?? https://appengine.google.com/ * * Server Error A server error has occurred. Return to Applications screen » https://appengine.google.com/ -- You

Re: [appengine-java] Slow Index Building

2011-03-30 Thread Charms Styler
It's not the case always, I had added a index for a object before any persistence and still I had to wait.. -- 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] indexes are stuck on Building status for more than a day and 16 hours now

2011-03-30 Thread Charms Styler
Hi, the BO's that are in concern has less than 5 rows and some none. Could you pls check if it's stuck somewhere? and is there any way to fast forward this? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group,

Re: [appengine-java] Re: Indexes stuck in 'Building', and getting DatastoreNeedIndexException

2011-03-29 Thread Charms Styler
Hi, I am also stuck in index building for 16 hours now ;( , besides there's not much data on the datastore... is there're anyway I could help it go fast?? And due to that some sections of my app is unavailable, and the log says the following for the past 16 hours

[appengine-java] Re: ManyToMany with list properties - IllegalArgumentException: name: String properties must be 500 characters or less.

2011-03-13 Thread Charms Styler
Datastore supports only till 500 Unicode characters for String. Exceeding that, your required to make that field a Text type. check here. http://code.google.com/appengine/docs/java/datastore/entities.html#Properties_and_Value_Types -- You received this message because you are subscribed to

[appengine-java] Re: Can't get .gif image to show in app engine

2011-03-03 Thread Charms Styler
try something like this inside static files include path=/images/**.* / -- 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-java@googlegroups.com. To unsubscribe from this group,

Re: [appengine-java] Re: Moderation enabled

2011-03-02 Thread Charms Styler
Hi Jason, I think perhaps moderation should be employed with certain keywords and content types as Roy had shown above. it would make life lot easier.. Regards, Charms -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to

[appengine-java] Re: Getting an object whitout key. Is it possible?

2011-02-28 Thread Charms Styler
I suggest you have a look at the appengine docs.. http://code.google.com/appengine/docs/java/datastore/jdo/queries.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

[appengine-java] SystemProperty.applicationId.get() returns s~[APP-ID]

2011-02-28 Thread Charms Styler
Hi, My objective is to retrieve the application AppId through code. SystemProperty.applicationId.get() I use the above code snippet to achieve that but after deploying to App-spot I am receiving my application Id as s~myAppId while on my local machine it returns myAppId. whats with the s~?

Re: [appengine-java] Re: SystemProperty.applicationId.get() returns s~[APP-ID]

2011-02-28 Thread Charms Styler
*so if we replace s~ , it'l solve the issue but is there a more cleaner way to get it? * On Mon, Feb 28, 2011 at 5:20 PM, Simon Knott knott.si...@gmail.com wrote: That prefix is present for all High Replication applications. -- You received this message because you are subscribed to the

Re: [appengine-java] Re: SystemProperty.applicationId.get() returns s~[APP-ID]

2011-02-28 Thread Charms Styler
Thanks for the insight. ;) -- 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-java@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Re: Datastore Import and Export

2011-02-23 Thread Charms Styler
any updates on this? -- 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-java@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Re: XStream and Google App Engine

2011-02-20 Thread Charms Styler
Hi Sean, After patching XStream for GAE, I was able to convert my objects toXml() But was not able to use fromXml(). I was continuously receiving reflection errors. Would be grateful if you could elaborate on which part of you did successfully?? -- You received this message because you are

[appengine-java] Re: order by clause- JPA queries

2011-02-08 Thread Charms Styler
but when index are set to auto, it has to work right ? -- 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-java@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Re: Uploading App to GAE with JSP compile Error

2011-02-07 Thread Charms Styler
is there any solutions for this ? -- 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-java@googlegroups.com. To unsubscribe from this group, send email to

Re: [appengine-java] Reposting question on jsp include.

2011-02-07 Thread Charms Styler
Hi rdayal, would appreciate a lot your response on this since no actual answer was found out anywhere. could you pls explain why the included page cannot access variables of the parent page on deployment ? because in dev server it works!!! but while uploading the app it throws on jsp cannot

[appengine-java] Re: Servlet Filter on non-Servlet resource

2011-02-07 Thread Charms Styler
yes you can apply for a pattern, here are some examples To apply for all html, u define the url pattern filter-mapping filter-namelogSpecial/filter-name url-pattern*.html/url-pattern /filter-mapping To apply to all resources filter-mapping

[appengine-java] Re: Task Queue API Update

2011-01-31 Thread Charms Styler
In your code, TaskOptions TO = new TaskOptions(TOdefault); I suggest you change it to TaskOptions TO = TOdefault; -- 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

Re: [appengine-java] Re: Xstream patched

2011-01-27 Thread Charms Styler
Wel I have been using it on my apps too, I suggest your post your source. -- 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-java@googlegroups.com. To unsubscribe from this group,

[appengine-java] Re: Xstream patched

2011-01-26 Thread Charms Styler
yes we do... try this out http://guice-maven.googlecode.com/svn/trunk/com/thoughtworks/xstream/xstream/xstream-1.3.2-SNAPSHOT-GAE/ -- 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] Re: deploy app but no effect

2011-01-26 Thread Charms Styler
each time you increase the version of the app, you have to manually set the new version to serve as default -- 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

Re: [appengine-java] Re: Subject: Java documentation updated to use low-level API for example code

2011-01-16 Thread Charms Styler
 pm, Charms Styler charmssty...@gmail.com wrote: Thanks. So it is possible to use both JPA low level API. I tried it out , works like a charm but @ retrieval of specific object I ran into prob you see in my JPA, all my Entities are by long ID. How is possible for me to access id using Key

Re: [appengine-java] Re: Subject: Java documentation updated to use low-level API for example code

2011-01-14 Thread Charms Styler
Thanks. So it is possible to use both JPA low level API. I tried it out , works like a charm but @ retrieval of specific object I ran into prob you see in my JPA, all my Entities are by long ID. How is possible for me to access id using Key ? How may I refer keys using id vice versa??

[appengine-java] Re: Regarding @Column annotation

2011-01-12 Thread Charms Styler
true.. @Column length or @size doesn't seems to work. is there a workaround for this?? hmm only explanation found was about the overall limit of 500 chars on String according to Porperties Values http://code.google.com/appengine/docs/java/datastore/entities.html -- You received this

[appengine-java] Re: Regarding @Column annotation

2011-01-12 Thread Charms Styler
the size in the client side itself. Like I set maxlength value to the HTML input tags so that it will be prevent it right from there. Thanks Regards, Susheel Kumar susheel.ku...@ap.sony.com  | +91 9886275353  | 080-67078924 |  SARD-SEZ, SISC | BANGALORE, INDIA | From: Charms Styler

[appengine-java] Re: Subject: Java documentation updated to use low-level API for example code

2011-01-12 Thread Charms Styler
Hi Ikai, As for what I have come across so far, Low level Api is useful for performing a transaction over multiple entities. However is it possible to use low level API as well as JPA or JDO ? The idea is to use low level api whenever a need arises to perform a transaction over multiple

[appengine-java] Re: javax.jdo.JDOUserException: Portion of expression could not be parsed: @email.com

2011-01-12 Thread Charms Styler
Most elegant way to pass query params is as follows otherwise you may run into special chars that could ruin ur app as in this case.. q.addFilter(login_Id, Query.FilterOperator.EQUAL, login_Id); q.addFilter(userPassword, Query.FilterOperator.EQUAL, userPassword); -- You received this message

[appengine-java] Re: Unable to navigate my app in production server, while in development server works fine

2011-01-11 Thread Charms Styler
I also came across an error while defining jsp-file servlet mappings into web.xml just like what have you done. Anyway I suggest you check the logs on your appengine application. You should be able to see a stack-trace of the failure. could u post it? for more info refer