We have installed Oracle9iAS and Oracle8.1.5 database running on different
servers and successful in running one web application.
I want to know the following:
1. Is it possible to have another web application on the same Application
server.
2. If yes then what are the files in which the configuration should be done.
3. If no then is there any workaround for this problem.
1. Yes
2. You have to add in your formsweb.cfg one entry for each application. For example we have two application running in the same Application Server and in the formsweb.cfg we have:
In my case is sota.env and sifer.env and modify the BASE_HTML files. If you look my earlier post you will see there are some files: sifer.env, sifer.htm,siferjini.htm,siferie.htm ... and the same for the other application.
I have included the following entry in my FormsWeb.cfg file:
[pandamyq]
workingDirectory=d:\pandamyq_web
envFile=pandamyq.env
form=login_web.fmx
;
[pandaphq]
workingDirectory=d:\pandaphq_web
envFile=pandaphq.env
form=login_web.fmx
The PandaMyQ.env file consists of the following:
# Environment settings for Oracle Forms 6i
# ----------------------------------------
# This file is used by the Listener Servlet when starting up
# Forms runtime processes.
# The settings in this file override any settings in the
# environment in which the servlet engine (OC4J or JServ) was started,
# any settings in the jserv.properties file (wrapper.env directives) if
# using JServ, and any Oracle variable settings in the Windows registry.
# If a variable is not set here, but is set in the registry, the registry
# value will be used.
#
PATH=D:\ORACLE\806\bin
ORACLE_HOME=D:\ORACLE\806
FORMS60_PATH=d:\pandamyq_web
The folder d:\pandamyq_web has been created in the QA server.
In the HTML file the href is given like: http://www.pandamyq.ford.com/servlet...onfig=pandamyq
but the browser does not display anything. It just displays a blank page and
diplays DONE at the status bar.
Am I missing something here.
Bookmarks