When Session Timeout, clients receive Error FRM-93652: The runtime process has terminated abnormally [message #521660] |
Wed, 31 August 2011 19:20 |
|
mifcatini
Messages: 2 Registered: August 2011 Location: Argentina
|
Junior Member |
|
|
We are migrating Forms from 9i to 11g and we have problems with Session Timeout.
1) We have this products instal:
Oracle Database 11g Enterprise Edition Release 11.1.0.7.0
Forms 11 (Form Compiler) Version 11.1.1.4.0 (Production)
2) We compiled the forms using the parameter: compile_all=yes
(Refer note: FRM-93652 When Migrating Forms from 9i/10g to 11g [ID 1053135.1])
3) We set the Timeout Parameters:
(Refer note: Description List For Parameters Affect Timeout In Webforms [ID 549735.1])
FORMS_TIMEOUT=30
HeartBeat=60
Session-Timeout=20
4) After 30 minutes we receive this error:
FRM-93652: The runtime process has terminated abnormally
And we should receive one of them:
FRM-92101 There was a failure in the Forms Server during startup.
FRM-92102 A network error has occurred.
Any ideas that can help us?
Thank you.
|
|
|
|
Re: When Session Timeout, clients receive Error FRM-93652: The runtime process has terminated abnorm [message #524782 is a reply to message #523105] |
Mon, 26 September 2011 14:14 |
|
mifcatini
Messages: 2 Registered: August 2011 Location: Argentina
|
Junior Member |
|
|
Thanks for your answer.
Do you know how I should set up this parameters to forms timeout in 30 minutes?
I tried to this but it does not work.
Case1: HeartBeat value greater than Forms_Timeout value
Forms will timeout if the "HeartBeat" is set to a value higher than FORMS_TIMEOUT. In this case, when clients reaches the timeout value, they would get a FRM-92101.
For Example, if you set:
FORMS_TIMEOUT = 3
HeartBeat = 4
After 3 minutes of Forms inactivity, the forms process will be terminated on the server due to timeout. But first HeartBeat will be after 4 minutes. So after 4 minutes, clients will receive FRM-92101.
Case 2: HeartBeat value greater than Session-Timeout value
Forms also will timeout if the "HeartBeat" is set to a value higher than "Session-Timeout".
For example,
Session-Timeout = 1
Forms_Timout = 3
HeartBeat = 2
After 2 minutes, clients will receive FRM-92102. And no errors will be shown in the default-web-access.log or in the application.log.
|
|
|