Flack
June 17th, 2004, 22:05
Hello,
I have an app that connects to a webpage to verify the name/serial number.
Is the best way to deal with this to break when the app connects to the webpage and then work from there? If it is, can someone tell me which API to break on?
I've never worked on an app that connects to verify the info, so Im not quite sure how they work. If the cgi returns a value, such as "Registration Failed", how would I go about finding that return value and changing it to a good value?
Thanx for all of the help
-Flack
I have an app that connects to a webpage to verify the name/serial number.
Is the best way to deal with this to break when the app connects to the webpage and then work from there? If it is, can someone tell me which API to break on?
I've never worked on an app that connects to verify the info, so Im not quite sure how they work. If the cgi returns a value, such as "Registration Failed", how would I go about finding that return value and changing it to a good value?
Thanx for all of the help
-Flack

Hi ,you had better read something about http protocol , when you connect to a web site , IE will send some requirement to the web host . then the web server will analyse the requirement . how to connect to web server ? just like any other socket programme , use connect ,send some requirment . read something about http protocol ,you will find the result of your question .