Can I make an entry in widows Registry through an applet?

Hi,Can i make an entry in the windows registry using applets?actually i want to make an entry on a remote machine. is it possible?if yes, then how?thnxkapilChhabra
[205 byte] By [kapilChhabra] at [2007-9-30 19:15:15]
# 1
p.s. : i am using com.ice.jni.registry to manipulate the Windows Registry.
kapilChhabra at 2007-7-6 23:27:09 > top of Java-index,Administration Tools,Sun Connection...
# 2
Sign your applet, then it will have the same permissions as an application running on the machine, if the user accepts.Monika.
monika_krug at 2007-7-6 23:27:09 > top of Java-index,Administration Tools,Sun Connection...
# 3
Thanks,but Applets is not my domain. Can you please elaborate?What do u mean by signing an applet? and how do u do it?kapilChhabra
kapilChhabra at 2007-7-6 23:27:09 > top of Java-index,Administration Tools,Sun Connection...
# 4

Signing an applet basically gives it a certificate. The user decides whether to accept it. If no, it runs as a normal applet, if yes, it runs as a privileged applet like an application. Typically you would purchase certificates, but this is not necessary. You can self-sign. If the user knows and trusts you, he will click yes anyway.

Read this: http://java.sun.com/j2se/1.4.2/docs/guide/plugin/developer_guide/rsa_signing.html

Monika.

monika_krug at 2007-7-6 23:27:09 > top of Java-index,Administration Tools,Sun Connection...