Webサイトを閲覧したり,Webアプリを立ち上げようとすると,Javaのセキュリティーエラーとして,以下のようなポップアップが出てくることがあります。
Java Application Blocked Application Blocked by Java Security For security, applications must now meet the requirements for the High or Very High security settings, or be part of the Exception Site List, to be allowed to run. Reason: Yuor security settings have blocked a self-signed application from running
もちろん,怪しいアプリケーションはブロックされるべきなのですが,これまで利用できていたアプリケーションが突然使えなくなった場合や,信頼できる政府や市町村のWebサイトがいまだに古い技術を用いてしまっているというケースもあります。
それで,とりあえずJavaのブロックを解除してアプリケーションを立ち上げるには,以下の手順で設定を行います。
コントロールパネルからJavaの設定画面を立ち上げる
コントロールパネルにJavaという項目があると思いますので,クリックします。
すると,Javaの設定画面が開きますので,Securityタブをクリックし,Exception Site Listに,該当のWebアプリケーションのURLを入力します。
URLはドメイン名だけでOKです。
例:http://www.hello.com/
その後,Webブラウザーを再起動しましょう。
再びWebアプリケーションにアクセスすると,以下のような画面が出てくるかもしれません。
Security Warning Do you want to run this application? Running this application may be a security risk Risk: This application will run with unrestricted access which may put your computer and personal information at risk, The information provided is unreliable or unknown so it is recommended not to run this application unless you are familiar with its source Select the box below, then click Run to start the application I accept the risk and want to run this application.
それで,I accept the risk and want to run this application.をチェックしてRunします。
これで,WebアプリケーションがJavaのセキュリティ警告にブロックされることなく起動できるようになりました。
以上,Application Blocked by Java Securityというエラーが出てアプリケーションを立ち上げられない場合の対処法でした。
コメント