*** panic class java.lang.Shutdown not found

Hi,I tried to run a java program from with a c applictaion using the invocation api and i get this weird error *** panic class java.lang.Shutdown not found...java.lang.ShutDown?Can any one shed some light .ThanksDeepth
[274 byte] By [deepthd] at [2007-9-26 11:02:12]
# 1

Yep, just fixed this one in my code...

My problem was that I was using env->FindClass("com.blah.MyClass"), and it couldn't find the class. There

are two fixes for this problem:

1) Put env->ExceptionClear() after failed env->xxx() calls (I put the ExceptionClear() before I even check to

see if it failed).

2) Use '/' instead of '.' when using FindClass: for example, env->FindClass("com/blah/MyClass");

I hope this helps!

Bryan

bryanhilterbrand at 2007-7-1 23:52:26 > top of Java-index,Java HotSpot Virtual Machine,Specifications...