Java applet of Printer/Scanner device not working properly
I have a printer with scanner (Lexmark model CX310).
I can create a scan profile from a Java Applet found in the printer's IP (in my case 192.168.0.28) via a Webbrowser.
Since Chrome and Firefox don't support Java anymore, I used IE11.
I'm using the last version o Java (8 - 151) on Windows 10 64 bits, and I already got permisions on the security tab of Java's configuration window for my IP, as shown in the image.
But the applet is not working properly as you can see in the picture (the words are not being written) and in the console (it seems something to do with security, access being denied). What should I do?
security java printer
|
show 1 more comment
I have a printer with scanner (Lexmark model CX310).
I can create a scan profile from a Java Applet found in the printer's IP (in my case 192.168.0.28) via a Webbrowser.
Since Chrome and Firefox don't support Java anymore, I used IE11.
I'm using the last version o Java (8 - 151) on Windows 10 64 bits, and I already got permisions on the security tab of Java's configuration window for my IP, as shown in the image.
But the applet is not working properly as you can see in the picture (the words are not being written) and in the console (it seems something to do with security, access being denied). What should I do?
security java printer
1
it's not really a full answer. try adding HTTP://192.168.0.28* as an exception to the Java security list and see if that works then.
– Stese
Nov 15 '17 at 9:22
When I add the *, Java says my appliation was blocked because it's not on the Exception list.
– Otávio Rapôso
Nov 15 '17 at 9:30
1
Sorry, I made a mistake 192.168.0.28/* << added a /
– Stese
Nov 15 '17 at 9:35
Doesn't work as well. It says again that I should add the website on the Exception List.
– Otávio Rapôso
Nov 15 '17 at 9:40
ok, it may be that wildcards don't work. Could you contact the printer manufacturer for a fix to the UI
– Stese
Nov 15 '17 at 9:54
|
show 1 more comment
I have a printer with scanner (Lexmark model CX310).
I can create a scan profile from a Java Applet found in the printer's IP (in my case 192.168.0.28) via a Webbrowser.
Since Chrome and Firefox don't support Java anymore, I used IE11.
I'm using the last version o Java (8 - 151) on Windows 10 64 bits, and I already got permisions on the security tab of Java's configuration window for my IP, as shown in the image.
But the applet is not working properly as you can see in the picture (the words are not being written) and in the console (it seems something to do with security, access being denied). What should I do?
security java printer
I have a printer with scanner (Lexmark model CX310).
I can create a scan profile from a Java Applet found in the printer's IP (in my case 192.168.0.28) via a Webbrowser.
Since Chrome and Firefox don't support Java anymore, I used IE11.
I'm using the last version o Java (8 - 151) on Windows 10 64 bits, and I already got permisions on the security tab of Java's configuration window for my IP, as shown in the image.
But the applet is not working properly as you can see in the picture (the words are not being written) and in the console (it seems something to do with security, access being denied). What should I do?
security java printer
security java printer
asked Nov 15 '17 at 9:18
Otávio RapôsoOtávio Rapôso
1012
1012
1
it's not really a full answer. try adding HTTP://192.168.0.28* as an exception to the Java security list and see if that works then.
– Stese
Nov 15 '17 at 9:22
When I add the *, Java says my appliation was blocked because it's not on the Exception list.
– Otávio Rapôso
Nov 15 '17 at 9:30
1
Sorry, I made a mistake 192.168.0.28/* << added a /
– Stese
Nov 15 '17 at 9:35
Doesn't work as well. It says again that I should add the website on the Exception List.
– Otávio Rapôso
Nov 15 '17 at 9:40
ok, it may be that wildcards don't work. Could you contact the printer manufacturer for a fix to the UI
– Stese
Nov 15 '17 at 9:54
|
show 1 more comment
1
it's not really a full answer. try adding HTTP://192.168.0.28* as an exception to the Java security list and see if that works then.
– Stese
Nov 15 '17 at 9:22
When I add the *, Java says my appliation was blocked because it's not on the Exception list.
– Otávio Rapôso
Nov 15 '17 at 9:30
1
Sorry, I made a mistake 192.168.0.28/* << added a /
– Stese
Nov 15 '17 at 9:35
Doesn't work as well. It says again that I should add the website on the Exception List.
– Otávio Rapôso
Nov 15 '17 at 9:40
ok, it may be that wildcards don't work. Could you contact the printer manufacturer for a fix to the UI
– Stese
Nov 15 '17 at 9:54
1
1
it's not really a full answer. try adding HTTP://192.168.0.28* as an exception to the Java security list and see if that works then.
– Stese
Nov 15 '17 at 9:22
it's not really a full answer. try adding HTTP://192.168.0.28* as an exception to the Java security list and see if that works then.
– Stese
Nov 15 '17 at 9:22
When I add the *, Java says my appliation was blocked because it's not on the Exception list.
– Otávio Rapôso
Nov 15 '17 at 9:30
When I add the *, Java says my appliation was blocked because it's not on the Exception list.
– Otávio Rapôso
Nov 15 '17 at 9:30
1
1
Sorry, I made a mistake 192.168.0.28/* << added a /
– Stese
Nov 15 '17 at 9:35
Sorry, I made a mistake 192.168.0.28/* << added a /
– Stese
Nov 15 '17 at 9:35
Doesn't work as well. It says again that I should add the website on the Exception List.
– Otávio Rapôso
Nov 15 '17 at 9:40
Doesn't work as well. It says again that I should add the website on the Exception List.
– Otávio Rapôso
Nov 15 '17 at 9:40
ok, it may be that wildcards don't work. Could you contact the printer manufacturer for a fix to the UI
– Stese
Nov 15 '17 at 9:54
ok, it may be that wildcards don't work. Could you contact the printer manufacturer for a fix to the UI
– Stese
Nov 15 '17 at 9:54
|
show 1 more comment
1 Answer
1
active
oldest
votes
Perhaps too late to answer for the original poster, but still might help someone. Add http://192.168.0.28/ (notice the trailing slash) which means run applets under / and all sub -directories. Reference
https://www.java.com/en/download/faq/exception_sitelist.xml
add a comment |
protected by Community♦ Jan 17 at 16:37
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Perhaps too late to answer for the original poster, but still might help someone. Add http://192.168.0.28/ (notice the trailing slash) which means run applets under / and all sub -directories. Reference
https://www.java.com/en/download/faq/exception_sitelist.xml
add a comment |
Perhaps too late to answer for the original poster, but still might help someone. Add http://192.168.0.28/ (notice the trailing slash) which means run applets under / and all sub -directories. Reference
https://www.java.com/en/download/faq/exception_sitelist.xml
add a comment |
Perhaps too late to answer for the original poster, but still might help someone. Add http://192.168.0.28/ (notice the trailing slash) which means run applets under / and all sub -directories. Reference
https://www.java.com/en/download/faq/exception_sitelist.xml
Perhaps too late to answer for the original poster, but still might help someone. Add http://192.168.0.28/ (notice the trailing slash) which means run applets under / and all sub -directories. Reference
https://www.java.com/en/download/faq/exception_sitelist.xml
answered Nov 11 '18 at 16:51
pirabidpirabid
312
312
add a comment |
add a comment |
protected by Community♦ Jan 17 at 16:37
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
1
it's not really a full answer. try adding HTTP://192.168.0.28* as an exception to the Java security list and see if that works then.
– Stese
Nov 15 '17 at 9:22
When I add the *, Java says my appliation was blocked because it's not on the Exception list.
– Otávio Rapôso
Nov 15 '17 at 9:30
1
Sorry, I made a mistake 192.168.0.28/* << added a /
– Stese
Nov 15 '17 at 9:35
Doesn't work as well. It says again that I should add the website on the Exception List.
– Otávio Rapôso
Nov 15 '17 at 9:40
ok, it may be that wildcards don't work. Could you contact the printer manufacturer for a fix to the UI
– Stese
Nov 15 '17 at 9:54