MalakSadek / Simple-HTTP-Server

A simple HTTP server in Java 🌐 πŸ“‚ (2019)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple-HTTP-Server

A simple HTTP server in Java 🌐 πŸ“‚ (2019).

This is an HTTP server implemented in Java. It supports HTTP GET, HEAD, PUT, POST, and DELETE requests from multiple clients through threading, and responses appropriately to connecting clients using the 200 OK, 204 No Content, 404 Not Found and 501 Not Implemented codes. It also supports text files such as text/html and binary images such as images/jpg, images/jpeg, images/png and images/gif. The server logs every request to a .txt file.

Installation

Clone the project: git clone https://github.com/MalakSadek/Simple-HTTP-Server

Cd into the directory and compile the files, then run the source code:

        cd Java-Web-Server-HTTP-Requests
        javac src/*.java src/exception/*.java

Usage

Server

Run the server:

        cd src/
        java WebServerMain <document_root> <port_number> <max_number_of_active_threads>

where:

  • document_root is the root directory from which the server will serve documents.
  • port_number is the port on which the server will listen.
  • <max_number_of_active_threads> is the maximum number of clients that can connect simultaneously to the server.

Example: java WebServerMain ../www 12345 100

A testing web root directory with html and binary image files is provided in the www directory.

Terminal
    GET request method
        headers: curl -s -I -X GET localhost:12345/index.html
        text content: curl -s -X GET localhost:12345/index.html
    DELETE request method
        headers: curl -s -I -X DELETE localhost:12345/delete_me.txt
        content: curl -s -X DELETE localhost:12345/delete_me.txt
    404 Error: curl -s -X GET localhost:12345/test.html (File not found)
    501 Error: curl -X SLURP localhost:12345/index.html (POST not implemented)
Web browser
    Default page (GET): open http://127.0.0.1:12345/
    Binary image content: open http://127.0.0.1:12345/stars.gif

Javadocs

1. Generate the Javadocs: javadoc -d javadoc src/*.java src/exception/*.java

2. Open javadoc/index.html in your web browser.

Contact

About

A simple HTTP server in Java 🌐 πŸ“‚ (2019)

License:GNU General Public License v3.0


Languages

Language:Java 78.3%Language:HTML 16.8%Language:Shell 5.0%