Edit D:\app\Administrator\product\11.2.0\dbhome_1\j2ee\OC4J_EM\applications\em\em\ecm\csa\CSA.jsp
<%-- CSA.jsp: Oracle EM Client System Analyzer JSP --%> <%@ page contentType="text/html; charset=UTF-8"%> <%@ page import = "java.io.*" %> <%@ page import = "java.net.*" %> <%@ page import = "java.util.Vector" %> <%@ page import = "java.util.Enumeration" %> <%-- TEST ONLY imports ... --%> <%@ page import = "java.util.Date" %> <%@ page import = "java.text.SimpleDateFormat" %> <%@ page import = "java.util.HashMap" %> <%@ page import = "java.util.Enumeration" %> <jsp:useBean id="tagGenerator" class="oracle.sysman.eml.ecm.csa.CSADeploymentBean"/> <% // TBD???: Specify no caching of JSP page ... long renderStartTime = System.currentTimeMillis(); tagGenerator.init(application, request, response); if(!tagGenerator.isIPAddressAllowed()) { response.sendError(response.SC_UNAUTHORIZED, "The client's IP address" + " is in a range that has been excluded by the administrator"); } else { response.setHeader("Pragma", "No-cache"); response.setHeader("Cache-Control", "no-cache"); response.setDateHeader("Expires", 1); %> <html> <head> <!-- Start:oracle.cabo.ui.beans.StyleSheetBean, localName='styleSheet' --> <link rel="stylesheet" charset="UTF-8" type="text/css" href="blaf-A0-en-ie-6-windows.css"> <title><jsp:getProperty name="tagGenerator" property="title"/></title> <script> function loadAlert(arg) { var search = location.search; if((search != null) && (search != "")) { var jvmIdx = search.indexOf("JVM="); if(jvmIdx > 0) { var qIdx = search.indexOf("&", jvmIdx); if(qIdx > jvmIdx) { //we have to replace whatever the current value is with //Sun search = search.substring(0, jvmIdx + 4) + arg + search.substring(qIdx); } else { //JVM was the last parameter search = search.substring(0, jvmIdx + 4) + arg; } } else { //the JVM isn't specified, so we'll just tack it on search = search + "&JVM=" + arg; } } else { search = "?JVM=" + arg; } location.replace(location.protocol + "//" + location.host + location.pathname + search); } function closeWin() { // window.close(); } function reFocus() { if(window.opener != null) { window.opener.focus(); } } </script> </head> <BODY BGCOLOR='#FFFFFF'> <IMG src="<%= tagGenerator.getBannerFile() %>"> <br> <span class="xl"> <jsp:getProperty name="tagGenerator" property="description"/> </span> <br> <jsp:getProperty name="tagGenerator" property="deploymentTag"/> <br> <% if(tagGenerator.getShowDestURL().equals(Boolean.TRUE)) { %> <A HREF="<%= tagGenerator.getDestURL() %>"> <%= tagGenerator.getDestURLText() %> </A> <% } int uiMode = tagGenerator.getUIMode(); if(uiMode > 0) { long timeout = 0; if(uiMode == 1) { timeout = tagGenerator.getVisibleTimeout(); } else { timeout = tagGenerator.getInvisibleTimeout(); } if(timeout > 0) { %> <script language=javascript> setTimeout('window.close()', <%= timeout %>); </script> <% } } %> </body> </html> <% }//end else IP address allowed %>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de