Questions tagged [signed-applet]

A privileged applet signed by the digital certificate. Privileged applets do not have the security restrictions that are imposed on sandbox applets and can run outside the security sandbox.

Java applets are loaded on a client when the user visits a page containing an applet. The security model behind Java applets has been designed with the goal of protecting the user from malicious applets.

Applets are either sandbox applets or privileged applets. Sandbox applets are run in a security sandbox that allows only a set of safe operations. Privileged applets can run outside the security sandbox and have extensive capabilities to access the client.

Applets that are not signed are restricted to the security sandbox, and run only if the user accepts the applet. Applets that are signed by a certificate from a recognized certificate authority can either run only in the sandbox, or can request permission to run outside the sandbox. In either case, the user must accept the applet's security certificate, otherwise the applet is blocked from running.

Source: The Java Tutorials ("What Applets Can and Cannot Do")

126 questions
2
votes
1 answer

Security Warning in signed applet

The company I work for has an applet which requires special access to the client machine, so every Jar file is signed digitally. The applet and the company's web application interact using javascript to communicate. The problem is that the first…
David
  • 1,282
  • 3
  • 18
  • 40
2
votes
1 answer

Signing Applet with Maven jar plug-in and Bouncy Castle

I have a problem with a signed Java applet - specifically, why it is not signed using my certificate. I'm using Maven in Eclipse. The applet (a) allows the user to choose a local file or directory, (b) encrypts the file(s), and (c) uploads the…
2
votes
1 answer

applet always giving warning dialog box

In my application we are using self signed applet, previously we were getting dialog with one check box to remember choice. but now a day after updating Java version to 7u40 we are not getting this option, thats why it every time asking for…
2
votes
1 answer

Access a local client database using Java Applet

I am trying to build a Java Applet that connects to database on the client side and executes some query. The applet needs to use JDBC... so I implemented a very simple JDBC connection to a database file located on my C:/ drive. After signing the app…
BBacon
  • 2,456
  • 5
  • 32
  • 52
2
votes
3 answers

signed java applet restrictions?

I wrote a java applet and self signed it. When I run it in eclipse or as a executable jar it works fine. But when I upload it, it doesn't do anything. It loads, and the self signed cert warning does come up and I click yes but nothing. I was under…
Ilia Choly
  • 18,070
  • 14
  • 92
  • 160
1
vote
1 answer

Using local Jar from signed applet

Is it possible to have an Applet use a local jar? My Applet application needs to have some dependencies ( 66Mb worth of jars). The user can install the jars previously, but how can I use them from the applet? I can have them saved to default…
Johnny Everson
  • 8,343
  • 7
  • 39
  • 75
1
vote
0 answers

Signed applet not working

I make a applet: import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.net.*; import Java.io.*; public class a extends JApplet { public void init() { …
Bruno Wieczorek
  • 524
  • 1
  • 4
  • 8
1
vote
2 answers

Signing a Java Applet

I have signed a Java Applet jar using Verisign certificate. When Java Applet is run from a html/javascript , a dialog box appears which asks whether the unknown certicate needs to be trusted or not & the Java Application should be run or not. When…
chiranjib
  • 5,288
  • 8
  • 53
  • 82
1
vote
1 answer

Security Exception in self signed sound recorder Applet

I have created an applet for recording sound. It throws an exception when I try to open a dataline. TargetDataLine.open() java.security.AccessControlException: access denied (javax.sound.sampled.AudioPermission record) My applet is self signed, all…
subhashlg26
  • 993
  • 1
  • 11
  • 25
1
vote
1 answer

Java Applet - Signing applet class instead of applet jar

I have a java applet which accesses a file on the file system of the client-side. For that I created a jar for my applet and then signed it and now everything works fine. Question: Is there any way by which I can sign the applet class itself instead…
Amit
  • 33,847
  • 91
  • 226
  • 299
1
vote
1 answer

Signed Applets, JNI and DLLs

I have a question about signed applets and dll's. I'm going to do an applet that uses a bunch of dll's that resides on the harddrive. If my applet is signed and the user agrees to run the applet, will the dll's be able to perform anything? I was…
KaiserJohaan
  • 9,028
  • 20
  • 112
  • 199
1
vote
1 answer

We are using the Java Applet technology in our product. Is there an alternative to Oracle's Java Web Plugin provided by another vendor?

Oracle is planning to make its JRE paid from Jan 2019 onwards. We need to find another vendor that supplies the Java Web plugin for free. Do any of the OpenJDK vendors provide this plugin? Oracle hosts the plugin on this link -…
Divi
  • 11
  • 1
1
vote
1 answer

Replace applet with alternatives

Our app heavily makes use of applets to check-in (upload) and check out (download) files from users machine. Can someone please confirm what are the alternatives for applet (as it is going to be deprecated by Oracle in 2018)?
sam2539431
  • 41
  • 6
1
vote
1 answer

signed applet blocked on webbrowser with reverse Proxy ('Unknown Source')

I'm having problems to deploy a signed applet (certificate from a trusted CA) on a new webserver. It is running fine on my old webserver, but when I transfer it to the new host, it is blocked by Java security settings. I deploy it like this in my…
1
vote
2 answers

Signed java applet

I am creating a socket connection with an unsigned applet to a different host and I'm getting java.security.AccessControlException: access denied If I sign this applet with either "self-cert" or "CA cert" does the applet gain the permissions to…
Adam
  • 85
  • 1
  • 2
  • 4
1 2
3
8 9