Questions tagged [next-generation-plugin]

The next-generation Java Plug-In, introduced in Java SE 6 Update 10, provides powerful new capabilities to applets in the web browser, while improving the overall reliability and functionality of applets in a backward-compatible manner.

The next-generation Java Plug-In, introduced in Java SE 6 Update 10, provides powerful new capabilities to applets in the web browser, while improving the overall reliability and functionality of applets in a backward-compatible manner.

Summary of new/improved functionality

  • Improved reliability
  • Improved user experience
  • Applets launch in the background
  • Built-in JNLP (Java Web Start) support
  • Per-applet command line arguments
  • Heap size, Java 2D API acceleration options
  • Improved Java/JavaScript programming language integration
  • Improved Windows Vista support
  • Signed applets now work correctly in Protected Mode Internet Explorer

See also

72 questions
0
votes
0 answers

Launching an Applet with JNLP

Following this tutorial I used NetBeans to build my self-signed Applet jar, launch.html and launch.jnlp files. However when I open the html in any browser, the applet does not initialize. I get no error of any kind, just a blank white webpage. When…
unmuse
  • 677
  • 2
  • 9
  • 21
0
votes
1 answer

Shutting down an applet properly

Where I work they use the AppletContext.showDocument(URL) method when a user logs off our application, which is an applet, providing the desired logoff JSP. But they also have code that says if for some reason they are unable to get an…
BigMac66
  • 1,528
  • 5
  • 19
  • 35
0
votes
2 answers

Why do we need JNLP File in Java and Applet?

Why do we need JNLP file? What is the advantage of it? Can we run applet without signing it on browser?
Abhinav
  • 1,041
  • 1
  • 9
  • 11
0
votes
2 answers

How to upload files with java applet?

I know similar questions have been asked but i have searched for hours and as of yet have not come up with a workable solution. I have a Java applet which will be a "paint" like application. So, I need the user to be able to upload images from…
Matt
  • 11
  • 3
0
votes
1 answer

Global values of application and applet

With desktop applications, to maintain global values, I usually have some singleton or static properties. However, recent days, I have been working with applet. And it causes some trouble because when I we open the application in different tabs of…
Loc Phan
  • 4,304
  • 4
  • 29
  • 35
0
votes
1 answer

Write file on client system using applet

I want to write a file on client using applet. I have some it can write when we run the applet as separate from Java. But it can't write through browser by calling the applet function from javascript. How can I write files on client system?
Kandha
  • 3,659
  • 12
  • 35
  • 50
0
votes
1 answer

Nextgen gallery 2.1.46 remove title in image browser using CSS code

I am trying to remove the title from an image browser gallery using the Nextgen gallery plugin (v. 2.1.46) and Wordpress (4.4.4). I have been instructed to go to Gallery > Other Options > Styles and modify the CSS code. But, I am not having luck…
0
votes
1 answer

Direct file access by java applet

I need to know whether an applet could use direct file access functionality, NOT via JNLP. Is it possible for applet to access files via standard file classes: java.nio.file.Files; java.io.FileInputStream; Is this possible for "Next Generation…
JRr
  • 1,552
  • 1
  • 19
  • 23
0
votes
1 answer

Where is option for Java Next-Generation Plugin?

I have a problem starting a commercial JavaWS application on IE11 on some computers at work. The application eventually starts but the user has to try several times before it works whick is very annoying. We are currently using JRE 1.8.0_40 on…
Edminsson
  • 2,426
  • 20
  • 25
0
votes
1 answer

is not a valid MVC template NEXTGEN

I have a huge problem on migrating a wordpress site. After the migration I can't get to work the NEXTGEN GALLERY plugin. When I try to upload an image or view options in admin, this is the…
0
votes
1 answer

Applet stopped working with a JNLP MissingFieldException

I have an applet which was running 1/2 year ago. Now i needed to 'reactivate' it however for an unknown reason it is not working anymore. Here are the specs: JNLP based NG Applet Tomcat 7 JRE 1.7.0_25 Firefox 22 and Chrome 28 This is the error I…
Lonzak
  • 9,334
  • 5
  • 57
  • 88
0
votes
2 answers

How to save images created in applet to specified folder?

share1 = (BufferedImage) createImage(new MemoryImageSource(w*2,h,s1,0,w*2)); ImageIO.write(share1, "jpg", fileChooser.getSelectedFile());
1 2 3 4
5