Link to home
Start Free TrialLog in
Avatar of Ehab Salem
Ehab SalemFlag for Egypt

asked on

Oracle Forms 6i integration error

We have an application created using Oracle Developper 6i that is running well on Windows XP.
We are currently testing it on Windows 7 and we are getting the following error when a form calls a report:
FRM-41211: Integration error: SSL failure running another product.

We use SYNCHRONOUS in all of our reports.

Is that related to Win7? is it something else? Please advice.
Avatar of schwertner
schwertner
Flag of Antarctica image

hello,

1. Investigate for antivirus programs like Symantec or other. If it presents, then turn it off and even deinstall.

2. Check also for firewalls running. Turn them off and check.
Avatar of Ehab Salem

ASKER

- The Windows XP boxes have SEP and we do not have this problem.
- I disabled SEP and stopped all services, and the problem is not solved.
The "Report Server" property of the "Reports" object should be set. This could be either set in "Report Server" property of the "Reports" object during design time (in Forms Builder), or could be programaticaly set using SET_REPORT_OBJECT_PROPERTY built-in similar to following :

set_report_object_property(l_repid, REPORT_SERVER, 'name_of_reports_server');

where l_repid stands for the id of Reports Object

1. Increase the amount of virtual memory available to the system.  From Oracle Support Archives.
A general recommendation is 8MB of memory for one runtime component and 3MB for each additional runtime component
 you want to run concurrently.  Around 16MB of memory are recommended for one Designer Component and an additional
 4MB for each Designer component you want to run concurrently.
2. Use the Oracle Installer to verify the versions of the products installed and upgrade them as appropriate.
When attempting to issue a RUN_PRODUCT command from forms to an incompatible version of reports -- an integration
 error will occur.
3. Update the FORMS60_PATH and REPORTS60_PATH variable to point to the appropriate Integra Apps client directory on
 the local workstation.
We are not using Reports server.
- go to the file properties and set it to run in Compatibility Mode - Windows XP, then run it again. does the same error produced?
ASKER CERTIFIED SOLUTION
Avatar of Ehab Salem
Ehab Salem
Flag of Egypt image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you.