RE: .so files for AXIS

2003-02-17 Thread Keith Hatton
Sent: 17 February 2003 04:02 To: [EMAIL PROTECTED] Subject: Re: .so files for AXIS Try exporting the ENV variable before you call your program: export LD_LIBRARY_PATH=path_to_so set this in your shell, or in the script that starts the java program. hope it helps, joe Robert Morse

Re: .so files for AXIS

2003-02-16 Thread Joe
Try exporting the ENV variable before you call your program: export LD_LIBRARY_PATH=path_to_so set this in your shell, or in the script that starts the java program. hope it helps, joe Robert Morse wrote: Within my AXIS service, I need to call some legacy code that is in a .so file. I hav