I\'m getting this error when I try to run tomcat:
"java.lang.UnsatisfiedLinkError: C:\\Program Files (x86)\\apache-tomcat-7.0.34\\bin\\tcnative-1.dll: Ca
The problem I faced with some similar message is that I've created shared native library via swig on Linux machine (libmyLic.so) , copied it to Windows, and there was trying to run my java test. This test was supposed to use System.loadLibrary or System.load interface . It doesn't work, because swig created my shared native library (wrapping C++ code to java) for UNIX environment. when I copied all test to Linux it solves the problem.