nikseras / js-test-driver

Automatically exported from code.google.com/p/js-test-driver
0 stars 0 forks source link

UnsatisfiedLinkError after upgrading to Java 6u26 #259

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. from command line, enter: "java -jar JsTestDriver-1.3.2.jar --port 4224"

What is the expected output? What do you see instead?
Expected JSTD server to start, instead an error is shown.

What version of the product are you using? On what operating system?
1.3.2 on Windows Server 2003 R2 SP2

Here is the full error and stack trace that is shown.

C:\JsTestDriver>java -jar JsTestDriver-1.3.2.jar --port 4224

Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\Program 
Files\Java\jre6\bin\nio.dll: The specified procedure could not be found
        at java.lang.ClassLoader$NativeLibrary.load(Native Method)
        at java.lang.ClassLoader.loadLibrary0(Unknown Source)
        at java.lang.ClassLoader.loadLibrary(Unknown Source)
        at java.lang.Runtime.loadLibrary0(Unknown Source)
        at java.lang.System.loadLibrary(Unknown Source)
        at sun.security.action.LoadLibraryAction.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at sun.nio.ch.Util.load(Unknown Source)
        at sun.nio.ch.FileChannelImpl.<clinit>(Unknown Source)
        at java.io.FileOutputStream.getChannel(Unknown Source)
        at java.util.logging.FileHandler.openFiles(Unknown Source)
        at java.util.logging.FileHandler.<init>(Unknown Source)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
        at java.lang.reflect.Constructor.newInstance(Unknown Source)
        at java.lang.Class.newInstance0(Unknown Source)
        at java.lang.Class.newInstance(Unknown Source)
        at java.util.logging.LogManager$3.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.util.logging.LogManager.loadLoggerHandlers(Unknown Source)
        at java.util.logging.LogManager.initializeGlobalHandlers(Unknown Source)
        at java.util.logging.LogManager.access$900(Unknown Source)
        at java.util.logging.LogManager$RootLogger.getHandlers(Unknown Source)
        at java.util.logging.Logger.log(Unknown Source)
        at org.slf4j.impl.JDK14LoggerAdapter.log(JDK14LoggerAdapter.java:587)
        at org.slf4j.impl.JDK14LoggerAdapter.warn(JDK14LoggerAdapter.java:385)
        at com.google.jstestdriver.JsTestDriverServerImpl.initServer(JsTestDriverServerImpl.java:71)
        at com.google.jstestdriver.JsTestDriverServerImpl.start(JsTestDriverServerImpl.java:90)
        at com.google.jstestdriver.ServerStartupAction.run(ServerStartupAction.java:96)
        at com.google.jstestdriver.ActionRunner.runActions(ActionRunner.java:64)
        at com.google.jstestdriver.JsTestDriver.main(JsTestDriver.java:86)

Original issue reported on code.google.com by jdpoe...@gmail.com on 1 Aug 2011 at 5:15