get request and response
-
Hi, i wanna get all requests and responses from a webbrowser inside my app, just like "charles web debbuing proxy(c)" do, but i have no idea how it is done, does anyone know??? thank u. ps: if u know in other language, answer it anyway... big thanks Marcus Abrahão
-
Hi, i wanna get all requests and responses from a webbrowser inside my app, just like "charles web debbuing proxy(c)" do, but i have no idea how it is done, does anyone know??? thank u. ps: if u know in other language, answer it anyway... big thanks Marcus Abrahão
Yeah, it's writing a proxy server that the browser uses to get all of the URLs requested. Since the proxy does the actual work of requesting the page from the server, it also gets all the responses from the server and forwards them to the browser. Basically, you need Sockets experience, writing a TCP/IP listener service and HTTP requests.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008
But no longer in 2009... -
Yeah, it's writing a proxy server that the browser uses to get all of the URLs requested. Since the proxy does the actual work of requesting the page from the server, it also gets all the responses from the server and forwards them to the browser. Basically, you need Sockets experience, writing a TCP/IP listener service and HTTP requests.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008
But no longer in 2009... -
Ok, thank u, but i just wanna read some information from a web site... do u know some basic tutorial or something to help me? thanks a lot!!!
Your description called for a proxy server. There is no simple example of doing this.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008
But no longer in 2009... -
Your description called for a proxy server. There is no simple example of doing this.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008
But no longer in 2009...