I have web page where a user can upload files.
He can select which file to upload with <t:inputFileUpload> jsf tag.(This tag is like standard HTML input tag with type="file").
I want to add a preview feature.
when a user select a file (example:html file), he could preview his html local file.
I know that there is a "problem" with the security restriction reasons of the browsers.
my first solution is to loading the file from the user local machine to the server, then making a link to that file on the server. The problem is that there is a risk on my server, Maybe this file is corrupted...
Anybody have an idea and solution to this future?