what’s are the uses of the host param with java applets?
can it be tricked to use a different server than the originating server?
I didn’t find a clear complete explanation of the host param.
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.
The parameters you pass to applets are just like command line parameters to an application: The applet can make whatever use of them that it wants. There’s nothing special about a parameter called HOST, and it doesn’t cause the applet to do anything magical.
Typically, an applet may like to use the HOST parameter to display, in a status area or something, which host it’s being executed from. Or it may behave differently depending on the host… or something.
Unless the applet is signed and given permission in the browser’s sandbox, it won’t talk to any other host than the one it’s loaded from.