请大家指教:Oracle BIEE安装后图无法显示的问题(表可以正常显示)

0
Oracle BIEE安装后图无法显示,但表可以正常显示。
错误信息为:
——————————————————————————————————————————————————————————————————————————
生成图表时出错 
  处理请求时发生致命错误。 服务器响应为: Error while executing ChartRpcCall.processMessage java.lang.NullPointerException at com.siebel.analytics.web.javahostrpccalls.corda.ChartRpcCall.processMessageInternal(ChartRpcCall.java:117) at com.siebel.analytics.javahost.AbstractRpcCall.processMessage(AbstractRpcCall.java:94) at com.siebel.analytics.javahost.MessageProcessorImpl.processMessage(MessageProcessorImpl.java:175) at com.siebel.analytics.javahost.Listener$Job.run(Listener.java:223) at com.siebel.analytics.javahost.standalone.SAJobManagerImpl.threadMain(SAJobManagerImpl.java:205) at com.siebel.analytics.javahost.standalone.SAJobManagerImpl$1.run(SAJobManagerImpl.java:153) at java.lang.Thread.run(Thread.java:595) 。
  错误明细
错误代码: AGEGTYVF
——————————————————————————————————————————————————————————————————————————
之前我也遇到过过类似错误,换了firefox之后就可以了。这次换了firefox也不行。
JDK是1.5的,Flash player也装了新版本

请问,有人知道是什么原因吗?谢谢啦
已邀请:
2

joljess - +,BIEE平台管理员。 2015-09-25 回答

我在support上看到这个,这个是10G的,11G需要修改对应的文件(需要在instance1下进入Config文件夹下,进入分别对应的目录,instanceconfig.xml是在Presentation下,下面的config.xml(这个文件里的jvm参数调整11g可以先不要调整)是在JavaHost下。)
Please do the following:

1) Make a backup copy of the following files:

- <install_drive>\OracleBIData\web\config\instanceconfig.xml
- <install_drive>\OracleBI\web\javahost\config\config.xml

2) Add this setting to the <install_drive>\OracleBIData>\web\config\instanceconfig.xml file.
The -Xmx and -Xms settings tells Java to allocate at least 512 MB of RAM (-Xms), and no more than 1024 MB RAM (-Xmx):

Below the tag:
<JavaHome>C:\Program Files\Java\jdk1.6.0_12</JavaHome>
Add this tag:
<JavaHost><JVMOptions>-Xms512m -Xmx1024m </JVMOptions></JavaHost>

3) Change the settings in the Javahost configuration file: <install_drive>\OracleBI\web\javahost\config\config.xml. In that file you will see the following code:

<Charts>
<!-- Size limit for chart request message -->
<!-- <InputStreamLimitInKB> -->

Uncomment the tag and add a value like this:

<Charts>
<!-- Size limit for chart request message -->
<InputStreamLimitInKB>2048</InputStreamLimitInKB>


Note: Setting InputStreamLimitInKB governor value to zero (0), which is unlimited, should only be used for testing purposes only.

4) Restart both the Javahost process and the Presentation Server.

5) If the error still occurs slowly increase the "InputStreamLimitInKB" value as necessary up to 8192.

6) Restart both the Javahost process and the Presentation Server every time you change the "InputStreamLimitInKB" value.

要回复问题请先登录注册