Microfocus Visual Cobol for Eclipse, destination Tomcat 7.0 on RHEL 6.10.
I have tried the tutorial Visual Cobol as SOAP webservice (Book) and it works fine.
I try now to have one of our Cobol to work and it does it partially:
The program itself runs but into it I do a call to an external logging module which is in another directory.
This external module is deployed as .so file and works if I use it from a standard Cobol test program (executable) on the server.
I added the library path LD_LIBRARY_PATH at start of Tomcat and as JAVA_OPTS="-Djava.library.path=/data/mylibrary".
If I do a CALL "coblog" USING... ON EXCEPTION ...return the LD-LIBRAY_PATH, this one seems correct but nevertheless, I get a return code " <faultstring>173 Called program file not found in drive/directory [coblog]</faultstring>".
Can someone point me to where I should look for?
#webservices
#Linux
#VisualCOBOL