Re: [Sablevm-developer] Deserialization of arrays of objects.
Brought to you by:
egagnon
From: David <db...@cs...> - 2004-03-15 21:01:23
|
On Sun, Mar 14, 2004 at 04:40:29PM -0500, James Damour wrote: >=20 > The source code in the attached file, when compiled with Sun's JDK > v1.3.1 throws "java.lang.ClassNotFoundException: Tryit$Inne > at gnu.java.lang.SystemClassLoader.findClass > (SystemClassLoader.java:79)" when run under SableVM v1.1.0 (Debian > testing). >=20 Hi James, This bug as well as a few others concerning reflection on array class types have been fixed in SableVM/staging and will probably made their way into next SableVM release 1.1.1 that will be available some time this week. I can run your sample code and the output is below. Note that I get warning about some files. I don't know much about these missing files warnings. I guess SableVM would need to provide these some day. -------------------- Before serialization Value #0 : 0 Value #1 : 1 Value #2 : 2 Value #3 : 3 Value #4 : 4 Value #5 : 5 Value #6 : 6 Value #7 : 7 Value #8 : 8 Value #9 : 9 WARNING: could not properly read security provider files: file:///home/david/local/sablevm-jit/lib/security/SableVM.securi= ty file:///home/david/local/sablevm-jit/lib/security/classpath.secu= rity Falling back to standard GNU security provider After serialization Value #0 : 0 Value #1 : 1 Value #2 : 2 Value #3 : 3 Value #4 : 4 Value #5 : 5 Value #6 : 6 Value #7 : 7 Value #8 : 8 Value #9 : 9 -------------- David --- David B=E9langer Graduate Student School of Computer Science McGill University Office: MC226 Web page: http://www.cs.mcgill.ca/~dbelan2/ Public key: http://www.cs.mcgill.ca/~dbelan2/public_key.txt |