Re: [appengine-java] Re: Index Names now throwing an error

2011-05-21 Thread Matt Farnell
It's been over 3 weeks and I still have this blocking prod issue. Can someone at Google please look into it. http://code.google.com/p/googleappengine/issues/detail?id=5004 thanks, On Thu, May 5, 2011 at 11:16 AM, Matt Farnell mfarn...@gmail.com wrote: I haven't created a Java Property, I

Re: [appengine-java] Re: Index Names now throwing an error

2011-05-05 Thread Matt Farnell
this group at http://groups.google.com/group/google-appengine-java?hl=en. -- thanks, *Matt Farnell* *follow on twitter http://twitter.com/lepah* -- 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

Re: [appengine-java] warmup requests going crazy (9850 requests in 15 hours)

2011-05-04 Thread Matt Farnell
?cursor=4984 Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit: http://www.reddit.com/r/appengine On Wed, May 4, 2011 at 3:33 PM, Matt Farnell mfarn...@gmail.com wrote: Hi there, My app is going

[appengine-java] Index Names now throwing an error

2011-05-03 Thread Matt Farnell
is not of the expected type str So existing index names that did work are now preventing app deploys?? -- thanks, *Matt Farnell* *follow on twitter http://twitter.com/lepah* -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

Re: [appengine-java] Re: 620 Error with Google Geocoding service

2011-01-19 Thread Matt Farnell
I'd suggest you do the geocoding on the clients browser and pass the results back to your server if you need them. On Wed, Jan 19, 2011 at 9:12 AM, Didier Durand durand.did...@gmail.com wrote: Hi, I think that you've more chances of getting heard by going to

Re: [appengine-java] SDK 1.3.8 released!

2010-10-15 Thread Matt Farnell
I can't either, when I try an update in eclipse by using help - install new software - Google App Engine - http://dl.google.com/eclipse/plugin/3.6 I can only see 1.3.7 under the SDKs section. On Fri, Oct 15, 2010 at 6:14 AM, Cyrille Vincey crll...@gmail.com wrote: Am I the only one who cannot

[appengine-java] a basic tutorial on using the new 1.3.8 datastore delete with a Java app

2010-10-15 Thread Matt Farnell
It wasn't immediately obvious on how to get the 1.3.8 datastore delete functionality working with a Java app so I played around with it, got it working and thought I'd share how I did it for those java devs that cringe at the sight of python :) lets assume you have an existing java app with an

[appengine-java] email templating

2010-07-22 Thread Matt Farnell
Does anyone have any recommendations for an emailing template solution? Ideally I'd like to be able to define my HTML emails like JSP and then just substitute in the values. I've come across Velocity and StringTemplate, I'd like something thats really lightweight, simple, fast and easy to you.

Re: [appengine-java] Re: Eventually consistent reads and JDO

2010-04-02 Thread Matt Farnell
I finally figured it out, its on the Datastore config level. DatastoreServiceConfig config = DatastoreServiceConfig.Builder.withReadPolicy(new ReadPolicy(Consistency. EVENTUAL)); DatastoreService dss = DatastoreServiceFactory.getDatastoreService(config); I thought it would have been on the

Re: [appengine-java] Introducing App Engine SDK 1.3.0

2009-12-16 Thread Matt Farnell
Hi Jason, It could be just me but when I try and update to 1.3.0 from 1.2.8 in eclipse by clicking Help - Software Updates - Update I don't get any updates for google appengine, thats how I have always in the past got updates but I seem to be stuck on 1.2.8, 1.3.0 isn't coming through the eclipse

Re: [appengine-java] Introducing App Engine SDK 1.3.0

2009-12-16 Thread Matt Farnell
for Eclipse 3.4, and select the App Engine SDK from there. Hope that helps, jason On Wed, Dec 16, 2009 at 11:37 AM, Matt Farnell mfarn...@gmail.com wrote: Hi Jason, It could be just me but when I try and update to 1.3.0 from 1.2.8 in eclipse by clicking Help - Software Updates - Update

[appengine-java] Re: How to save GeoPt in JPA?

2009-09-15 Thread Matt Farnell
use geohash Sent from my iPhone On 15/09/2009, at 7:09 AM, Jason (Google) apija...@google.com wrote: Release 1.2.5 did add a GeoPt property type for Java so you can more easily store geographic coordinates in the datastore, but App Engine itself does not provide the logic necessary for

[appengine-java] Tasks Rate and Bucket Size

2009-09-07 Thread Matt Farnell
Hi there, Can me mentally challenged or maybe its just monday but I'm having a hard time figuring out what the Bucket Size is and how/if its related to the rate for tasks. I've read the documentation here, http://code.google.com/appengine/docs/java/config/queue.html and the wiki article on token