New Version Broken?

My game is running pretty well with an old jinput release, but when I switch it to the lastest one it breaks…

Heres the stack trace:


Scanning jar: dxinput.jar
Examining file : META-INF/
Examining file : META-INF/MANIFEST.MF
Examining file : net/
Examining file : net/java/
Examining file : net/java/games/
Examining file : net/java/games/input/
Examining file : net/java/games/input/DirectInputAxis.class
Examining file : net/java/games/input/DirectInputDevice.class
Examining file : net/java/games/input/DirectInputEnvironmentPlugin.class
Found candidate class: net/java/games/input/DirectInputEnvironmentPlugin.class
java.lang.NoClassDefFoundError: Illegal name: net/java/games/input/DirectInputEnvironmentPlugin
        at java.lang.ClassLoader.defineClass(ClassLoader.java:538)
        at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
        at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
        at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
        at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
        at net.java.games.util.plugins.Plugins.processJar(Plugins.java:112)
        at net.java.games.util.plugins.Plugins.scanPlugins(Plugins.java:85)
        at net.java.games.util.plugins.Plugins.scanPlugins(Plugins.java:87)
        at net.java.games.util.plugins.Plugins.<init>(Plugins.java:73)
        at net.java.games.input.DefaultControllerEnvironment.scanControllersAt(DefaultControllerEnvironment.java:174)
        at net.java.games.input.DefaultControllerEnvironment.scanControllers(DefaultControllerEnvironment.java:164)
        at net.java.games.input.DefaultControllerEnvironment.access$000(DefaultControllerEnvironment.java:57)
        at net.java.games.input.DefaultControllerEnvironment$1.run(DefaultControllerEnvironment.java:108)
        at java.security.AccessController.doPrivileged(Native Method)
        at net.java.games.input.DefaultControllerEnvironment.getControllers(DefaultControllerEnvironment.java:106)
        at artofwar.input.GameInput.<init>(Unknown Source)
        at artofwar.input.GameInput.getGameInput(Unknown Source)
        at artofwar.input.AbstractInputHandler.<init>(Unknown Source)
        at artofwar.input.MainMenuInput.<init>(Unknown Source)
        at artofwar.ArtOfWar.<init>(Unknown Source)
        at artofwar.ArtOfWar.main(Unknown Source)
Exception in thread "main"

What am I missing here?


Illegal name: net/java/games/input/DirectInputEnvironmentPlugin 

This looks more like a bug of the JDK… What version are you running?

j2sdk1.4.2_05

Hmm
Whats in CVS works fine on my test box, using 1.4.2_05 on that too. ???

Endolf

I’m using the lastest binaries (I can’t compile from src ATM - no HD free space for the DirectX SDK… :’( )

Statement. You are using JDK1.5.x

Run java -version. if it says your running 1.4 then I pormise you your scripts are running some other version of java and not the default one on your system.

Class Loaders in 1.5 made an incompatable change in how they handle the class name. I am told it was to close a security loophole. 1.4 and before allow foo/bar , 1.5 insists it be foo.bar.

I believe I already made this chnage and posted it back to Jutils. Auto-builds have bene broken for some time. Grab the latest version form CVS and ant it and you should be fine.

JK

I’ll try to test from the cvs tonight.

Anyway, I’m not using Java 5, I never installed it and won’t do so in the next few months.

[quote]I’ll try to test from the cvs tonight.

Anyway, I’m not using Java 5, I never installed it and won’t do so in the next few months.
[/quote]
You ARE aware that since 1.4 the Vm has had an auto-updater?

JK