Thanks Kevin for the tips. Could you please tell me how I can assign IDs to files ? How does the application (Download.java) recognise files by their IDs ?
Regards, A.P.Das. Kevin Rutherford wrote: > > You can use anything you want to identify the file to be downloaded. It is > just a parameter on the URL that your Download.java class will look at to > identify what file to download. > > We have a file manager service that tracks files by ID (a number that we > assign) and does a security check to make sure that the person requesting > the file is allowed to see that file. That is why we pass in the file ID as > a number on the URL. > > If you want to use the actual file name (or path) on the URL, that is up to > you. Just keep in mind any security issues that might come up if anyone can > request any file just by specifying its name on the URL! > > Kevin > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
