newbie question

Hi all,

while developping a client-server application,I've had the occasion to read a document ABOUT the kerberos protocol and found it very interesting. I've tried customizing my codes so the authentification process looks like the concept of kerberos. But when trying to create the KerberosKey,I got a message saying the c:/winnt/kerb5.ini file was not found.

Any advice will be appreciated!

[414 byte] By [jajanea] at [2007-12-27]
# 1

> trying to create the KerberosKey,I got a message

> saying the c:/winnt/kerb5.ini file was not found.

> Any advice will be appreciated!

read http://java.sun.com/j2se/1.5.0/docs/guide/security/jgss/tutorials/Troubleshooting.html

and add this file

[domain_realm]

.yourdomain.com = YOURDOMAIN.COM

yuordomain.ru = YOURDOMAIN.COM

[libdefaults]

default_realm = YOURDOMAIN.COM

kdc_timesync = 1

ccache_type = 4

ticket_lifetime = 600

default_tkt_enctypes = des-cbc-md5 des-cbc-crc des3-cbc-sha1

default_tgs_enctypes = des-cbc-md5 des-cbc-crc des3-cbc-sha1

permitted_enctypes = des-cbc-md5 des-cbc-crc des3-cbc-sha1

#default_checksum = rsa-md5

[logging]

kdc = CONSOLE

[realms]

RUNA.RU = {

kdc = 192.168.0.1:88

default_domain = yourdomain.com

}

[appdefaults]

autologin = true

forward = true

forwardable = true

encrypt = true

yilativsa at 2007-7-15 > top of java,Security,Kerberos & Java GSS (JGSS)...