views:

59

answers:

2

I have created a small game in Java and I would like to add the ability for a player to publish his highscores online.

I'm willing to write the server software myself (it's easy these days with Ruby Mongrel, or even C++). I just need to have some sort hosting. One solution that immediately comes to mind is Amazon EC2. But that's kind of expensive for my needs. Since the requirements are very minimal (I don't even need a website, just a web service) I think there may be a cheaper solution out there.

Does anyone know of a free or cheap provider for this kind of thing?

Update

For those interested, this is solution I came up with:

+2  A: 

Something like Slicehost or any other small-scale VPS provider could probably work. You might even be able to write it as a small app and publish it on Google App Engine, which is free up to a certain point.

Amber
Slicehost looks like a very attractive solution :)
StackedCrooked
Honestly if you think you can, GAE would probably be the best choice (given that it's free). The GAE framework is pretty simple to work with, especially for something like a basic high-score server that you seem to be going for, and you can use either Java or Python to make apps for it.
Amber
Thanks, but I really wanted to set something up from scratch in order to maximize the learning experience.
StackedCrooked
+1  A: 

google app engine comes to mind: http://code.google.com/appengine/

Tchalvak