[appengine-java] parameter values in taskqueue that contain '' gets cut

2010-09-19 Thread mar_novice
When using task queue and the parameters contain an ampersand, it gets cut off when you try to its value. example: Queue queue = QueueFactory.getDefaultQueue(); queue.add( url(/mailer) .param(msg,you me) .method(Method.GET) ); and in mailer

[appengine-java] Re: Disable URLFetchService cache

2010-06-11 Thread mar_novice
Ooopppss.. my mistake, im looking at an old version of my app. I think setting the headers with no-cache is enough and no need for the timestamp. On Jun 11, 6:27 pm, mar_novice mariocape1...@gmail.com wrote:      Unfortunately, even using URL urlObj = new URL(url); HttpURLConnection

[appengine-java] Re: Disable URLFetchService cache

2010-06-10 Thread mar_novice
faster. On Wed, Jun 9, 2010 at 5:29 AM, mar_novice mariocape1...@gmail.com wrote: Is there a way to disable urlfetchService cache? When I made a urlfetch, sometimes, what I get is the cached result. -- You received this message because you are subscribed to the Google Groups Google

[appengine-java] Manually create entity table and add rows using the dashboard.

2010-06-10 Thread mar_novice
Is there a way to use the dashboard dataviewer to manually create an entity table and add entities in it? So far, what I know is I can add an entity in a given kind if there are already existing entities of that kind. What if I am about to add the very first entity of that kind? -- You received

[appengine-java] Disable URLFetchService cache

2010-06-09 Thread mar_novice
Is there a way to disable urlfetchService cache? When I made a urlfetch, sometimes, what I get is the cached result. -- 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] userService.createLogoutURL() not working when user accounts are Google App accounts

2010-05-06 Thread mar_novice
When using userService.createLogoutURL(URL) in a jsp, if the account used for the user is in Google Apps, instead redirected to the specified url, it just go to the login page for the Google App account. If Google account was used, it redirects to the specified url. Does anyone experienced this?

[appengine-java] equivalent python model definition of one to many jdo

2010-03-23 Thread mar_novice
Does anyone have tried to implement an app in GAE having both java and python? I have an existing app and my front end is in java. Now I want to use the existing datastore to be interfaced by python. My problem is i don't know how to define the relationships and model that would be equivalent

[appengine-java] Re: change timezone of date that is already persisted

2010-02-03 Thread mar_novice
information as UTC and convert as needed for display or computation due to weirdness with timezones, daylight saving time, and so forth. Your data will be much easier to internationalize if it's timezone/locale independent. On Thu, Jan 28, 2010 at 5:46 PM, mar_novice mariocape1...@gmail.com

[appengine-java] Re: Help!!.. FinalizableReferenceQueue$SystemLoader loadFinalizer: Not allowed to access system class loader.

2010-02-03 Thread mar_novice
Some people said that it is not a problem and we can just ignore it. On Jan 30, 2:33 am, chiappone chiapp...@gmail.com wrote: I am noticing the same issue, were you able to figure the cause? On Dec 6 2009, 6:12 pm, mar_novice mariocape1...@gmail.com wrote: I've noticed that there are some

[appengine-java] change timezone of date that is already persisted

2010-01-28 Thread mar_novice
Hi, Is there a way to change the timezone of the whole app and also change the timezone of the dates that were already in the datastore from UTC to a specific timezone? thanks. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To

[appengine-java] Getting error when updated from 1.2.5 to 1.3.0

2010-01-20 Thread mar_novice
I can't run anymore after I updated the sdk and even downloading a fresh eclipse and gae plugin, I always get the same error. Initializing AppEngine server The server is running at http://localhost:/ 01 21, 10 2:30:15 AM com.google.apphosting.utils.jetty.JettyLogger warn WARNING: EXCEPTION

[appengine-java] Re: Getting datastoretimeout exception more frequent today...

2009-12-11 Thread mar_novice
$PreparedQueryImpl.asIterator(DatastoreServiceImpl.java:349)         at com.google.appengine.api.datastore.DatastoreServiceImpl$PreparedQueryImpl$1.iterator(DatastoreServiceImpl.java:326)         at us.mobcasting.server.rest.Worker.prune(Worker.java:84) On Thu, Dec 10, 2009 at 10:13 PM, mar_novice mariocape1

[appengine-java] Getting datastoretimeout exception more frequent today...

2009-12-10 Thread mar_novice
Is there something wrong with the datastore today?? I am always getting datastoretimeout and DeadlineExceededException... -- 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] Help!!.. FinalizableReferenceQueue$SystemLoader loadFinalizer: Not allowed to access system class loader.

