Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a simple Socket.IO server written in Java.

I am familiar with this one, but it has a dependency on servlets, which I am not using in my application.

I am looking for something similar to this, but supports all of the Socket.IO protocol, not just the WebSocket part.

EDIT: this also means no Jetty, etc.

share|improve this question

3 Answers

up vote 10 down vote accepted

Try this lib:

https://github.com/mrniko/netty-socketio

Based on high performance socket lib Netty.

It supports latest protocol of Socket.IO server.

share|improve this answer

Given that most production-capable Java-based servers are based on the Servlet standard, I don't believe any such implementation exists.

share|improve this answer
Well, this isn't mean to serve as a web server, I want to expose a streaming API that is accessible via the web. Socket.IO makes the most sense for that. I guess I get to write one now. Fun. – Alec Gorge May 12 '11 at 2:35
Hehe. Depending on your definition of fun :). I'd argue that going with something like Tomcat with the NIO handler and the Comet implementation gets you where you want to go faster, BUT I can understand not wanting to deal with all the extra layering that the J2EE stuff adds on. – Femi May 12 '11 at 2:38

The simple answer is that I know of no such implementation of Socket.IO in Java.

The Servlet API is the normal way of implementing this kind of thing in Java. If you don't use the Servlet APIs then you have to implement an equivalent set of APIs to represent the request and response message, and an HTTP protocol stack underneath it. This seems kind of pointless if the sole reason for doing this is that your application "doesn't need servlets". (Why not make your application a servlet?)

share|improve this answer
I am not looking for a generic socket.io server. I am looking for a feature complete one that just binds itself to a port, instead using servlets. – Alec Gorge May 12 '11 at 2:33
Well perhaps you can explain what features a feature complete socket io server has ... because this sounds like nonsense to me. – Stephen C May 12 '11 at 4:35
1  
socket.io – Alec Gorge May 12 '11 at 21:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.