function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
JimHylandJimHyland 

Invoke local Java Applet from VF Page.

I'm trying to invoke a Java applet located on my local machine from a VF page.  Is this possible?  How do I specify the Remote Site (I keep getting "cannot parse URL" when I use localhost for example)?

Best Answer chosen by Admin (Salesforce Developers) 
AnushaAnusha

Hi JimHyland, 

as we're Cloud Developer we no need to give any URL for the file.

Make that Applet as a secured JAR file and upload that JAR File in Static Resource.

and use that Applet

All Answers

AnushaAnusha

Hi JimHyland, 

as we're Cloud Developer we no need to give any URL for the file.

Make that Applet as a secured JAR file and upload that JAR File in Static Resource.

and use that Applet

This was selected as the best answer
JimHylandJimHyland

Thanks for your help.