November 25th, 2009 06:29 AM
Hi Arjay, thanks for your answer!
What I'm doing inside this request is actually thread safe (I think), since Im throwing requests to a (multitreaded) webserver and then displaying them in a client...
November 24th, 2009 06:46 AM
I thought I made the point of situation here;
Following some suggestions, I decided to go for an implementation with explicit threading (giving up on the ThreadPool and Asynchronous webrequests,...
November 24th, 2009 03:37 AM
Hi there, this is - I think - my third post on this subject, which means I was still not able to implement my proxy server.
For the people that did not read my other posts, I am trying to use the...
November 24th, 2009 03:35 AM
Hi there, this is - I think - my third post on this subject, which means I was still not able to implement my proxy server.
For the people that did not read my other posts, I am trying to use the...
November 20th, 2009 10:19 AM
Hi there, this is - I think - my third post on this subject, which means I was still not able to implement my proxy server.
For the people that did not read my other posts, I am trying to use the...
November 13th, 2009 10:29 AM
So I think the summary of the situation concerning multithreading in C# is (correct me if I'm wrong):
- use asynchronous requests and let the system handle the multithreading; (1)
- use threadPool...
November 12th, 2009 06:02 AM
Hi,
Thanks for reading this!
For the people who never read any of my posts I am trying to write a proxy server in c#.
I am trying to "keep it simple" and stay away from asynchronous requests, but...
October 28th, 2009 12:30 PM
I decided that I didnt need such a complicated solution; I didnt need one asynchronous listening socket and an asynchronous client socket;
In fact, all I need is a listening socket that is...
October 27th, 2009 06:48 AM
Hello,
First of all thanks for reading this. I am aiming to create a proxy server to overcome some authentication problems. The idea is to have the server handling the requests to a certain port,...
August 4th, 2009 11:43 AM
Hi,
I have implemented a communication model where I have a listening socket, waiting for requests on a specific port.
Once it gets called, it generates a client that creates two sockets: one...