java call from Forms
I am trying to call java from Oracle Forms in E-business suit.
To make the sample as easy as possible I add button with trigger
DECLARE
jo ora_java.jobject;
BEGIN
JO:=STRING_.NEW;
END;
I have upload by java importer class /java/lang/string and wrap it into pl/sql unit STRING_
On my laptop in Developer Suit it works fine.
I have define classpath variable in default.env and archive1 variable in appsweb.cfg file
When form applet initialized I see my jar in the list of uploading classes.
But when I call the trigger I get FRM-105100
DECLARE
jo ora_java.jobject;
BEGIN
JO:=STRING_.NEW;
END;
I have upload by java importer class /java/lang/string and wrap it into pl/sql unit STRING_
On my laptop in Developer Suit it works fine.
I have define classpath variable in default.env and archive1 variable in appsweb.cfg file
When form applet initialized I see my jar in the list of uploading classes.
But when I call the trigger I get FRM-105100
0