I run a Java application on a Linux server using Tibco RV and I get the following error:
TibrvException[error=901,message=Library not found: tibrvj]
What causes this problem?
I have already added the lib path containing *.so, in LD_LIBRARY_PATH, but still the same result.
UPDATE:
I am currently added <MyApp>/libs/tibrvj.jarto classpath. Tibrvj.jar was copied from a Windows environment to a Linux box where I run my application. I removed this from the classpath and added another link <TibcoDirectory>/libs/tibrvj.jarand it fixed the problem. They have different sizes with the previous file, and there is probably a difference between the one being copied from Windows and the one currently located on Linux. Can someone explain why this is so?
source
share