html - Java Applet Security Issues -


i'm having lot of difficulty getting applet made run in web browser. java security keeps blocking it. have jar sitting on desktop , made simple html file embeds jar using . i'm trying embed in html website. don't have root access site @ want avoid using web start , apache tom cat stuff because seems tutorials assume you're uploading app directory of site itself. can embed html here, have jar located in googledrive.com/host i'm trying link.

here's code tag.

<applet       codebase="https://bb2f18b1cb19b925c50b747c1c65afcc4ad11720.googledrive.com/host/0b34na0csyjzufm5zeffecumyqnr5bmw1evl2m3bocxitngxxztzvafexnvhxqny4dzy3qtg"       archive="asteroidgameapp.jar"       code="asteroidgame.asteroidgame.class"      width=500      height=500> </applet> 

i don't know if run correctly or not because can't past security. i've read stuff getting code signed can't find clear tutorial how that.

as reported on java related site starting java 7 update 51, trying run unsigned java applications generates error messages , prevents executing applet.

follow instructions oracle proper solution (i experience had valid certificate trusted root verisign , used certificate sign applet jar) if can't way, try suggested workaround in correspondent section.

obviously, stated java site:

it highly recommended not run these types of applications. if still want run these apps, run if understand risks , implications.


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -