Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

FRM-92101: failure in the Forms Server during startup.

545334Nov 11 2006 — edited Nov 15 2006
Hi

I am calling a Oracle report from a Oracle forms application. When I enter the parameters on the Parameter Form (Oracle Forms Application created for

entering the User Parameters) and click 'Run Report' button, I am getting the following error:

Kindly help me on this. Thanks in advance.

The complete error discription is given here...

FRM-92101: There was a failure in the Forms Server during startup. This could happen due to invalid configuration.

Details...
Java Exception:
oracle.forms.net.ConnectionException: Forms session <3> aborted: unable to communicate with runtime process.

- at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
- at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
- at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
- at oracle.forms.net.HTTPNStream.flush(Unknown Source)
- at java.io.DataOutputStream.flush(Unknown Source)
- at oracle.forms.net.StreamMessageWritter.run(Unknown Source)



Environment in which my Forms and Report Applications is running:

Operating System - Windows XP Professional
Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production With the Partitioning option
JServer Release 9.2.0.1.0 - Production
Forms [32 Bit] Version 10.1.2.0.2 (Production)
Report Builder 10.1.2.0.2
ORACLE Server Release 10.1.0.4.2


Please find the steps I followed before I run this application:

1. I started the OC4J Forms Server on my machine
2. I started the OracleAS Reports Services (Reports Server) on my machine.
3. Connected to the database and run the Forms Application.


I have tried the following options to solve this error:

- I have re-installed Oracle Enterprise Edition Release 9.2.0.1.0 again and retry calling my Reports application from Oracle Forms. Still the same error

persists.


I have written the following code inside 'WHEN-BUTTON-PRESSED' Trigger to call my Oracle Report:

I found that the above error is coming at the following highlighted line below:

declare
...
...
BEGIN
--prepare the list of parameters to be sent to the report
... ...

--Add parameter(s) to list just created
... ...

--START THE REPORT
v_repid := FIND_REPORT_OBJECT('REPORT197');
vc_rep := RUN_REPORT_OBJECT(v_repid, Plist);

--GET REPORT STATUS
vc_rep_status := REPORT_OBJECT_STATUS(vc_rep);

-- Wait until report finishes or produces an error
... ...

-- Display the report if it is finished
... ...
END;
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 13 2006
Added on Nov 11 2006
2 comments
1,694 views