LoadRunner在EBS R12上运行需更改服务器为Socket模式

R12安装后Form服务默认是Serverlet模式,且禁用Socket模式;只要按如下基本简单改动即可改成Socket模式,并允许Socket模式。

  1. Source the environment on the application tier.
  2. Stop all the application tier services:
     $INST_TOP/admin/scripts/adstpall.sh
  3. Run the following command to enable Forms Socket Mode: 
     $FND_TOP/bin/txkrun.pl -script=ChangeFormsMode \
        -contextfile=$INST_TOP/appl/admin/<CONTEXT_NAME>.xml \
        -mode=socket \
        -port=9095 \
        -runautoconfig=No 

  4. 修改$INST_TOP/appl/admin/<CONTEXT_NAME>.xml,将appserverid_authentication修改为off
   
  5. 执行autoConfig
     $INST_TOP/admin/scripts/adautocfg.sh
  6. Start all the application tier services: 
     $INST_TOP/admin/scripts/adstrtal.sh
  7  Socket 模式访问:
     http://<web_host>.<web_domain>:<web_port>/OA_HTML/frmservlet 

详情可参考:Metalink  Using Forms Socket Mode with Oracle E-Business Suite Release 12 [ID 384241.1]

 

posted @ 2012-12-05 10:44  杨志威  Views(1018)  Comments(0Edit  收藏  举报