Skip to Main Content

EM login error page

RobeenJul 3 2019 — edited Sep 13 2019

Oracle Database 12.2.0

RHEL 7.4

Hello Team,

I would like to know why I am getting the error below when login to EM 12

<�!-- saved from url=(0014)about:internet --> <�html lang="en"> <�!-- Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.--> <�!-- Smart developers always View Source. This application was built using Adobe Flex, an open source framework for building rich Internet applications that get delivered via the Flash Player or to desktops via Adobe AIR. Learn more about Flex at http://flex.org // --> <�head> <�meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <�link rel="shortcut icon" href="image/favicon_c2110602.ico" type="image/x-icon" /> <�title>EM Express Login<�/title> <�script src="AC_OETags_c2110602.js" language="javascript"><�/script> <�style> html {visibility:hidden;} <�/style> <�script> if (self===top) { document.documentElement.style.visibility='visible'; } else { top.location=self.location; } <�/script> <�!-- BEGIN EM Express active report feature list javascript --> <�script language="javascript" type="text/javascript" src="scripts/reportMap_c2110602.js"><�/script> <�!-- END EM Express active report feature list javascript --> <�style> body { margin: 0px; overflow: "auto" } <�/style> <�script language="JavaScript" type="text/javascript"> <�!-- // ----------------------------------------------------------------------------- // Globals // Major version of Flash required var requiredMajorVersion = 10; // Minor version of Flash required var requiredMinorVersion = 0; // Minor version of Flash required var requiredRevision = 0; // ----------------------------------------------------------------------------- // --> <�/script> <�!-- contains functions for resizing the flash app --> <�script language="JavaScript" type="text/javascript"> /* * Returns the current height of the browser window. * */ function getWindowHeight() { var windowHeight = 0; // if window.innerWidth is defined, use it if (typeof(window.innerHeight ) == 'number') { // not IE... windowHeight = window.innerHeight; } else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) { //IE 6 + others in 'standards compliant mode' windowHeight = document.documentElement.clientHeight; } else if (document.body && (document.body.clientWidth || document.body.clientHeight)) { // IE 4 compatible windowHeight = document.body.clientHeight; } return windowHeight; } /* * Returns the current width of the browser window. * */ function getWindowWidth() { var windowWidth = 0; // if window.innerWidth is defined, use it if (typeof(window.innerHeight ) == 'number') { // not IE... windowWidth = window.innerWidth; } else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) { //IE 6 + others in 'standards compliant mode' windowWidth = document.documentElement.clientWidth; } else if (document.body && (document.body.clientWidth || document.body.clientHeight)) { // IE 4 compatible windowWidth = document.body.clientWidth; } return windowWidth; } /* * Adjusts the size of the flash app. * */ function sizeFlashApp() { // get the flash element whose dimensions need to be reset var elemEMExpressLogin = document.getElementById('emxLogin'); // if the element is not null if (elemEMExpressLogin) { // get the minimum dimensions (right now, these are hardcoded values). // we have to do this because if the contents of the flash app are clipped // due to flex scrollbars, JAWS won't read out the clipped content; on // the other hand, if we assert a minimum flash app size and the content // is clipped because of browser scrollbars, JAWS will read out everything // on the page, including the clipped content var minWidth = 900; var minHeight = 600; // get the current dimensions of the page var windowWidth = getWindowWidth(); var windowHeight = getWindowHeight(); // make sure the flash app meets our minimum dimension requirements elemEMExpressLogin.width = (windowWidth <� minWidth) ? minWidth : windowWidth; elemEMExpressLogin.height = (windowHeight <� minHeight) ? minHeight : windowHeight; } } /* * This function is called when the body finishes loading. * */ function loadCompleted() { // size the flash app sizeFlashApp(); // make sure the flash

Regards,

Joe

Comments
Post Details
Added on Jul 3 2019
4 comments
276 views