Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

openjdk: how to add site to exception list

Tags:

I would like to run an applet on my server and currently it is being blocked by Java security.

On my development machine I was able to open control panel and to add a site to the exception list but now on my production server I don't have connected display.

Is there any conf file I could use?

I don't mind moving to different JAVA vendor.

Thanks

like image 652
embedded Avatar asked Sep 20 '14 14:09

embedded


People also ask

Where is Java exception site list?

The exception site list is managed in the Security tab of the Java Control Panel. The list is shown in the tab. To add, edit, or remove items from the list, click Edit Site List and follow the directions in Add a URL, Edit a URL, and Remove a URL.


1 Answers

You can add your sites at this file;

${user.home}/.java/deployment/security/exception.sites

Every url should be in separate line.

To log/trace you should add into your deployment properties ${user.home}/.java/deployment/deployment.properties

deployment.log=true
deployment.trace=true
deployment.trace.level=all

Log/trace will appear in ${user.home}/.java/deployment/log

like image 186
Petar Butkovic Avatar answered Sep 18 '22 21:09

Petar Butkovic