[appengine-java] Re: App Engine and IP Addresses

2010-10-11 Thread Peter Ondruska
For performance reasons Google Frontend servers use keep-alives by default unless you request non-persistent connection with http request header connection: close. On Oct 11, 5:34 pm, Benjamin wrote: > Guys - thank you.  It's working great. I'm actually impressed at how I > can us the IP i get fr

[appengine-java] Re: App Engine and IP Addresses

2010-10-11 Thread Benjamin
Guys - thank you. It's working great. I'm actually impressed at how I can us the IP i get from google.com or appspot.com and as long as I provide the host my POST get's directed to my app engine app. I will post more about this in my blog: http://nimbits.blogspot.com/ I now have an Arduino Micro

Re: [appengine-java] Re: App Engine and IP Addresses

2010-10-10 Thread Maxim Veksler
Exactly. Use https://addons.mozilla.org/en-US/firefox/addon/6647/ to see what headers your browser send as part of the HTTP GET request and emulate them in C code. Should work :). On Sat, Oct 9, 2010 at 11:45 PM, Peter Ondruska wrote: > When connecting to IP address you need to use HTTP host he

[appengine-java] Re: App Engine and IP Addresses

2010-10-09 Thread Peter Ondruska
When connecting to IP address you need to use HTTP host header so that GAE knows which application/virtual server you want. On Oct 9, 6:26 pm, Benjamin wrote: > I've been working on a challenge over the past couple of days and I > could really use a knowledge transfer on App Engine, Domains and I

[appengine-java] Re: App Engine and IP Addresses

2010-10-09 Thread Benjamin
I did just get an arduino to post to app engine by using a reverse proxy on an apache server on my LAN - but i'd rather hit app engine directly... On Oct 9, 12:26 pm, Benjamin wrote: > I've been working on a challenge over the past couple of days and I > could really use a knowledge transfer on A