Re: Invocation API and JNI in JDK1.2

1999-03-11 Thread Anand Palaniswamy
In 1.2 symbols are found in a libraries associated with your class's ClassLoader. Meaning: if Foo.bar was a native method then the symbol Java_Foo_bar is searched in the set of libraries loaded by Foo's ClassLoader. This was a bug fix that makes resilient field and method ID caching in the pres

Invocation API and JNI in JDK1.2

1999-03-11 Thread Costin Manolache
Hi, JDK1.2 works great on my RedHat, everything is great (except fonts). My question: I use the invocation API to start a JVM from a C application. With JDK1.1.7/native threads it works great, and worked with JDK1.2 without any problems. >From the started VM I call some native methods. The meth