I love the idea of Grizzly, but I can't find any good examples to work with. Well, any good tutorial... I want to have an embedded HTTP server that I can talk to from Dojo. I don't want a J2EE server and I want to use Java. What do you folks think?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Java6 has a simple embedded http server. http://java.sun.com/javase/6/docs/jre/api/net/httpserver/spec/index.html |
|||||||
|
|
StreamHub Push Server is a Comet server written in Java. you can use it as a JAR to embed it in your stack. It also works as a simple HTTP server. It's not integrated with dojo.io but there are plenty of good examples using a simple javascript library.
Oh, and for a good tutorial try Getting Started with StreamHub and Comet. |
||||
|
|
|
Jetty has support for asynch servlet continuations and comet-style programming. See the documentation index. It can also be easily run embedded within another java application |
|||
|
|