Oracle Forms 10 / java

Is it possible for a Java application called by Oracle Forms to participate in the same database session as Forms?

+1


a source to share


3 answers


The only way I know is for a Java application to run as a form component eg. as a java bean inside a form container.



+1


a source


This is unfortunately not possible. The Forms process itself runs at runtime Forms on the server, which is a C program.

You can include a JavaBean as Jeffrey suggests, but the JavaBean will open its own JDBC connection — it will not use the Form's transaction context.



There may be other ways - try updating the question with some details on what you are trying to achieve and I will be happy to help you.

+1


a source


I assume this is limited, possibly due to security concerns.

0


a source







All Articles