OpenSSL use into java applet

2005-09-13 Thread Angel Martinez Gonzalez
Hello: Sorry for my english. I have a native methods written in C that use openssl functions. This native methods are invoke into java applet throught JNI, but it don´t work. I think that my applet don´t find some .dll or .lib from OpenSSL, but I don´t know how do it. I use Microsoft Visual

Re: OpenSSL use into java applet

2005-09-13 Thread Dominique Lohez
Angel Martinez Gonzalez wrote: Hello: Sorry for my english. I have a native methods written in C that use openssl functions. This native methods are invoke into java applet throught JNI, but it don´t work. I think that my applet don´t find some .dll or .lib from OpenSSL, but I don´t know how

Re: OpenSSL use into java applet

2005-09-13 Thread Angel Martinez Gonzalez
] To: openssl-users@openssl.org Sent: Tuesday, September 13, 2005 10:42 AM Subject: Re: OpenSSL use into java applet Angel Martinez Gonzalez wrote: Hello: Sorry for my english. I have a native methods written in C that use openssl functions. This native methods are invoke into java applet

Re: OpenSSL use into java applet

2005-09-13 Thread Bhupendra K Joshi
Hi Angel, JNI and web-loaded Applets are incompatible, even if you sign them or jump through incredible hoops. You must use a Signed Applet to install an second signed one on the client's local hard disk, and then use that second Applet to do your JNI work. Even then loadLibrary is unreliable.

Re: OpenSSL use into java applet

2005-09-13 Thread Angel Martinez Gonzalez
, but It work. Regards. Ángel Martínez - Original Message - From: Bhupendra K Joshi To: openssl-users@openssl.org Sent: Tuesday, September 13, 2005 12:55 PM Subject: Re: OpenSSL use into java applet Hi Angel, JNI and web-loaded Applets are incompatible, even