What does it mean that Java applet runs in web browser? Does it share the same address space as browser? Isn’t it created as single process?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Most modern browsers support plugins, for instance through the NPAPI.
This allows the Java runtime to run inside of the browser process, as a plugin, executing the Java applet.
Whether or not it runs in the same process or not is up to the browser itself; Chrome, for instance, runs every plugin in a separate process, while other browsers only use one process.