developing my own web browser
-
I'd like to know if ther is anybody who knows just how should I go about implementing my owb web browser application using winsokets. I want to create an application that would just connect to a web server. Then make a request for a web page that is located on the server and based upon the response from the server to make another request for another page. I suppose I need to se winsokets on the port 80 but I don't know how to make the requests and get the responses and how to maintain the same connection throughout the whole process. Miky
-
I'd like to know if ther is anybody who knows just how should I go about implementing my owb web browser application using winsokets. I want to create an application that would just connect to a web server. Then make a request for a web page that is located on the server and based upon the response from the server to make another request for another page. I suppose I need to se winsokets on the port 80 but I don't know how to make the requests and get the responses and how to maintain the same connection throughout the whole process. Miky
If what you want to do is write a web crawler to collect information, why reinvent the wheel? Why not use a web browser control. You didn't specify any language restrictions, so you can start with the article on Code Project: http://www.codeproject.com/internet/httpget-post.asp?target=winsock%7Cweb%7Cbrowser[^] or try http://www.syix.com/wpsjr1/wsksock.zip[^] RageInTheMachine9532