Hello,
I am building a client that will do a simple http upload. The client I am building needs to be able to handle several simultaneous requests.
DH
Printable View
Hello,
I am building a client that will do a simple http upload. The client I am building needs to be able to handle several simultaneous requests.
DH
I should also mention that the client is a console application. So although there are many http upload examples involving web pages and controls, I am working with a console client that uses basic https authentication.
You could do this with threading. Spawn multiple threads which each handle an upload.
If using .NET 4 framework, take a look at parallel for loops and tasks for easier abstraction over threading.