I have a WebApplication, where I have to provide direct access to a mounted network drive on the client side (e.g. \\server\zentrale
mapped to drive Z:\
).
I tried following, but nothing works:
<a target="_blank" href="file:///server/zentrale/username/data">user files</a>
<h:outputlink target="_blank" value="file:///server/zentrale/username/data">user files</a>
<a target="_blank" href="file:///Z:/username/data">user files</a>
<h:outputlink target="_blank" value="file:///Z:/username/data">user files</a>
I also added <disable-cross-context>false</disable-cross-context>
in my jboss-web.xml
- without success.
@BalusC mentioned in JSF 2 and a link to file system to create a new webapp context. So, how can I do this using WildFly 10 and Primefaces 6.1 ?
In an older version of our WebApplication we used the IE View
plugin for Firefox, but this was last updated in 2013! Because we have to support other browser like Chrome and IE, we don't want to be dependent on some browser plugins!