Is there any way I can unload a (native) library loaded by System.loadLibrary? I have multiple dlls implementing the same APIs (but with different...
Shantanu Sen
ssen@...
Jun 4, 1999 8:25 pm
319
... Looking at the JDK source, it appears that the class that does the work of actually loading the library is the ClassLoader class. It doesn't appear to have...
Buzzy Brown
buzzy@...
Jun 4, 1999 9:29 pm
320
Hello, I am trying to call C code from java (JDK 1.1.6) and I'm encountering some problems. I've wrote a wrapper DLL that call another DLL. My wrapper DLL...
Yannick Le Duc
yld@...
Jun 8, 1999 4:52 pm
321
Does anyone know how to make the JNI invocation API (JNI_CreateJavaVM, etc.) work with the Netscape Communicator (4.6) Java VM? Is it even supported? There...
mattc@...
Jun 9, 1999 6:52 pm
322
Hello everybody ! Just a general question : Is it possible to override java datagrams packets via JNI , and , later on , pass it back again . And if so , how ...
Michael Ditze
midi@...
Jun 18, 1999 12:25 pm
323
Hi, I am developing a Win32 DLL (COM) that uses a Java VM through JNI. I am using JDK1.2.2 on Windows NT4.0 with Service Pack 4 installed. The C++ compiler is...
Joerg Meyer
jmeyer@...
Jun 22, 1999 5:44 pm
324
I would put calls to check for exceptions all over the place. It could be possible that there is an exceptino before you problem line that is actually causing...
Jim Adams
sasjaa@...
Jun 22, 1999 6:13 pm
325
HI Jim, I encapsulated the code in a try/catch block like this: try { // my code to create VM and start Java class ... } catch(...) { ATLTRACE(_T("Exception...
Joerg Meyer
jmeyer@...
Jun 22, 1999 6:42 pm
326
I meant putting env->ExceptionOccurred() calls in. the C++ try/catch stuff shouldn't work at all for this. Jim Adams Jim.Adams@... Principal Systems...
Jim Adams
sasjaa@...
Jun 22, 1999 7:40 pm
327
Jim Adams Jim.Adams@... Principal Systems Developer SAS Institute ... From: Joerg Meyer [mailto:jmeyer@...] Sent: Tuesday, June 22, 1999 2:40...
Jim Adams
sasjaa@...
Jun 22, 1999 7:40 pm
328
Hi Jim, i checked that out and yes an exception is thrown. But only after the call to FindClass when I try to load my own class, everything else works fine....
Joerg Meyer
jmeyer@...
Jun 22, 1999 9:59 pm
329
Hi Joerg, Could it be that your "Test" java file has a package name, i.e.,: package company.module.util; I've found that the package construct fouls up the...
Brent Goodrick
brent_goodrick@...
Jun 23, 1999 12:27 am
330
Just as a thought, try switching the "\\" to "/" Jim Adams Jim.Adams@... Principal Systems Developer SAS Institute ... From: Joerg Meyer...
Jim Adams
sasjaa@...
Jun 23, 1999 1:51 pm
331
Hi Brent, thanks for your thoughts. My class "Test" is not part of a package and stored as a standalone class file. Test does not have any dependencies to...
Joerg Meyer
jmeyer@...
Jun 23, 1999 3:19 pm
332
Hi Brent, thanks for your thoughts. My class "Test" is not part of a package and stored as a standalone class file. Test does not have any dependencies to...
Joerg Meyer
jmeyer@...
Jun 23, 1999 3:23 pm
333
- To unsubscribe use java-native-request@... Archives http://www.scruz.net/~cichlid/java-native-archive...
douglas.f.reynolds@...
Jun 23, 1999 3:38 pm
334
- To unsubscribe use java-native-request@... Archives http://www.scruz.net/~cichlid/java-native-archive...
Guthalagowda, Tej
tej@...
Jun 23, 1999 3:43 pm
335
I have done this. I don't think I was doing anything differently. Unfortunately I had to move back to 1.1 so I don't have anything I can test right at the...
Jim Adams
sasjaa@...
Jun 23, 1999 6:52 pm
336
Hi, I'm writing some code that needs to allocate an array. So I use NewObjectArray to do it and specify the last parameter, the initial value, to NULL. It...
Graeme Wallace
graeme@...
Jul 1, 1999 2:04 pm
337
This sounds like a minor misunderstanding. In the absence of a code sample, I'd guess that you're passing a NULL reference, vs. a valid Java object reference...
Kevin Ryan
rkevinr@...
Jul 3, 1999 7:14 am
338
The mailing list archives now available as one big file at ftp://ftp.scruz.net/users/cichlid/public/mailing-list-archives They are compressed with gzip. You...
Andrew Burgess
aab@...
Jul 14, 1999 10:53 pm
339
Hi there , I am currentlz trying to create a dll with Visual C++ in order to call it from the Java side. Unfortunately I am facing some problems with the cl...
Michael Ditze
midi@...
Sep 9, 1999 4:14 pm
340
I guess you're trying to run cl from command line or a makefile and not from the VC++ IDE. I just opened a 4NT shell (allow me to put in a plug for my most...
Glenn Nelson
glennn@...
Sep 9, 1999 4:35 pm
341
Hi there again , Thanks Glenn for your quick response. I tried to put the inlcude path in " " but still encounter the same problem. I even tried to include the...
Michael Ditze
midi@...
Sep 14, 1999 3:26 pm
342
Excerpts from jnative-l: 9-Sep-99 [JAVA-NATIVE] cl command li.. Michael Ditze@uni-paderb (681*) ... I'm just guessing, but shouldn't there be a semicolon (or...
Blair Wyman
wyman@...
Sep 14, 1999 5:10 pm
343
Thanks Dennis and Blair for your comments. Nonetheless, I still encounter the same problems with including the header files using the cl.exe compiler of Visual...
Michael Ditze
midi@...
Sep 15, 1999 10:45 am
344
Hi there again , In the meantime I figured out where the problem is with the cl.exe compiler. It basically does not accept to include files with <>, but just...
Michael Ditze
midi@...
Sep 15, 1999 12:39 pm
345
I haven't lately used my compiler from the command line, but here's the version info for Visual C++ 6.0 with Visual Studio service pack 2: Microsoft (R) 32-bit...
Glenn Nelson
glennn@...
Sep 15, 1999 3:06 pm
346
Excerpts from jnative-l: 15-Sep-99 Re: [JAVA-NATIVE] cl comman.. "Michael Ditze"@uni-pade (1380*) ... Ahhh, aha. Although I don't know the particular...
Blair Wyman
wyman@...
Sep 15, 1999 9:54 pm
347
Nope, not *quite* right, at least as far as Microsoft C compiler is concerned. In my experience, enclosing in "" means "search first in the current directory,...