1

Specifically I'm trying to access MonogoHQ, using the the Monogo Java Driver, It's work locally but on the server I'm getting

There is some limitation, So the MongoDb Java Driver doesn't work when I try to create connection using: MongoClient mongoClient = new MongoClient( "mydb.mongohq.com", 10014 );

Kothar
  • 6,579
  • 3
  • 33
  • 42
Alon Gutman
  • 865
  • 2
  • 14
  • 22
  • If you can settle with MongoDB-like API you may want to try: https://github.com/mungo-appengine/mungo – quarks Feb 25 '14 at 01:44

1 Answers1

5

Google Appengine doesn't allow socket connections unless you've enabled billing for your app. From the Google docs:

Note: Sockets are only available for paid apps, and traffic from sockets is billed as outgoing bandwidth. Sockets are also limited by daily and per minute (burst) quotas.

From here.

Linuxios
  • 34,849
  • 13
  • 91
  • 116