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
0
votes
1 answer

How can I call a web applet method via JMeter

I have a java web applet which tries to connect to a hardware token through PKCS#11 and sign a String. When the web page is loaded the sign applet is loaded either. When a dialog comes up in the web form, the user should insert the hardware token's…
Hana Bzh
  • 2,212
  • 3
  • 18
  • 38
0
votes
1 answer

Upload file from desktop to Java applet application

How I can upload a file from desktop to Java applet application? Create upload button. Browse thought the desktop and choose the file. Then create a link that enables the user to click on and open the chosen file.
R.Y.H
  • 73
  • 3
  • 10
0
votes
0 answers

Method of signed Applet not working on Javascript call

I need to read/write on client machine. I followed this post and successfully got it to the point where the "Security Warning" message appears. But when I am making the call to Applet method from Javascript, I am getting the file permission error. I…
FaisalKhan
  • 2,406
  • 3
  • 25
  • 32
0
votes
0 answers

Applet java.lang.NoClassDefFoundError - JVM Runtime Classes

I am using an applet that will be called by JavaScript in the background to access the clipboard and copy the contents. I am using the below code to load the applet in my JSP file. var attributes = { id:'applet', code:'com.applet.Applet.class',…
0
votes
2 answers

Can I install an old java plugin?

Is there any way to install an old version of the Java plugin in any of my browsers (IE, Firefox, Chrome or Opera)? I want to be able to test a set of applets without digitally signing them, but Oracle's crazy signing policy is making it impossible.…
user1636349
  • 458
  • 1
  • 4
  • 21
0
votes
1 answer

Maven signed jar gives warning "unsigned application"

I'm using Maven for a project that creates a JAR that's embedded in my web application to sign PDF documents using a smartcard. In my pom.xml I use the maven-jarsigner-plugin as follows: org.apache.maven.plugins
nielsr
  • 2,417
  • 2
  • 15
  • 16
0
votes
0 answers

Can I turn a java self signed certificate trusted to Java accept certificate automatically

I create a self-signed certificate using keytool. I'm use this certificate to run a applet that I developed, but the java in my PC or othres PCs request a autorization to run the applet, beacause the certificate is a self-signerd certificate. How i…
0
votes
1 answer

Applet throws ClassNotFoundException after signing & updating manifest

I have jar file located exactly inside at /Test2XML/applets/ with name MyIPFetcher.jar. I am trying to make this jar compatible to run on IE8 + IE11 & JRe 1.6 + 1.7. MyIPFetcher.jar is trying to obtain the IP address of client PC's. PS: IP address…
0
votes
1 answer

accessing LDAP via applet

I need to access the local running LDAP via applet for authenticating users from their own organization security. But when i click the login button and applet tries to connect to the 10.0.215.45 server it gives following exception network:…
Saqib Javed
  • 177
  • 4
  • 17
0
votes
1 answer

JavaFX - Do I need to buy a license and get my software passed to share it online?

Ok, so I noticed that(I'm assuming due to security holes) Java has decided to force people to get their java software signed and the license is rumored to cost between $100 - $300 or something like that. This is supposed to depend on which…
John Conner
  • 233
  • 1
  • 4
  • 18
0
votes
1 answer

Applet Java not working on IE9 but fine on Firefox

i'm stuck with a little problem, i develop a java applet under windows 7 with JRE 1.6_0.37 and all work fine on IE9 and FF. When we decide to test the application in target environment with a vmware pre-configured with client installation (IE9 and…
0
votes
1 answer

Application blocked by security settings after lowering security settings and adding site exceptions

I have a Java applet that I am launching through a .jnlp file, but it gets blocked with the following message: The Java security settings have prevented this application from running. You may change this behaviour in the Java Control Panel. I used…
modulitos
  • 14,737
  • 16
  • 67
  • 110
0
votes
1 answer

Alternative ways to applet with java web start

In my web application we are using java applet with java web start (jnlp) for showing ticket and printing from client machine using the selected data from web application. If the print is successful, then server gets related notification according…
DpkTheJavaCoder
  • 117
  • 1
  • 10
0
votes
2 answers

How does java 'know' that it an older version

I installed Java version 45 on a test machine. High security setting says that one can can't run unsigned or self-signed apps on older versions of Java, and in fact it fails to run a self-signed applet. How is this version able to detect that it is…
Chaim Geretz
  • 826
  • 5
  • 23
0
votes
2 answers

Signed Applet does not load

I've a simple HelloWorld applet, I am embedding that in the HTML. It worked fine. But I put the applet in the jar and signed the jar, but it does not load saying "Self signed jars can't be supported" I am signing using ICA issued cert. More over we…
java_enthu
  • 2,279
  • 7
  • 44
  • 74
1 2 3
8 9