Does anyone know of a way to secure access to a Java applet hosted within a DNN site to just registered users or some other role?
An applet tag looks something like this:
<APPLET archive="SomeApplet.jar" codebase="" code="somepackage.SomeApplet.class"></APPLET>
But if I try to use a DNN Secure Folder to secure the JAR file, I end up with a URL like the following to access the JAR:
http://localhost/DotNetNuke/LinkClick.aspx?fileticket=99999999999%3d&tabid=NN
I have not found a way to successfullly reference that sort of DNN secure URL in the APPLET tag.
Can DNN secure a file by role, and provide access to that secure file with a URL that ends with the file's original name. For example, can I secure SomeApplet.jar in DNN, where it is accessible with a URL like this:
http://localhost/DotNetNuke/securefiles/SomeApplet.jar
Does anyone know if this can be done w/DNN? (Actually, I know, at the very least, it can be done with my own IHttpModule, but I'm interested in using pure DNN if possible.)
Thanks,
Tom