Re: [appengine-java] Sub domain for static content

2011-03-07 Thread Nick Johnson (Google)
Hi Jeff, There's no way to distinguish based on domain in app.yaml/web.xml. You'll need to either have the same mappings in both (but only request static files off one of the domains) or use a servlet and serve them dynamically. -Nick Johnson On Mon, Mar 7, 2011 at 5:56 PM, Jeff Knox wrote: >

Re: [appengine-java] Can't GET with parameters

2011-02-16 Thread Nick Johnson (Google)
Hi Bjorn, The -d argument to curl causes it to include the provided data in the body of the request. Since you're forcing it to make a GET request, it's generating an invalid request - GETs can't have bodies. -Nick Johnson On Thu, Feb 17, 2011 at 11:55 AM, bjorn wrote: > When I try running cur

Re: [appengine-java] Google App Engine MUD

2010-10-07 Thread Nick Johnson (Google)
Hi MLS, Sounds like an interesting project! On Sat, Oct 2, 2010 at 4:02 AM, MLS wrote: > My friend and I are looking to rewrite an old BBS MUD. > > The game is a few thousand rooms and purely text based with commands > issued by individual players and the game responding and updating > players

Re: [appengine-java] Disable Single Property Indexes

2010-06-30 Thread Nick Johnson (Google)
Hi James, It's not possible to disable just the single property indexing. If you exclude a property from being indexed, it won't be included in these indexes, but it won't be included in any composite indexes, either. -Nick Johnson On Wed, Jun 30, 2010 at 3:04 PM, James wrote: > Is there a way

Re: [appengine-java] Deploying Google App Engine application with my own domain

2010-05-10 Thread Nick Johnson (Google)
Hi Srikanth, You need an Apps account in order to use a domain with your App Engine app. The Standard edtiion of Google apps is available for free, however: http://www.google.com/apps/intl/en/group/index.html -Nick Johnson On Mon, May 10, 2010 at 11:29 AM, Srikanth Gade wrote: > Hi, > > I have

Re: [appengine-java] Objectify - Twig - SimpleDS articles

2010-03-30 Thread Nick Johnson (Google)
Hi Andreas, Excellent article! I've posted it to the App Engine reddit: http://www.reddit.com/r/AppEngine/comments/bk4kt/datastore_frameworks_the_interview/ Please feel free to post the followup article(s) there, too, to make sure they get a wide distribution! -Nick Johnson On Mon, Mar 29, 2010

Re: [appengine-java] datacenter distribution policies?

2010-02-05 Thread Nick Johnson (Google)
Hi phracktle, Posts like this may be better suited to the google-appengine group, since they're not Java specific. On Thu, Feb 4, 2010 at 7:29 PM, phraktle wrote: > Hi, > > Can the Google team please shed some light on the issue of multiple > datacenters in various geographical locations pertai

Re: [appengine-java] jingle support on app engine

2010-01-29 Thread Nick Johnson (Google)
Hi, Sorry, but Jingle is not supported by App engine. You can't use a different stack for XMPP support, because App Engine apps cannot open sockets. -Nick Johnson On Thu, Jan 21, 2010 at 1:32 PM, maxsap wrote: > Hello all, I am interested in using app engine in my application witch > is using

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

2009-12-15 Thread Nick Johnson (Google)
On Tue, Dec 15, 2009 at 1:55 PM, George Moschovitis < george.moschovi...@gmail.com> wrote: > > is interpreted by the infrastructure to cause it > > to send the blob back to the user. > > What does 'interpreted' mean? is the actual file served from a > separate infrastructure optimized for static f

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

2009-12-15 Thread Nick Johnson (Google)
Hi George, On Tue, Dec 15, 2009 at 11:34 AM, George Moschovitis < george.moschovi...@gmail.com> wrote: > This is a long awaited feature. > > Some problems though: > > - Instead of the serve() helper I would expect access to the blobs > through a url, something like: > http://my-app.appenginebs.c

Re: [appengine-java] Re: any plans for deferred.defer in Java?

2009-11-26 Thread Nick Johnson (Google)
Hi Vince, I haven't had a chance to integrate your code yet, so feel free to continue making modifications. In particular, I think it would be useful to provide the same set of options the Python deferred API accepts, which include 'eta' and 'countdown' parameters, as well as specifying the queue

