I am a Java Programmer.I have to implement HttpDaemon.I think it would be written in 'C' or 'Perl' . Kindly help me in what is it and How to implement it.
Asked
Active
Viewed 34 times
1 Answers
1
- Read and understand all the relevant specs.
- Code it up. Start with
java.net.ServerSocket
.
The first step is the hard one!
Seriously, there are many industrial-strength web servers written in Java: Tomcat, Jigsaw, etc. Here is a long list of them.
Perhaps of most interest to you would be Jetty, which is designed to be embedded into other applications. Use Jetty, rather than writing your own. It's a large undertaking to do a good job, and why reinvent the wheel?

Ernest Friedman-Hill
- 80,601
- 10
- 150
- 186
-
I know java.net.ServerSocket.but what is the use of HttpDaemon.Is there any link or pdf to read it – user1413069 Jul 05 '12 at 03:35