summaryrefslogtreecommitdiff
path: root/BKUOnline/src/main/webapp/applet.jsp
diff options
context:
space:
mode:
authorclemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2009-04-22 15:46:56 +0000
committerclemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2009-04-22 15:46:56 +0000
commit2ddbaa1cee759008c703e1fdf0b49e49c8ac67da (patch)
tree299566af4c9570117dbba618ecc1a4974ec46ba7 /BKUOnline/src/main/webapp/applet.jsp
parent0ee51852335b820c51b7270df31c116a0826f9c7 (diff)
downloadmocca-2ddbaa1cee759008c703e1fdf0b49e49c8ac67da.tar.gz
mocca-2ddbaa1cee759008c703e1fdf0b49e49c8ac67da.tar.bz2
mocca-2ddbaa1cee759008c703e1fdf0b49e49c8ac67da.zip
clean up webapp (remove demo for alternative appletPage, default to applet caching)
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@351 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKUOnline/src/main/webapp/applet.jsp')
-rw-r--r--BKUOnline/src/main/webapp/applet.jsp33
1 files changed, 22 insertions, 11 deletions
diff --git a/BKUOnline/src/main/webapp/applet.jsp b/BKUOnline/src/main/webapp/applet.jsp
index 51f23bbc..3da17066 100644
--- a/BKUOnline/src/main/webapp/applet.jsp
+++ b/BKUOnline/src/main/webapp/applet.jsp
@@ -32,19 +32,15 @@
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
</head>
<%
- // min W/H (for de locale): 145px/145px with gui style 'tiny'
- // (vs. 152px on linux)
int width = session.getAttribute("appletWidth") == null ? 190
- : (Integer) session.getAttribute("appletWidth"); //230 for workshop demo integration
+ : (Integer) session.getAttribute("appletWidth");
int height = session.getAttribute("appletHeight") == null ? 130
: (Integer) session.getAttribute("appletHeight");
String backgroundImg = (String) session.getAttribute("appletBackground");
String guiStyle = (String) session.getAttribute("appletGuiStyle");
String locale = (String) session.getAttribute("locale");
String extension = (String) session.getAttribute("extension");
- String rand = AppletDispatcher.RAND_PREFIX +
- RandomStringUtils.randomAlphanumeric(16);
-
+
String appletClass, appletArchive;
if ("activation".equals(extension)) {
appletArchive = "BKUAppletExt";
@@ -56,6 +52,21 @@
appletArchive = "BKUApplet";
appletClass = "at.gv.egiz.bku.online.applet.BKUApplet.class";
}
+
+ // disable applet caching
+ boolean disableAppletCaching = false;
+ String codebase = "applet";
+
+ if (disableAppletCaching) {
+ // run in AppletDispatcher context and
+ // append random alphanumeric string to avoid applet caching
+ // TODO prepend ../ to all xxxURL applet paramaters
+ codebase += "/" + AppletDispatcher.DISPATCH_CTX;
+ String rand = AppletDispatcher.RAND_PREFIX +
+ RandomStringUtils.randomAlphanumeric(16);
+ appletArchive += rand;
+ }
+
%>
<body id="appletpage" style="width:<%=width%>">
<script>
@@ -68,9 +79,9 @@
// remove random suffix for appletArchive
// and remove '../' for all URL applet parameters
var attributes = {
- codebase :'<%="applet/" + AppletDispatcher.DISPATCH_CTX %>',
+ codebase :'<%=codebase %>',
code : '<%=appletClass%>',
- archive : '<%=appletArchive + rand +".jar, commons-logging.jar, iaik_jce_me4se.jar"%>',
+ archive : '<%=appletArchive +".jar, commons-logging.jar, iaik_jce_me4se.jar"%>',
width : <%=width%>,
height :<%=height%>
};
@@ -78,10 +89,10 @@
GuiStyle : '<%=guiStyle%>',
Locale : '<%=locale%>',
Background : '<%=backgroundImg%>',
- WSDL_URL :'../../stal;jsessionid=<%=session.getId()%>?wsdl',
- HelpURL : '../../help/',
+ WSDL_URL :'../stal;jsessionid=<%=session.getId()%>?wsdl',
+ HelpURL : '../help/',
SessionID : '<%=session.getId()%>',
- RedirectURL : '../../bkuResult',
+ RedirectURL : '../bkuResult',
RedirectTarget: '_parent'
};
var version = '1.6.0_04';