Discussing the article: "Requesting in Connexus (Part 6): Creating an HTTP Request and Response"

 

Check out the new article: Requesting in Connexus (Part 6): Creating an HTTP Request and Response.

In this sixth article of the Connexus library series, we will focus on a complete HTTP request, covering each component that makes up a request. We will create a class that represents the request as a whole, which will help us bring together the previously created classes.

This article is part of an ongoing series where we are building a library called Connexus. In the first article, we covered the basic functionality of the WebRequest function, understanding each of its parameters and creating a sample code that demonstrates its use and the challenges associated with it. In the previous article, we explored what HTTP methods are and the status codes returned by the server, indicating whether the request was successfully processed or if there was an error on the client or server side.

In this sixth article of the Connexus library series, we will focus on a complete HTTP request, covering each component that makes up a request. We will create a class that represents the request as a whole, which will help us bring together the previously created classes. Additionally, we will develop a similar class to handle the server’s response, containing the response data, status code, and even the duration of the request.


Author: joaopedrodev

 
You have made a tremendous contribution to mql5 and all of us. Making it easier than ever to work with web requests and http in general. This is excellent stuff. Thanks man. Can’t wait for the final article to seal the deal with the connexus library.