Hello I have been investigating why the content management system do not work correcly, and found some bugs. One problems lies in the disk cache, which uses URL:s for filenames even for local files. It's easy to read from a URL, just open a URLConnection and read from the file, but writing is harder. The problem is how to get a foolproof way of retrieving the correct filename for the file to write to, since the URL might be a logical name, and there is no API to retreive the physical name of a URL.
I suggest that we store the physical filename (the aboulute name) for a file if the file is local, so that writing to a file (via getWriter()) works correctly. I could implement this functionality if anybody else do not want do do it. Erik Stensmo -------------------------------------------------- Gnistra Erik Stensmo [EMAIL PROTECTED] Phone: +46(0)18 10 87 10 Mobile: +46(0)733 759 752 Home page: www.gnistra.se -------------------------------------------------- -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
