What is a (HTTP) handler ?

About

In a HTTP server, a handler (or request handler) is a method that process a request and

The handler usually manipulates a context object that wraps the request with contextual information such as time of arrival, session, etc…

An handler is also known as middelware (for instance Node express server)





Discover More
Card Puncher Data Processing
Apache - Module

A module is handler (plugin) to the apache server They are in the modules directory and can be loaded with the LoadModule command in the conf file. Example: To list all modules, execute...
Cors Flowchart
Browser - Cross Origin Resource Sharing (CORS)

Cross-origin resource sharing (CORS) is a mechanism that: * allows a HTTP server * to control the cross-origin requests executed by a browser. In short, a HTTP server may allow or not to receive...
Card Puncher Data Processing
Go - Minimal HTTP Server

This article is showing you how to create a minimal HTTP server. Main handler echoes the Path component of the requested URL. If two concurrent requests try to update count at the same time,...
HTTP - Response

An HTTP response is a message sent from a server to a client in response to a request. It's the second part of a fetch, the first being a request. Example of a response that returns an HTML document...
Java Conceptuel Diagram
Java - Jetty (Web Server)

is a java web server Jetty provides: an HTTP server (to send back static content), HTTP client (to make http request), and javax.servlet container (to send back...
Java Conceptuel Diagram
Jetty - Conf

The job of configuring Jetty is building: a tree of: connectors handlers and their corresponding individual configurations. As Jetty components are simply Plain Old Java Objects (POJOs),...
Node - http-proxy-middleware

A proxy middelware library for Node based on http-proxy-middleware
React - Framework

A react framework is a library that is based on react adding other capabilities. Most of the time, they are web based server framework, adding routing and other web capabilities. They create a single...



Share this page:
Follow us:
Task Runner