You can find several solutions for this dummy situation. I never tried it but IE8 users solve this by setting their zoom ratio to %100 on their browser.
But i faced this problem on IE9 and the zoom trick didn't help me. I solved it by adding "about:blank" to the trusted sites on IE. Hope this helps you too.
Tweet
Showing posts with label internet explorer 9. Show all posts
Showing posts with label internet explorer 9. Show all posts
Thursday, February 21, 2013
Friday, June 15, 2012
BusinessObjects-XI 3.1 and Internet Explorer 9
Business Objects XI 3.1 does not support Internet Explorer 9. But there is a very simple workaround.
Go to the folder:
XXXX\Business Objects\Tomcat55\webapps\InfoViewAppActions
Create a page named httperror_400.htm and put the following code in it:
"
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<title>Missing Page</title>
</head>
<script type="text/javascript">
function fixUrl(strToReplace){
urlStr = window.document.location.toString();
return urlStr.replace(strToReplace,"");
}
// Comment out the following line with the double slash (//) to debug
window.location=fixUrl("/InfoViewAppActions");
</script>
<body>
<script type="text/javascript">
urlStr = window.document.location.toString();
urlStrNew = fixUrl("/InfoViewAppActions");
document.writeln("Before:<br/>");
document.writeln(urlStr);
document.writeln("<p>");
document.writeln("After:<br/>");
document.write("<a href='" + urlStrNew + "'>");
document.write(urlStrNew);
document.writeln("</a>");
</script>
</body>
</html>
"
Save and close your document. Now go to the folder:
XXXX\Business Objects\Tomcat55\webapps\InfoViewAppActions\WEB-INF\
Open the web.xml file. Search for where error-code 404 is catched and add the following code:
<error-page>
<error-code>400</error-code>
<location>/httperror_400.htm</location>
</error-page>
more information can be found at:
http://www.forumtopics.com/busobj/viewtopic.php?t=170250&postdays=0&postorder=asc&start=43
Tweet
Go to the folder:
XXXX\Business Objects\Tomcat55\webapps\InfoViewAppActions
Create a page named httperror_400.htm and put the following code in it:
"
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<title>Missing Page</title>
</head>
<script type="text/javascript">
function fixUrl(strToReplace){
urlStr = window.document.location.toString();
return urlStr.replace(strToReplace,"");
}
// Comment out the following line with the double slash (//) to debug
window.location=fixUrl("/InfoViewAppActions");
</script>
<body>
<script type="text/javascript">
urlStr = window.document.location.toString();
urlStrNew = fixUrl("/InfoViewAppActions");
document.writeln("Before:<br/>");
document.writeln(urlStr);
document.writeln("<p>");
document.writeln("After:<br/>");
document.write("<a href='" + urlStrNew + "'>");
document.write(urlStrNew);
document.writeln("</a>");
</script>
</body>
</html>
"
Save and close your document. Now go to the folder:
XXXX\Business Objects\Tomcat55\webapps\InfoViewAppActions\WEB-INF\
Open the web.xml file. Search for where error-code 404 is catched and add the following code:
<error-code>400</error-code>
<location>/httperror_400.htm</location>
</error-page>
more information can be found at:
http://www.forumtopics.com/busobj/viewtopic.php?t=170250&postdays=0&postorder=asc&start=43
Tweet
Subscribe to:
Comments (Atom)
