(iAS 10g)How to use static HTML page rather than through for
发表于:2007-07-02来源:作者:点击数:
标签:
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\a
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">
原文转自:http://www.ltesting.net