Link to home
Start Free TrialLog in
Avatar of claghorn
claghorn

asked on

Adding library webutil to Oracle Forms 6i

I want to attach the webutil library to my 6i forms. Not going to use it really but just want to have it attached for migration to 10g reasons later. Need to compile the library using Forms 6i first. Can't compile the library. Getting the following error on the following code sample.
FUNCTION getSeparator RETURN VARCHAR2 IS
  BEGIN
    args := NULL;
    RETURN JNI.CALL_STRING_METHOD(TRUE, NULL, 'oracle/forms/webutil/fileTransfer/AppServerFileReader', 'getSeparator', '()Ljava/lang/String;', args);
  END;

wrong number or types of arguments in call to CALL_STRING_METHOD
 
Avatar of claghorn
claghorn

ASKER

Forgot to mention it compiles in my 10g Forms Developer successfully.
ASKER CERTIFIED SOLUTION
Avatar of schwertner
schwertner
Flag of Antarctica 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
Thanks