Question on Applet.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dmjpro
    Top Contributor
    • Jan 2007
    • 2476

    Question on Applet.

    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
  • dmjpro
    Top Contributor
    • Jan 2007
    • 2476

    #2
    Originally posted by dmjpro
    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 solved this problem.
    I could not set the value which i am manipulating in Applet, to the HTML elements.
    Then I went through a site and saw a code which i accessing the Applet data with JavaScript code.

    Debasis Jana

    Comment

    Working...