On Tue, Nov 12, 2013 at 5:42 AM, David Garcia <[email protected]>
 wrote:

> But I wonder if I can make an application server, so that different
> programs can connect to it, by different ports.
>
>

App Engine can only accept incoming connections via HTTP port 80 and HTTPS
port 443. The Sockets API allows outbound connections via multiple ports (
see https://developers.google.com/appengine/docs/java/sockets/ ) but does
not currently support inbound connections.

However, you can run your application server on Compute Engine (
https://cloud.google.com/products/compute-engine ), accept incoming
connections on multiple different ports, and either handle the connection
itself or proxy it through to App Engine.


-----------------
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to