[appengine-java] simple request (change localhost for debug app engine server to my local ip)

2011-06-03 Thread Bourke Floyd IV
I want to change localhost to an ip. I know the flag is -a or -address for the dev_appserver.sh (Java) but I'm running the Android/AppEngine Task demo and the arguments passed into the debug config are for GWT not the previous shell script. Thus I get Unknown argument: -a Google Web Toolkit

[appengine-java] Best option to scope transactions for fast RPC calls

2010-02-05 Thread Bourke Floyd IV
I'm working on a RPC like service and I was wondering if I picked the right method to implement my classes that I'll be persisting to the datastore. Also note that I allow users to create their own keys used to lookup their data. Currently I have a MerchantClass Entity that holds my merchants and

[appengine-java] Re: Why is it called Google App Engine for Java ?

2009-11-29 Thread Bourke Floyd IV
I'd say look before your leap. http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine?hl=en Your asking one company to change a product name due finding yourself mislead. Even if I agreed with your perspective I'd welcome you to Capitalism. On Nov 28, 10:53 am, Ravi

[appengine-java] Re: InputStream read returning -1, but avalible btyes correct ?

2009-11-23 Thread Bourke Floyd IV
application? Is it a browser form or a custom client? On Sat, Nov 21, 2009 at 12:37 PM, Bourke Floyd IV chb...@gmail.com wrote: //This was working before I overhauled the authentication of my app //I'm trying to store the body of a Http POST as Text, I also plan on doing a Blob version

[appengine-java] Re: I'm getting a already connected exception when I setRequestMethod(GET) on my HttpURLConnection

2009-10-28 Thread Bourke Floyd IV
); conn.setReadTimeout(timeoutmili); rd = new BufferedReader(new InputStreamReader(conn.getInputStream())); StringBuffer sb = new StringBuffer(); String line; while ((line = rd.readLine()) != null) {     sb.append(line);} response = sb.toString(); On Oct 26, 6:56 pm, Bourke Floyd IV chb...@gmail.com

[appengine-java] Google HOSTED Account Auth Help! w/ Code

2009-10-28 Thread Bourke Floyd IV
Code in reference to: http://groups.google.com/group/google-appengine-java/browse_thread/thread/47306a917b8e1628 I'm not getting back the ACSID Cookie. The comments in the Servlet Code below explain everything. I hope this helps someone else getting started because I had a ton of sifting to get

[appengine-java] I'm getting a already connected exception when I setRequestMethod(GET) on my HttpURLConnection

2009-10-26 Thread Bourke Floyd IV
URL authUrl = new URL(url); connection = (HttpURLConnection) authUrl.openConnection(); connection.setRequestMethod(GET); //- already connected exception. The documentation indicates that I supposed to use openConnection, then set my params, then use connect. Inspecting the connection object in

[appengine-java] Re: Authentication - So close.... getCurrentUser() still null

2009-10-26 Thread Bourke Floyd IV
); On Oct 24, 6:35 pm, Bourke Floyd IV chb...@gmail.com wrote: This has been a pain from the beginning, but I'm so close I can smell it! First, I tried sending normal Authentication header to my app, but it was being striped off and not used. Then I found in documentation that I need to reference