Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can i config Java Initiator

Status
Not open for further replies.

amir4oracle

Programmer
Nov 3, 2004
46
CA
How can I configure Java Initiator for forms developed in Developer 6i

Do I need to embed the fmx file/location in HTML using any HTML tags and how is it done.

I mean how can we associate an fmx file on network with the web browser on client

If there is a webiste regarding the question plz let me know.

Thanks
 
This would be placed on Web Server. Most installations I have seen have fmx's web server but you can have them elsewhere on network. Have a look at the PARAM NAME="serverArgs". This is the address of fmx.
serverHost is the name of web server. Hope this helps

<HEAD><TITLE>Oracle Forms Server</TITLE></HEAD>
<BODY >

<!-- Forms applet definition (start) -->
<OBJECT id=lcForm classid="clsid:5e2a3510-4371-11d6-b64c-00c04faedb18"
codebase="/jinitiator/jinit.exe#Version=1,1,8,19 -s -sm"
WIDTH="990"
HEIGHT="740"
HSPACE="0"
VSPACE="0">
<PARAM NAME="TYPE" VALUE="application/x-jinit-applet;version=1.1.8.19">
<PARAM NAME="CODEBASE" VALUE="/forms60java/">
<PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >
<PARAM NAME="ARCHIVE" VALUE="f60all_jinit.jar" >
<PARAM NAME="serverPort" VALUE="9000">
<PARAM NAME="serverHost" VALUE="SERVER_NAME">
<PARAM NAME="serverURL" VALUE="">
<PARAM NAME="connectMode" VALUE="Socket">
<PARAM NAME="serverArgs"
VALUE="module=LOGON.fmx userid=logon/logon@DB_NAME ">
<PARAM NAME="separateFrame" VALUE="True">
<PARAM NAME="splashScreen" VALUE="no">
<PARAM NAME="background" VALUE="">
<PARAM NAME="lookAndFeel" VALUE="generic">
<PARAM NAME="colorScheme" VALUE="teal">
<PARAM NAME="serverApp" VALUE="">
<COMMENT>
<EMBED SRC="" PLUGINSPAGE="/jinitiator/us/jinit_download.htm"
TYPE="application/x-jinit-applet;version=1.1.8.19"
java_codebase="/forms60java/"
java_code="oracle.forms.engine.Main"
java_archive="f60all_jinit.jar,GetClientInfo.jar.sig,HyperLink.jar,UploadClient.jar.sig"
WIDTH="990"
HEIGHT="740"
HSPACE="0"
VSPACE="0"
serverPort="9000"
serverHost="SERVER_NAME"
serverURL=""
connectMode="Socket"
serverArgs="module=logon.fmx userid=logon/logon@DB_NAME "
separateFrame="True"
splashScreen="no"
background=""
lookAndFeel="generic"
colorScheme="teal"
serverApp=""
>
<NOEMBED>
</COMMENT>
</NOEMBED></EMBED>
</OBJECT>
<!-- Forms applet definition (end) -->

</BODY>
</HTML>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top