CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Nov 2010
    Posts
    3

    Simultaneous Http Requests

    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

  2. #2
    Join Date
    Nov 2010
    Posts
    3

    Re: Simultaneous Http Requests

    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.

  3. #3
    Join Date
    Feb 2005
    Location
    Denmark
    Posts
    742

    Re: Simultaneous Http Requests

    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured