I want to load an applet from a server side script, eg. a Perl CGI program, etc. Can this be done? how?
<applet code=A21 width=256 height=256 archive="http://url/cgi-bin/test.cgi?R=applet">
thanks in advance for all help.
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.
I haven’t done this is a long time (so the security model might have changed on me), but the trick was to configure the server to handle some translation. Say that you have the URL:
You set up the URL translation such that you handle http://example.com/applets with your CGI script, which then gets /MyCode/1.0 as
PATH_INFO. You return whatever you need to return.Why do you want to do this?