1httpserv 2============ 3Simple http server for testing of Certificate Revocation Lists (CRL). 4 5Netbeans 6.7.1 project. httpserv.jar requires java 6. 6 7Run with 8 9java -jar httpserv/dist/httpserv.jar --accept portnumber 10 11portnumber: an arbitrary port number to which the server should listen. 12 13httpserv looks for the requested file relativ to the current directory. For 14example, you are in 15$(SRC_ROOT)/xmlsecurity/$(INPATH)/httpserv/dist/javadoc, 16a directory which contains the index.html. From there you run httpserv.jar: 17 18java -jar <path_to_wherever_it_is>/httpserv.jar --accept 8000 19 20now enter in the Browser: 21 22localhost:8000/index.html 23 24 25