I am right now working on Applet.
I am writing an Applet which extracts some information from Client Machine.
As the client's java.policy restricts to do that so I added a
"grant {
permission java.security.A llPermission;
};
"
Later I will make it signed.
But now i m able to extracts those information but i want send it to a server.
Suppose my applet will be used in a View but how can i interact with the HTML element so that i can send those information when the a request made to a server.
Debasis Jana
I am writing an Applet which extracts some information from Client Machine.
As the client's java.policy restricts to do that so I added a
"grant {
permission java.security.A llPermission;
};
"
Later I will make it signed.
But now i m able to extracts those information but i want send it to a server.
Suppose my applet will be used in a View but how can i interact with the HTML element so that i can send those information when the a request made to a server.
Debasis Jana
Comment