Relative Content

Tag Archive for http-request

NDIS Driver Filter VS API Hooking

I’ve seen many developers asking for “How to intercept in/out HTTP packets “, “How to modify them on the fly”. The most “clean” answer I’ve seen is to make a kernel-mode-driver filter from the scratch (TDI for XP and earlier winx9 or NDIS for NT systems).

Choosing how to approach Geocoding Requests

I am about to begin writing a program in c# that will read Addresses from a source file create a Geocoding request, sent it to Google Maps API, get the response choose the coordinates from the xml and then store them in a database.

The Request/Response Cycle

When User A decides he want to pay a visit to http://example.com/ it all begins with a Request. A short moment later he is given a Response. In this cycle Request-Response a lot is going on, in different frameworks it’s decoupled in different components among them Routing, Dispatching, etc.