I have to write a local HTTP-Proxy. I could not find any good literature about that yet. That's why I'm writing in this forum. I have already started and got the following suggestion for an architecture:
One class processing the data, what means in general this:
ListeningSocket.Listen --> Communication Socket (CS) --> CS.ReceiveBrowserData --> Create a New Communication Socket to communicate with the Webserver (NCS) --> NCS.Connect --> NCS.SendRequestToWebserver --> NCS.ReceiveWebserverData -->CS.SendResponseToBrowser
This is kind of a Method chain. Could you recommend such a chaining?
Furthermore i've got 2 other Classes to store the sockets and the data. In Particular, one class with a Socket-Field to communicate with the Browser, a Byte[] Buffer-Field to store the Request from Webserver and another class, with similar Field to communicate with the Webserver and store its response.
Another important thing is the Threading-Architecure:
There are two Architecures which looks nice to me. One is supported by a Threadpool, the other one by asynchronous Methods. I already tried to do it with asynchronous methods, but its not working proper.
I really hope you can help me. If you need any further Information, just ask.