zoukankan      html  css  js  c++  java
  • BO Server Session Setting

    BO Server Session Setting
      1.C:\Program Files (x86)\Business Objects\Tomcat55\webapps\AnalyticalReporting\WEB-INF\web.xml
      2.C:\Program Files (x86)\Business Objects\Tomcat55\webapps\InfoViewApp\WEB-INF\web.xml
      3.C:\Program Files (x86)\Business Objects\Tomcat55\webapps\InfoViewAppActions\WEB-INF\web.xml
     
      <session-config>
              <session-timeout>20</session-timeout>   <!-- 20 minutes 改成希望的 timeout 时间。-->
          </session-config>

    Following changes are needed on the BO server to overcome the Webi timeout issue.


    1) Go to Central Management Console (CMC)
    2) Servers –> WebIntelligenceProcessingServer –> Properties
    3) Set “Idle Document Timeout” to 3600 sec

    2..Input File server
    Navigate to CMC->Servers->Input File Repository Server.
    Modify the Maximum Idle Time to “120″.

    3.. Tomcat
    (a)
    1) Go to \\Business Objects\tomcat55\webapps\PlatformServices\ WEB-INF
    2) Open web.xml
    3) Search “session-timeout” keyword in this file.
    4) Increase the timeout value to 60.
    5) Save web.xml
    (b)
    Navigate to BusinessObjects installation directory, ..\Program Files\Business Objects\Tomcat\conf\
    Take the backup of the server.xml file.
    Edit the server.xml file with a notepad Search for the line that says “Connector on port 8080” In this section modify connectionTimeout=”20000″ to connectionTimeout=”40000″.

    4. Java timeout:
    Launch control pane.
    In control panel double click on java.
    when the java control panel comes up, select the java tab
    Under java applet runtime settings click on the view button (should bring up the java runtime settings)
    Type -xms128m -xmx164m into the java runtime parameter
    click ok

    5. Swap Timeout:
    Navigate to Start->Run on the server.
    Type “regedit”.
    Navigate to the below path:
    HKEY_LOCAL_MACHINE\SOFTWARE\BusinessObjects\Suite12.0\default\WebIntelligence\Server\Admin\
    Select the key “SwapTimeOut”
    Then select decimal and set it to 3600000.

    6.In Registry set HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 12.0\CMS\Instances\cmsname.cms,
    set IdleSessionTimeout=14400000

    7. IE timeout: (this step is optional)
    On the client machine where you run the report.
    Click Start->Run.
    Type “regedit”and then click OK.
    Locate the path: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\InternetSettings .
    Add a ‘ReceiveTimeout’ DWORD value with a data value of ()*1000.
    For example, if you want the timeout duration to be two hours, set the ReceiveTimeout data value to 7200000 (*1000).

    8. Check the universe timeouts in File-> parameters->”Controls”.
    “Limit execution time” and “limit number of rows”.

    9. Check the option “Disconnect after each transaction” for the universe connectivity.

    NOTE:
    ———-
    Please take a backup of all the files before you edit them.

    Enjoy reading the other posts and reply with your valuable comments.

  • 相关阅读:
    投影变换 到 uv坐标 xy/w 齐次坐标
    GdiPlus[19]: IGPPathGradientBrush 之 SetCenterPoint
    GdiPlus[21]: IGPPathGradientBrush 之 InterpolationColors
    GdiPlus[24]: IGPPrivateFontCollection: 分别从文件和内存加载字体
    GdiPlus[23]: IGPFontFamily
    GdiPlus[25]: IGPInstalledFontCollection: 获取已安装的字体列表
    GdiPlus[20]: IGPPathGradientBrush 之 SetFocusScales
    GdiPlus[22]: IGPFont
    可爱的 CreateMessageDialog
    GdiPlus[18]: IGPPathGradientBrush 之 CenterColor、SurroundColors
  • 原文地址:https://www.cnblogs.com/kevinkim/p/2076203.html
Copyright © 2011-2022 走看看