Date: Tue, 11 Feb 1997 19:55:59 -0800
Message-Id: <199702120355.TAA24229@puffin.eng.sun.com>
From: Marianne Mueller <mrm@eng.sun.com>
To: dhboy@sb.net
Subject: Re: Is this possible with 1.1?
When your applet-with-DLL is not signed, are you accessing the DLL
just by having the applet and the DLL reside in a directory on your
classpath? (just curious)
Have you tried using System.loadLibrary to explicitly load the DLL?
This is a call that the unsigned applet wouldn't have been allowed to
make. The signed applet should be allowed to load the DLL. So yes,
you should be able to do what you're trying to do.
I haven't yet worked on an example for this particular case.
As for your stacktrace - I'm not clear on who's doing the loading.
Is your SerialPort class trying to load some classes, or is it
the java class that is calling the System.loadLibrary method?
Marianne