This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
We have a dll library that needs to be used from within a servlet. When I look at my systems properties, it says that the java.library.path is my JAVA_HOME/bin and WINNT/SYSTEM32 directories. I have placed my dll in these directories, and when i start tomcat and call my servlet i get the following error: java.lang.ExceptionInInitializerError: JCO.classInitialize(): Could not load middleware layer 'com.sap.mw.jco.rfc.MiddlewareRFC no jRFC12 in java.library.path I edited catalina.bat and added the following property on the startup of tomcat -Djava.library.path=d:/j2sdk1.4.0/bin to try and set it manually, but that did not help either. What can I do to get my servlet to be able to use that library? Thanks Brian