(iAS 10g)How to use static HTML page rather than through form servlet

[入库:2005年8月18日] [更新:2007年3月25日]

本文简介:选择自 orapeasant 的 blog

1. create a env file in <oracle_home>\reports\server\, suppose it's test.env
    append the directory where the fmx is in to the parameter forms90_path=
    and do other necessary modifications.

2. modify web.xml in <oracle_home>\j2ee\oc4j_bi_forms\applications\forms90app\forms90web\web-inf
add the envfile parameter into the servlet's definition
   <servlet>
      <servlet-name>l90servlet</servlet-name>
      <servlet-class>oracle.forms.servlet.listenerservlet</servlet-class>
      <init-param>
         <param-name>envfile</param-name>
         <param-value>c:\oracle\ias\forms90\server\geo.env</param-value>
      </init-param>
   </servlet> 

3. modify the initial html file generated by form servlet
change
<param name="serverurl" value="/forms90/l90servlet?ifcfs=/forms90/f90servlet">
to
<param name="serverurl" value="/forms90/l90servlet">

 

 

本文关键:(iAS 10g)How to use static HTML page rather than through form servlet
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top