Re: How to use gssapi in java applet?

2006-10-02 Thread Seema Malkani
Here are your options: 1) Install the Kerberos configuration file instead of using system properties "java.security.krb5.kdc" and "java.security.krb5.realm". 2) Set system properties via java.lang.System class e.g System.setProperty("javax.security.auth.useSubjectCredsOnly", "false"); 3) Configur

How to use gssapi in java applet?

2006-09-29 Thread lizhong
I want to use the vnc applet client ,and need to modify the source code for kerberos authentication and data encryption. So I want the applet to be as easy to use as possible, and I hope no local file would be used in this process(for applet cannot visite local files without changing the securit

Re: How to use gssapi in java applet?

2006-09-27 Thread vadim
On Thu, 2006-09-28 at 12:21 +0800, lizhong wrote: > Hi all, > I'm trying to build a applet client to connect to the gss-server.c > program(in kerberos/src/app/gss-sample). I read this page: > http://java.sun.com/j2se/1.5.0/docs/guide/security/jgss/tutorials/BasicClientServer.html > And I h

How to use gssapi in java applet?

2006-09-27 Thread lizhong
Hi all, I'm trying to build a applet client to connect to the gss-server.c program(in kerberos/src/app/gss-sample). I read this page: http://java.sun.com/j2se/1.5.0/docs/guide/security/jgss/tutorials/BasicClientServer.html And I have already built a java application client to connect to th