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

Thread: HTTP Client

  1. #1
    Join Date
    Apr 1999
    Posts
    26

    HTTP Client

    I am trying to write a HTTP client using VC++.
    Could anyone please suggest me a book or site?


  2. #2
    Join Date
    Apr 1999
    Posts
    14

    Re: HTTP Client

    Hi,
    The one stop place for the HTTP protocol :
    http://www.w3c.org

    For an implementation of the HTTP protocol in a browser check out
    http://www.mozilla.org
    The source code provided here was the basis on which the Netscape browser was written.

    For an implementation of the HTTP protocal in a Web Server check out
    http://www.apache.org
    This is the free web server ( with source code ) and in todays market more than 50% of the top 100 web servers are using Apache. A Web Server to reckon with. Moreover you have a Java Version of the Webserver shipped now.

    These links are the definitive and have the most authoritative contents. If these seem time consuming check some other resources.

    Regards





    [email protected]

  3. #3
    Join Date
    May 1999
    Posts
    3,332

    Re: HTTP Client

    if you own MS VC++ 6.0 the "Visual C programmer's Guide" has a chapter called "Internet Topics" that looks like a good intro to me.


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