WebStart remote poller needs Permissions: manifest attribute to run under Java 7u45

Description

Originally reported as https://mynms.opennms.com/Ticket/Display.html?id=2858

Trying to run the webstart remote poller under Java 7u45 or newer fails with the following exception:

java.lang.SecurityException: Missing required Permissions manifest attribute in main jar: http://172.16.14.15:8980/opennms-remoting/webstart/org.opennms.features.remote-poller.jar
at com.sun.deploy.security.DeployManifestChecker.verifyMainJar(Unknown Source)
at com.sun.deploy.security.DeployManifestChecker.verifyMainJar(Unknown Source)
at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
at com.sun.javaws.Launcher.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

The reason is that Java 7u45 started enforcing the requirement that the JAR manifest of an JNLP app have a "Permissions:" attribute. A "Codebase:" attribute may also be required. For our case, I believe the following need to be added to the JNLP JAR:

Permissions: all-permissions
Codebase: *

I've been poking at the webstart-maven-plugin and its <updateManifestEntries> property in an attempt to make this happen in the build, but have not gotten it to work so am punting it to a bug issue.

Acceptance / Success Criteria

None

Lucidchart Diagrams

Activity

Show:

Ronny Trommer April 1, 2016 at 8:51 PM

seems to be fixed can we delete this branch? https://github.com/OpenNMS/opennms/tree/jira/NMS-6522

Benjamin Reed April 24, 2014 at 5:57 PM

fixed in 1.12 and in a slightly different way in master

Jeff Gehlbach April 23, 2014 at 4:23 PM

Here's some info:

http://mojo.codehaus.org/webstart/webstart-maven-plugin/faq.html

Even after updating the webstart-maven-plugin version to 1.0-beta6, though, the specified attributes aren't making it into the manifest. My Maven-fu just isn't up to this one, what with all the lifecycles and forks and remembering which one to use for the salad.

Fixed

Details

Assignee

Reporter

Components

Sprint

Fix versions

Affects versions

Priority

PagerDuty

Created April 23, 2014 at 4:17 PM
Updated January 27, 2017 at 4:20 PM
Resolved April 24, 2014 at 5:57 PM