2009-12-06 Thread mar_novice
I've noticed that there are some info (not warning nor error) being thrown in my logs that i can't figure out the cause... I don't know if i should worry about it or not Below is the stack trace.. # 2-06 03:51PM 37.542

[appengine-java] gql query error on data viewer.. help

2009-09-23 Thread mar_novice
you think is the problem?? thanks.. mar_novice --~--~-~--~~~---~--~~ 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

[appengine-java] Re: excel to datatstore.. help

2009-09-22 Thread mar_novice
Thanks.. ill check it out.. On Sep 22, 2:31 pm, datanucleus andy_jeffer...@yahoo.com wrote: In fact, as long as GAE/J allows opening of files then the DataNucleus Excel plugin could be used to retrieve the data into Java objects, and these persisted straight to BigTable using the Google

[appengine-java] excel to datatstore.. help

2009-09-21 Thread mar_novice
Is there a way to import data from excel to datastore?? --~--~-~--~~~---~--~~ 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

[appengine-java] Sort items in the Data Viewer

2009-09-18 Thread mar_novice
Is there a way to sort items in the Data Viewer? --~--~-~--~~~---~--~~ 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

[appengine-java] Re: Sort items in the Data Viewer

2009-09-18 Thread mar_novice
OOOpppsss.. Sorry.. I forgot that there is an option to query.. my mistake. PLEASE IGNORE THIS POST. On Sep 18, 4:22 pm, mar_novice mariocape1...@gmail.com wrote: Is there a way to sort items in the Data Viewer? --~--~-~--~~~---~--~~ You received this message

[appengine-java] GeoPt query (find location that is with-in the radius of a location)

2009-09-13 Thread mar_novice
that is with-in the 2km radius of BigBuilding. Anyone can provide some tips and suggestions on how to implement this?? Thanks in advance. -mar_novice --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine

[appengine-java] Re: how to query to implement auto suggest query...

2009-09-07 Thread mar_novice
By the way, i am using JDO. On Sep 8, 9:13 am, mar_novice mariocape1...@gmail.com wrote: Thanks for the tip Jason but i am looking for the app engine version of the mysql query like function just like below SELECT distinct(title) as suggest FROM page WHERE title like

[appengine-java] Re: how to query to implement auto suggest query...

2009-09-07 Thread mar_novice
characters. http://www.dynamicajax.com/fr/AJAX_Suggest_Tutorial-.html http://www.google.com/search?q=ajax+suggest - Jason On Thu, Sep 3, 2009 at 3:08 AM, mar_novice mariocape1...@gmail.comwrote: Hi,     I dont know how to implement a back-end for an autosuggest query. The idea

[appengine-java] Re: how to query to implement auto suggest query...

2009-09-07 Thread mar_novice
://www.dynamicajax.com/fr/AJAX_Suggest_Tutorial-.html http://www.google.com/search?q=ajax+suggest - Jason On Thu, Sep 3, 2009 at 3:08 AM, mar_novice mariocape1...@gmail.comwrote: Hi,     I dont know how to implement a back-end for an autosuggest query. The idea is if a user type sa, the servlet

[appengine-java] Re: child of the same class

2009-09-02 Thread mar_novice
, mar_novice mariocape1...@gmail.com wrote: I filed the bug already, thanks.. hope that this bug will be fix immediately and have an update with the sdk. I really need to implement this.. On Aug 29, 2:12 am, Jason (Google) apija...@google.com wrote: My sample was using JDO. In JDO, this does not work

[appengine-java] Profiling in java

2009-08-20 Thread mar_novice
is there a way to do profiling with google app engine java? --~--~-~--~~~---~--~~ 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] Adding or deleting a property of an entity...

2009-08-19 Thread mar_novice
will happen in my data up in GAE? -mar_novice --~--~-~--~~~---~--~~ 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

[appengine-java] Re: Adding or deleting a property of an entity...

2009-08-19 Thread mar_novice
Thank you very much for that info. That's a big help. On Aug 19, 4:51 pm, leszek leszek.ptokar...@gmail.com wrote: Just do it, it will work as you expect. GAE is scheme-less database, it has no any scheme or dictionary attached. It is like old WYSIWYG What You See (in the entity class

[appengine-java] GAE- Horizontal scroll bar in logs dashboard..

2009-08-19 Thread mar_novice
in monitoring logs.. -mar_novice --~--~-~--~~~---~--~~ 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