Error en Forms server 6i in Linux

Hello!,
I am trying to execute forms in Linux, which were created in Windows, have created myself a file for this (I put but below), but when I execute it he/she always gives me the same error,FRM-91500: Unable to start/complete the build. Somewhere around in some message I have read that it could be because it was low the Form60_Server this running.
I attach but below the compilation script
Please I need a help!!
Thank you!!
Anibal Duardo
Here de scrit
#!/bin/bash
export DISPLAY=galadriel.libertad:0.0
# Variables para entorno de Forms
export ORACLE_HOME=/home/oracle8i/formrep
export ORACLE_SID=inmob
export MODULOS_FMB=$ORACLE_HOME/tools/web60/html
export LD_LIBRARY_PATH=$ORACLE_HOME/lib
#:${LIBRARY_PATH}
export TK60_ICON=$ORACLE_HOME/tools/devdem60/bin/icon
export UI_ICON=$TK60_ICON
export DEMO60=$ORACLE_HOME/tools/devdem60
# Variables para Form Runtime
export FORMS60_PATH=$ORACLE_HOME/tools/devdem60/demo/forms
export FORMS60_TERMINAL=$ORACLE_HOME/forms60/admin/terminal/US
# Variables para Reports
export REPORTS60_PATH=$ORACLE_HOME/tools/devdem60/demo/reports
export REPORTS60_TERMINAL=$ORACLE_HOME/reports60/admin/terminal/US
export REPORTS60_TMP=/tmp;
# Variables para el Forms server
export OWSPORT=9191
export FORMS60_UNKNOW=$ORACLE_HOME/guicommon6/tk60/admin/tk2Motif.rgb
export FORMS60_OUTPUT=/tmp
export FORMS60_MAPPING=http://192.168.3.3:$OWSPORT/web_temp
export FORMS_REPFORMAT=html
# Variables para Graphics
export GRAPHICS_WEB_DIR=$ORACLE_HOME/tools/devdem60/demo/graphics
export OWS_IMGS_DIR=$ORACLE_HOME/tools/devdemo60/web
# Project Builder
export ORACLE_AUTOREG=$ORACLE_HOME/guicommon6/tk60/admin
# User specific environment and startup programs
export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin
f60genm module=$MODULOS_FMB/modulo.fmb userid=scott/tiger@pppp > result.log

Somewhere around in some message I have read that it could be because
it was low the Form60_Server this running.You can replace the FMX if it is being used. Did you try it with the server shutdown and all runtime processes stopped?
Regards,
Robin Zimmermann
Forms Product Management

