Erman İmerermanimer.hashnode.dev·Aug 23, 2024Go HTTP Server TimeoutsA few days ago, I was looking into an idle timeout error reported by a client using one of our APIs. To better understand HTTP server timeouts, I wrote some server and client code for testing, which I'd like to share with you. This might help others ...169 readsGo Language
Cloud Tunedcloudtuned.hashnode.dev·Jun 30, 2024Daily Hack #day88 - Basic Python HTTP ServerHere is an example of a simple HTTP server using Python's built-in http.server module. This server will handle basic GET and POST requests. Basic HTTP Server Example import http.server import socketserver PORT = 8000 class MyRequestHandler(http.ser...Daily Hackshttp server
Ciprian Fusaciprianf.hashnode.dev·Feb 13, 2024Win32 API programming with C - HTTP Server APIIn the realm of network programming on Windows, the Win32 HTTP Server API offers a robust, low-level foundation for handling HTTP requests directly within a C application. This API, part of the Windows HTTP Services (WinHTTP), provides developers wit...328 readsWin32 APIwin32 api