i have a link on my site which calls an agent which does some processing before doing a
Print “<SCRIPT LANGUAGE=”“JavaScript”“>window.location.replace(”“” & loginURL & “”“)”
loginURL is an FTP url with user authentication information prepended to the URL (ftp://user:password@loginURL). Since the value of the loginURL variable is always a downloadable file, the user always gets the download dialogbox as a result of the Print statement mentioned above.
The problem is that if the user views the source HTML on the page under the download dialog box, they see the FTP URL string with the authentication information. I want to hide the authentication info. I know i could use a java fileOutputStream to achieve the same goal, but the files are huge and I would feel more secure using ftp. does anyone have any suggestions on how to get to a downloadable file which exists on a server requiring authentication (the server that the file is on is not running domino) without using Java and without exposing the authorized userid & password? Maybe a Perl/CGI solution? Thanks in advance!