[appengine-java] Re: any plans for deferred.defer in Java?

2009-11-11 Thread Nick Johnson (Google)
l /path/to/your/file". :) > > Can you offer some help? thanks. > > Vince > > On Tue, Nov 10, 2009 at 5:12 PM, Nick Johnson (Google) > wrote: > > Hi Vince, > > Thanks for doing this! Could you upload your code to > codereview.appspot.com > > and

[appengine-java] Re: any plans for deferred.defer in Java?

2009-11-10 Thread Nick Johnson (Google)
ase of > DatastoreTimeoutException. > > - Try twice when queuing a task in case of TransientFailureException. > > - Added comments. > > Let me know if you have additional feedback. > > Vince > > On Sun, Nov 8, 2009 at 3:34 PM, Nick Johnson (Google) > wrote: &g

[appengine-java] Re: any plans for deferred.defer in Java?

2009-11-08 Thread Nick Johnson (Google)
Hi Vince, On Sun, Nov 8, 2009 at 7:58 PM, Vince Bonfanti wrote: > > Hi Nick, > > Thanks for your feedback. Yes, I'm very interested in seeing this > included in the official SDK. What are the steps from here? > See this doc: http://groups.google.com/group/google-appengine/web/how-to-submit-a-pa

[appengine-java] Re: Java namespace for entity in bulkloader?

2009-11-04 Thread Nick Johnson (Google)
On Wed, Nov 4, 2009 at 11:31 PM, Stuart Moffatt wrote: > Nick, > > > > Can you clarify what you mean by 'java loader' and 'hosted mode'? > > My java loader is a servlet which loads a CSV from disk, processes it and > persists entities to the datastore. The CSV has the values for the > properties I

[appengine-java] Re: Java namespace for entity in bulkloader?

2009-11-04 Thread Nick Johnson (Google)
ython loaders. -Nick > I guess I am looking for validation (ie, working code) that entities pushed > with a python bulkloader can be queried properly using Java. Like I said, I > have probably got either the Query syntax wrong in the servlet or the > annotations wrong in the class. >

[appengine-java] Re: Java namespace for entity in bulkloader?

2009-11-04 Thread Nick Johnson (Google)
Hi Stuart, I'm not sure why this would be happening. Your best option might be to insert a record using Java, then check how it shows up in the admin console, and make sure to use the exact same name for the kind you use in the Java loader. -Nick Johnson On Wed, Nov 4, 2009 at 6:25 PM, Stuart Mo

[appengine-java] How to use the Python bulkloader for Java apps

2009-09-25 Thread Nick Johnson (Google)
I've written up a blog post describing how to use the Python bulkloader to load data into Java apps: http://blog.notdot.net/2009/9/Advanced-Bulk-Loading-Part-5-Bulk-Loading-for-Java -- Nick Johnson, Developer Programs Engineer, App Engine Google Ireland Ltd. :: Registered in Dublin, Ireland, Regi

[appengine-java] Re: [google-appengine] using a variable to buffer & cache data...

2009-09-16 Thread Nick Johnson (Google)
000). > > > > 2009/9/16 Nick Johnson (Google) > >> Hi Prashant, >> >> On Wed, Sep 16, 2009 at 3:54 PM, Prashant wrote: >> >>> thanks nick. >>> >>> Actually I wanted to use Task Queue instead of Global LinkedList, but >>> this task

[appengine-java] Re: [google-appengine] using a variable to buffer & cache data...

2009-09-16 Thread Nick Johnson (Google)
w many is a 'lacks'? -Nick > > > 2009/9/16 Nick Johnson (Google) > >> Hi Prashant, >> In addition to what Barry says below, a couple of comments: >> - You can safely ignore the 'high cpu' warnings if you've already done >> what you can to o

[appengine-java] Re: [google-appengine] using a variable to buffer & cache data...

2009-09-16 Thread Nick Johnson (Google)
Hi Prashant, In addition to what Barry says below, a couple of comments: - You can safely ignore the 'high cpu' warnings if you've already done what you can to optimize the page. You're not going to hit any invisible limits based on them, just the usual CPU quota etc. - If 'eventual' writes are goo