Similar Messages

  • WSDL data connection error after Form Server xdp render

    Hi
    I have a wsdl data connection inside an xdp after I render the xdp as pdf and reader extend the form when I click on the button to execute the web service method a pop up box appears saying the data connection has no properties. I am using LiveCycle Forms and Reader Extensions 8.1.
    Thanks

    Hi Paul
    Thanks for the reply.
    Reader extensions wasn't the problem, it was how I was manipulating the xdp before rendering.
    Thanks

  • Forms Server Install on Redhat Linux 7.0

    I am attempting to install Forms6i/Reports6i/Graphics6i on my Linux Box.
    I already have a 8.1.6 Database configured and running.
    After downloading the tar file and extracting it I am having trouble with the installation of the software. The Guide refers to running the orainstal shell script in the orinstall directory. Well when I execute the script I get a Character Installer and I was expecting the Java based Gui Installer such as the one with Oracle 8i DB. I cannot get the oraviewer program to work either for I wanted to see if there were some other setting I am not executing correctly.
    When I continue with the Char Installer it has trouble finding a lib called X11m.a or something (Motif related).
    Does Forms 6i require Motif? If so where and how do I get it for my Linux box? Are there any work arounds for this.
    Any help is greatly apprecicated.
    Thanks

    Hello Shawn,
    Yes, you need motif libraries. You can obtain it for free from: http://www.metrolink.com/products/Motif/download.html
    I installed both runtime and development packages.
    Aditionally you may ned to have X-devel packages installed.
    After struggling with Forms installation on my linux machine I managed to do this, but let me tell you that it's not so simple. First of all please excuse my bad English, I'm not a native speaker. Anyway that's how I did it.
    I assume that you downloaded the file d2k6irelease2.tar from technet. This file includes Forms 6i rel. 2 Server and Developer.
    I managed to install this on my RedHat 7.1 machine having already installed Oracle 8.1.7 database Server.
    First of I created a separate user which owns Forms Server software. I set this user as belonging to the same group ("dba" in my case) as the oracle database software owner. (On my machine I have "oracle" user which owns databse server belonging to the "dba" group and "forms" user belonging also to the "dba" group). You must set your environment like this (in ".bash-profile" in my case):
    -- Begin .bash_profile file
    # .bash_profile
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
    . ~/.bashrc
    fi
    # User specific environment and startup programs
    unset LANG
    PATH=$PATH:$HOME/bin
    BASH_ENV=$HOME/.bashrc
    ORACLE_BASE=/oracle
    ORACLE_HOME=$ORACLE_BASE/product/forms
    ORACLE_SID=forms
    ORACLE_AUTOREG=$ORACLE_HOME/guicommon/tk60/admin
    TNS_ADMIN=$ORACLE_HOME/network/admin/tnsnames.ora
    ORACLE_TERM=vt220
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
    TWO_TASK=oratest
    MMTK_AVIPLAYER="xanim %s &"
    PATH=$PATH:$ORACLE_HOME/bin
    DISPLAY=TEST_MACHINE:0.0
    export ORACLE_BASE ORACLE_HOME LD_LIBRARY_PATH TWO_TASK MMTK_AVIPLAYER
    export TNS_ADMIN DISPLAY ORACLE_AUTOREG ORACLE_TERM ORACLE_SID
    export BASH_ENV PATH
    unset USERNAME
    -- End .bash_profile file
    As you can see I set up ORACLE_BASE to the same ORACLE_BASE as database software ORACLE_BASE, a new ORACLE_HOME, a dummy ORACLE_SID, TWO_TASK to the sid of your 8.1.6 server instance, TNS_ADMIN pointing to a directory which I created manually before starting the installer (see below my "tnsnames.ora" file under this manually created directory), ORACLE_AUTOREG, ORACLE_TERM, DISPLAY set to your_hostname:0.0, LD_LIBRARY_PATH as seen, MMTK_AVIPLAYER is for playing ".avi' files (I didn't tried this). You may need to "chmod 775" on your $ORACLE_HOME directory from the database user account.
    -- Begin "tnsnames.ora" file
    ORATEST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = TEST_MACHINE)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = oratest)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    -- End "tnsnames.ora" file
    I untared d2k6irelease2.tar under a subdirectory created under "forms" home directory. In "unixdoc/Server" directory you will find linux_svr.pdf instructions for installation of Forms server and under "unixdoc/Developer" you will find linux_dev.pdf instructions for Developer Server. "oraview" didn't worked for me either. GUI installer didn't worked for me either. Chnaging to orainst you may issue ./orainst command and start the installation in character mode (I did not even started an X session). I choosed default install, do not create database objects (I think you will be able to install later this objects by running some sql scripts, I didn't). And I choosed all components presented and all options and default port parameters. You will also be prompted to confirm locations of the motif libraries. I choosed http mode for forms server. Do not install Reports security feature (I've heard that it's not working, this option will be presented to you somewhere at the end of installation). After finishing you may need to edit "forms60_server" file and some other files. For example I had to change my "host_name.domain_name" (in my case was "TEST_MACHINE.(none)") to my IP address as I don't have a DNS server here.
    That's what I did to test forms server:
    I wanted to test my Forms server by running Apache web server (the one that is installed by default by linux). (in the documetation you will find references to the WebDB listener which as far as I know is no longer installed in release 2, so the documentation is obsolete regarding this module). For this you will have to edit /etc/httpd/conf/httpd.conf file. Look for the section "Alias" and "AliasScript". under your forms $ORACLE_HOME/orainst you will find two files "forms6iconfig.txt" and "reports6iconfig.txt". You will find there actions to be performed by you manually. in "forms6iconfig.txt" file you will find virtual mappings for physical directories. You have to put this entries in "httpd.conf" file. You must edit this file as "root". For example 'Alias /dev60temp/ "/oracle/product/forms/tools/web60/temp/"'. The exception I made was for "/dev60cgi" virtaul mapping which I've put under ScriptAlias section 'ScriptAlias /dev60cgi/ "/oracle/product/forms/tools/web60/cgi/"'.
    After succesfully editing the file you will ned to restart http server:
    #/etc/rc.d/init.d/httpd restart
    Login again as "forms" user.
    In $ORACLE_HOME directory isuue:
    $./forms60_server start
    This will start your forms server listener.
    After that you can test your forms server running from an external machine by entering: http://ip_addres_of_linux_machine/dev60html/runform.htm
    and after completing parameters you will see "text.fmx" form applet saying that Forms server is installed corectlly or directly: http://ip_addres_of_linux_machine/dev60cgi/f60cgi
    You have to install Jinitiator to view the applet. It will be prompted for you to download it when accessing the above address.
    To be honest I was disapointed to see that forms server is very slow. And I mean very slow.
    In the end please let me excuse if I wasn't clear in some points. If you have any questions please post them on the list. I'm not an expert and I may have made mistakes, but in the same time I hope this will help you setting up forms server on your linux box.
    I forgot to mention that you will probably see a message saying that "formsweb.cfg was not found" when accesing "http://..../f60cgi". If you see this you have to options: either make a symlink "forms60" in the root directory to $ORACLE_HOME/forms60 directory or add a line in your "httpd.conf" file (I put this lines the last ones):
    #Include 6iserver configuration file for setting formsweb.cfg path
    include "/developer_home/conf/6iserver.conf"
    And in $ORACLE_HOME create a directory named "conf". In this directory create a file named "6iserver.conf" and put the following line in it:
    SetEnv FORMS60_WEB_CONFIG_FILE /developer_home/forms60/server/formsweb.cfg
    This will set your environment correctly and you will be able to see the test form. Don't forget to restart apache web server and forms listener.
    Kindly,
    Codrut Octavian Popescu

  • I get an error FRM-92101:There was a failure in the Forms Server

    I get an error FRM-92101:There was a failure in the Forms Server during startup. This could happen due to invalid configuration. Please look into the web-server log file for details, when i open the form
    it's a fresh installation for the oracle application 12.1.1 vis on linux redhat 5

    Hi;
    Please check below note:
    FRM-92101: There Was a Failure in the Forms Server During Startup After Fresh R12 Installation [ID 429627.1]
    R12 fresh install FORMS DO NOT LAUNCH - FRM-92101/500 [ID 427714.1]
    FRM-92101: Forms Server oracle.forms.net.ConnectionException: Forms session <1> failed during startup: no response from runtime process [ID 880088.1]
    Also check:
    Re: R12 database and JRE Issue
    Regard
    Helios

  • R12.1.1 Error: FRM-92101: There was a failure in the Forms Server startup

    R12 version: 12.1.1
    Operating system: Oracle Linux
    I am getting this error, when I access the forms from any client M/C
    FRM-92101: There was a failure in the Forms Server during startup. This couls happen due to invalid configuration.
    Even I did: make -f ins_forms.mk install
    I restarted all the services. I found Form server also runnig.
    Processes in Instance: VIS_myerp.myerp.mydomain.com
    --------------------------------------------------------------+---------
    ias-component | process-type | pid | status
    --------------------------------------------------------------+---------
    OC4JGroup:default_group | OC4J:oafm | 23828 | Alive
    OC4JGroup:default_group | OC4J:forms | 26471 | Alive
    OC4JGroup:default_group | OC4J:oacore | 23663 | Alive
    HTTP_Server | HTTP_Server | 23606 | Alive
    adformsctl.sh: exiting with status 0
    I tested the Solutiuons beacon. It is working fine. SO there are no problems with java viewer.
    http://vis1211.solutionbeacon.net/forms/frmservletet?form=test.fmx
    Edited by: sk123 on Feb 17, 2010 8:48 AM
    Edited by: sk123 on Feb 17, 2010 10:15 AM

    Hi,
    I am getting this error, when I access the forms from any client M/CWas this working before? If yes, what changes have been done recently?
    FRM-92101: There was a failure in the Forms Server during startup. This couls happen due to invalid configuration. Please post the complete error message from the application.log file.
    Even I did: make -f ins_forms.mk install
    I restarted all the services. I found Form server also runnig.Did AutoConfig complete successfully?
    Regards,
    Hussein

  • Forms Server Control Scipt error

    Hi All,
    I have R12 installed in my machine which is a Oracle enterprise Linux. The usual way I start the Oracle Application is First start the Database and then the Application.
    I run adstrtal.sh script for starting the application. This is the usual way I start Oracle Apps. But now I encounter a problem. After running the scripts my application is not starting. When I type in the address the page usually redirects to the login page. But i get this error now.
    The requested URL /OA_HTML/AppsLogin was not found on this server.
    I checked the log file of adstrtal.sh.There is a problem with Forms server Control Script (adfrmctl.sh)
    It exists with status 204. The log file details are below.
    07/02/08-11:36:27 :: adformsctl.sh: Starting OPMN managed FORMS OC4J instance
    opmnctl: starting opmn managed processes...
    ================================================================================
    opmn id=mecca.gaeaglobal.com:6200
    0 of 1 processes started.
    ias-instance id=gaea_mecca.mecca.gaeaglobal.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    OC4J/forms/default_group/
    Error
    --> Process (index=1,uid=1660036927,pid=6013)
    failed to start a managed process after the maximum retry limit
    Log:
    /r12/oracle/gaea/inst/apps/gaea_mecca/logs/ora/10.1.3/opmn/OC4J~forms~default_group~1
    07/02/08-11:36:57 :: adformsctl.sh: exiting with status 204
    This is the same for adoafmctl.sh and adoacorectl.sh.
    Pls do help me.
    Regards
    Niranjan.G

    Try the solution outlined in the following note:
    Note: 412980.1 - oafm,forms and oacore not starting up after IP address change
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=412980.1
    If the above does not help, please run AutoConfig and check whether it completes successfully or not. If it shows any errors, please post it here.
    Note: 387859.1 - Using AutoConfig to Manage System Configurations in Oracle Applications Release 12
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=387859.1

  • Forms server crashes on right mouse click when loaded on Suse Linux 11

    Hi,
    I have loaded SuSE Linux 11 Enterprise Desktop SP1 on a PC.(1 GB RAM
    I have installed Oracle developer Suite 10.1.2.3 here, when I open the Forms server application here and right click then the Forms server crashes.
    There were a number of bottle necks before I could get to position to actual get the Oracle developer Suite installed in the first place and when that was done, now the Forms Development Server crashes.
    Having said that, the Forms runtime works well here but there are numerous instances where this runtime crashes unexpectedly with a FRM - 92101 error.
    It would be great, to hear from anyone who has got this combination up and working ?
    I believe, I am missing some library or something else?
    Any help is much appreciated.
    Thanks,
    Pradeepa.

    Suse 11 is not supported for use with 10.1.2.x Developer Suite or Application Server
    (See "2.4.3 Linux Operating Environment")
    http://download.oracle.com/docs/cd/B25016_08/doc/dl/core/B16012_04/chap2.htm#i1007814
    http://www.oracle.com/technetwork/middleware/ias/downloads/as-certification-r2-101202-095871.html

  • Error in starting form server on Redhat 7.1

    Hi,
    i have installed oracle9iAS 1.0.2.0.0 on redhat 7.1 successfully
    with out any error but when I start forms server it gives error
    like: failed to exec runform f60webm [error:2]
    WHen I look in make.log file it shows errorr like
    gcc: /usr/xllR6/lib/libXm.so :no such file or directory
    make: *** [rwrun60] error 1
    this error are at various places in make.log file
    when I look for libXm.so in that directory it was not there.
    can I download this file from some where???
    pls give any solution for it as I'm unable to run my forms
    through web
    thanx in advance
    Akhil

    I think that this is an x-windows library that you are missing.
    You need to get and install the x-windows rpm and that will have
    the file. Have a look for the file name using google and I'm
    sure you'll find the name of the package.
    Steve

  • Error Running Forms: Failure of server APACHE bridge

    Hi Everyone,
    I have this problem on windows 7 64-bit... installation went fine without any errors.
    Forms was working fine, i was able to run test form, and a form that i created, and both were running properly..
    suddenly, while testing a new form module, it didn't work, and its showing :
    Failure of server APACHE bridge:
    No backend server available for connection: timed out after 10 seconds or idempotent set to OFF. I stopped and started the wls_forms and it didn't solve the problem..
    i couldn't get to a solution anywhere, is it a problem with weblogic configuration? but how was it working well at the begining... if weblogic services are not starting, then what's the fix for that?
    Help would be appreciated...
    Thanks..

    No, but as said you installed components (the HTTP Server) you wouldn't need for development. Did you start WLS_FORMS?
    In any case the latest version of forms would be 11.1.2 where the installation process for a development machine is much easier.
    You'd need
    - wls1035_generic.jar and a 64bit java runtime
    - the 64bit version of forms 11.1.2: http://download.oracle.com/otn/nt/middleware/11g/111200/ofm_frmrpts_win_11.1.2.0.0_64_disk1_1of1.zip
    of course you can install the 32bit version of forms too on your 64bit machine.
    then during installation just check "development mode", and you get a development installation like you got with iDS 10.1.2 with one weblogic instance instead of 3 and all the components you won't need (like webcache or the http server) won't be installed.
    cheers

  • Forms Server Error

    Hi
    When I am running a form i am getting the following error:
    FRM-92101 : There was a failure in th Forms Server during startup.This could happen to be invalid configuration.Please look into the web-server log file for details.
    I am using Oracle 10g Developer Suite on Windows XP SP2 platform and the browser is IE7.
    Can anybody help me in solving this problem.

    Did JInitiator installed successfully??
    Are you able to run the test Form?? try uninstalling the JInitiator and reopen the test form, this will cause JInit to be re-installed.
    If you are running under proxy, check the "Use Browser Settings" in the "Proxies" tab in the JInit control panel.
    Tony.

  • Form Based Authentication in SharePoint 2013: Getting The remote server returned an error: (500) Internal Server Error

    Hi
     I configured forms based authentication mode in Sharepoint 2013 site. When i tried to log in with windows authentication prompt it throws the following error
    The remote server returned an error: (500) Internal Server Error
    [WebException: The remote server returned an error: (500) Internal Server Error.] System.Net.HttpWebRequest.GetResponse() +8548300 System.ServiceModel.Channels.HttpChannelRequest.WaitForReply(TimeSpan timeout) +111 [ProtocolException:
    The content type text/html; charset=utf-8 of the response message does not match the content type of the binding (application/soap+msbin1). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly. The first
    1024 bytes of the response were: '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    How to fix this issue?
    Regards,
    Siva

    Did you create a new web application or modify an existing web application?
    I would start by checking the ULS logs, maybe there is an incorrect setting within one of the web.config files, or SQL permissions.
    Also, as suggested above, check application pools are running.
    This blog post is a great guide for setting up FBA, check it through to make sure you haven't missed any steps:
    http://blogs.technet.com/b/ptsblog/archive/2013/09/20/configuring-sharepoint-2013-forms-based-authentication-with-sqlmembershipprovider.aspx

  • How can i dispaly an Error Message from Server Side To form

    Hi All,
    How can i dispaly an Error Message from Server Side To form side .
    i try several ways nothing succed.
    i put the error in stack and after call the procedure from form i added
    Qms$Trans_Errors.Display_Messages;
    and because it is an error not informantional error the error screen displayed and enter
    in infinite loop acts like flashing .
    can any one help me please i use C/S Headstart6i and Designer 6i
    thanks alot
    radi

    hi,
    thanks alot lauri.
    yr code work only using information message but in error message its still the same .
    the error window still flash and enter in infinite loop of executeing the same triggers.
    thanks again
    radi

  • ERROR FRM-99999 USING FORMS SERVER

    I'm trying to deploy new applications on the Web using OAS and
    Developer Server. When I am trying to connect via the browser or
    via the appletviewer to a simple form in Developer Server I get
    this error in the Oracle Developer Forms Runtime - Web window:
    FRM-99999: A network error ocurred, the client will not be able
    to continue
    Details...
    Java Exception:
    java.net.SocketException: Connection reset by peer
    at java.net.SocketInputStream.read(Compiled Code)
    at oracle.forms.net.EncryptedInputStream.fill(Compiled Code)
    at
    oracle.forms.net.EncryptedInputStream.read(EncryptedInputStream.j
    ava)
    at java.io.DataInputStream.readUnsignedByte(Compiled Code)
    at oracle.forms.engine.Message.readDetails(Compiled Code)
    at oracle.forms.engine.Message.readDetails(Message.java)
    at oracle.forms.net.StreamMessageReader.run(Compiled Code)
    I've installed and configurated the next two differents
    environments:
    OPTION #1
    Windows NT 4.0 with Service Pack 3
    Oracle RDBMS 7.3.4
    Oracle Application Server 4.0.7.0.0
    Oracle Developer 6.0.5.0.2
    Netscape 4.5 and Explorer 5
    Jinititator 1.1.7.11 and Jinitiator 1.1.5.3
    JDK Applet Viewer 1.1.7.11
    OPTION #2
    Windows NT 4.0 with Service Pack 5
    Patch for OAS (OAS_40710_Patch_40bit)
    Oracle RDBMS 8.0.5
    Oracle Application Server 4.0.7.0.0
    Oracle Developer 6.0.5.0.2
    Netscape 4.5 and Explorer 5
    Jinititator 1.1.7.11 and Jinitiator 1.1.5.3
    JDK Applet Viewer 1.1.7.11
    I've tried sockets and http-sockets for the Forms Server
    Listener, but I always get that error and sometimes the Applet
    window doesn3t respond and nothing seems to happen.
    I would like to know if somebody has go this situation throw.
    Thank you very much in advance.
    null

    Hi,
    To use the Webutil, you must sign the WEBUTIL.JAR and JACOB.JAR.
    Using Jarsigner, you have to define the JDK Home and the Jinitiator home.
    I used whe jdk version 1.4.2 and the Jinitiator version 1.3.1.17
    Don't forget to apply this modification.
    Insert the line
    <virtual-directory virtual-path="/webutil" real-path="D:\Forms9i\forms90\webutil" />
    in the file
    $ORACLE_HOME$\j2ee\Oracle9iDS\application-deployments\forms\forms90web\orion-web.xml
    Insert the line
    AliasMatch ^/forms90/webutil/(..*) "D:\Forms9i\forms90\webutil/$1"
    in the file
    $ORACLE_HOME$/forms90/server/forms90.conf
    Of course You have to replace D:\forms9i with your Oracle Home.
    L.

  • 10g Forms - error starting http server

    When I am trying to start OC4J, it is giving an error,
    Error starting HTTP server: address already in use: JVM Bind
    When I run the form, the browser just keeps waiting for the server.
    What do I need to change ?
    Thanks.

    I just resolved this.
    I moved the line I added to httpd.conf to be the last line in the file, after all the other includes.
    include "/u01/app/oracle/product/10202com/Apache/modplsql/conf/marvel.conf"

  • Redirect to a custom error page when Forms Server shuts down

    Hi,
    I want the forms application to redirect to a custom error page whenever Forms Server goes down. (like network issues, unscheduled shutdown...) Whenever this happens, the user gets a pop up with FRM messages and user has to acknowledge the pop up. Since the application is used in the shop floor, there will not be any user always in front of the screen and will be a very big issue as there are at least 70-80 PC's on the floor which will be attended fewer times(only when there is issue with the machine) other wise the application displays important events of the machine,etc.,
    I am trying to develop a simple HTML error page(may be with applet) which will keep querying the forms server and once the forms server is up and running, the error page will revert back to the application which the user was working earlier to shutdown. Other option is the redirect to main menu of the application (this may be a PSP or a JSP or a Oracle Forms Menu ).
    Is there any event in forms to capture the loss of connection to forms server ??
    BTW, I am using Oracle Application Server 10g Forms and Reports on Windows 2000 Server...
    Any ideas...
    Thanks in advance
    Purush

    I don't think it will be easily possible in Forms for a couple of reasons.
    1. In Forms you do not have query rights, and as soon as you want to edit data, you have to log in. In Forms you log in once, and this sets your rights for the whole session. You will have to do some programming in Forms to achieve what you want. E.g. as soon as you hit the Save button you are asked for a username and password.
    2. A refresh cannot be done in Forms. Remember that Forms is a Java applet. The URL in the browser is just pointing to the startup page only. If you refresh your screen, you are taken back to the login screen of Forms again.
    Well, there will probably be ways around these problems. I'm thinking in the line of calling every form in a separate URL instead of starting a Forms application where one form is called from another form. The default 'query only' form can be called from a startup html page. This page can be refreshed. As soon as the user wants to update data, he clicks on a link or button and is taken to a login form.
    If the refresh is unsuccessful you are taken to a custom error page, like in your ASP application.
    A problem with an automatich refresh may be hanging sessions. Forms server does not always kill sessions.
    And also, how would you avoid a refresh if a user is currently using the form?

Maybe you are looking for

  • Possible?: Send OS X Error Report to custom email address?

    Hi, I was wondering is it possible to somehow tweak OS X so that instead of sending software error reports to Apple, it would send them to my email? I would use this as a part of our helpdesk ticketing system.

  • Old app recompiled with f77 failed but succeed with g77

    hello all, i need to recompile an old app written in fortran77, but it fails at the execution: Starting nonmem execution ... Note: IEEE floating-point exception flags raised:     Inexact;  Underflow;  Invalid Operation; See the Numerical Computation

  • How can I start windows 8 without useing my password

    how can I start windows 8 without useing my password

  • Static method and exception

    I have file which is reading from file and deleting it. delete is done by static method. now i need to do like this if file is empty it should throw exception and delte the file. so i added else like this else{ throw new empty("Empty"); but it is onl

  • Epson network-ready, all-in-one printer...

    I'm thinking of purchasing a printer, but there is so many out there! I hear Epson prints out the best, and that's what I used at school in the Media Arts department. Can I just purchase any all-in-one printer and would it be able to work wirelessly