views:

84

answers:

1

Hi, I want to start to a new JRuby project on GAE but I read that GAE does not allow you to create new sockets. I want to use some API that have to work over HTTP connect like Garb (Google Analytics client). Has anyone managed to use any API over HTTP on GAE? Thank you

+1  A: 

java.net.URLConnection works, but any API using different java.net parts needs to be recoded in terms of URLConnection (if that's even possible -- many APIs won't; RESTful ones however should be workable).

Alex Martelli