Calling External Procedure from Java Web based Application
create procedure libxxx/proc_name
LANGUAGE CL
FENCED
EXTERNAL NAME 'libxxx/clprogram'
PARAMETER STYLE GENERAL
The external CL program has other calls to Cobol programs in the same library.The procedure is in a different library.The cobol calls does not have any IN/OUT parameters
I would like to know if the above procedure would make any calls to cobol programs inside the defined CL.I tested based on the above procedure and it seems the calls are not being made to any cobol programs inside CL.
Anyone please suggest a workaround for the above mentioned problem of why its not making any calls to cobol programs.



