当前位置:开发者网络 >> 技术教程 >> 数据库专栏 >> SQL Server >> 内容
精彩推荐
分类最新教程
分类热点教程
  
(iAS 10g)How to use static HTML page rather than through form servlet
作者:未知
日期:2005-04-29
人气:
投稿:(转贴)
来源:未知
字体:
收藏:加入浏览器收藏
以下正文:

1. create a env file in <oracle_home>\reports erver\, 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 erver\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">

 

 
相关文章: