0

I want to read specific key values from Windows Registry machine from the web server. I'm using jsf and seam. I just wanted to check if there is a certain application that was already installed on the client machine and i want to check it from the server side code.

Is this possible?

Many Thanks.

Ellie Fabrero
  • 791
  • 2
  • 16
  • 41

1 Answers1

1

For accessing registry you need to use Java Native Access (JNA) registry library.

For reading client registry I think you need to use Applet and provide appropriate security permissions

Have a look at this SO post

Community
  • 1
  • 1
Abdullah Shaikh
  • 2,567
  • 6
  • 30
  • 43
  • I'm using jna library btw, but it cant read registry values from the client machine from the server code. I can only read from my local machine though. – Ellie Fabrero Mar 13 '13 at 06:34
  • As I mentioned in the post, you need to put the code which read registry in Applet so that it reads from client machine. Right now it reads from your server registry. – Abdullah Shaikh Mar 13 '13 at 06:37