Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

access to password-protected web server

Status
Not open for further replies.

igowi

Programmer
Sep 18, 2001
45
US
I want to access to the web server which requires username and password.
Let's say I get permission from the server.
After getting permission and getting another web page, I want to send user information. it's possible this just by creating another URL?
What I mean is....
class myClass
{
main()
{
URL url1 = new URL (..../a.cgi);
// getting permission
// getting input from the web server
URL url2 = new URL (.../b.cgi)
// Can I send form's values to this cgi since I got permission?
// I don't know how the authentication is valid.
}
}

thanks.
:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top