I'm running kaffe 1.1.3 on Debian, and I have built the GNU Crypto from the latest CVS, as well as Jessie, also from the latest CVS. Here's my little test app:
-----
import java.io.InputStream; import java.net.URL; import java.net.URLConnection; import java.security.Security;
/**
* @author max
*
*/
public class HttpsTest
{
public static void main(String[] args) throws Exception
{
System.setProperty(
"java.protocol.handler.pkgs",
"org.metastatic.jessie");
Security.addProvider(new gnu.crypto.jce.GnuCrypto());
Security.addProvider(new org.metastatic.jessie.provider.Jessie());
URL url = new URL("https://www.foo.com");
URLConnection uc = url.openConnection();
InputStream is = uc.getInputStream();
is.close();
}
}-----
Here's my invocation:
java -classpath .:/data/workdir/source/gnu-crypto.jar: /data/workdir/jce/javax-crypto.jar: /data/workdir/security/javax-security.jar: /data/jessie-0.9.6/lib/javax-net.jar: /data/jessie-0.9.6/lib/javax-security-cert.jar: /data/jessie-0.9.6/lib/org-metastatic-jessie.jar HttpsTest
I looked in the jessie.jar file and everything looks like it's there to provide HTTPS, and I get this:
java.net.MalformedURLException: Protocol handler not found: https at java.net.URL.<init> (URL.java:430) at java.net.URL.<init> (URL.java:311) at HttpsTest.main (HttpsTest.java:17)
I tried moving the jessie.jar into the BOOTCLASSPATH and got a whole new raft of exceptions, because jessie wants to load some classes by name. But to do so, it has to call [some object].class.getClassLoader(). But if the calling class was loaded by the bootloader, getClassLoader() returns null. Argh! It's like I'm stuck in a catch-22 here.
Has anybody else made https work with jessie under kaffe? If so, what's the trick?
thanks max
_______________________________________________ kaffe mailing list [EMAIL PROTECTED] http://kaffe.org/cgi-bin/mailman/listinfo/kaffe
