The manifest attribute of the application name is missing:

I have an application with some external banks that I created. With the new Java policy, I had to sign my application and all the banks. I bought a certificate and signed the application with the bank and all other banks. Then I got the error message " missing permissions attribute in jar manifest". I added Permissions: all-permissionsto the manifest of my jar (and not to other external jars). And now I have an error Missing Application-Name manifest attribute for:...But I do not know what I need to specify as the name of the application. Is that the name of my can?

I tried to add to the manifest of all other jars "Permissions: all permissions", but then my application does not work at all.

thanks for answers

+3
source share
3 answers

. , MANIFEST.MF

+2

, ,

This was a quick fix, making sure that when exporting a jar file, I have "Export Java source files and resources." It was not even necessary to configure the manifest file at the end.

0
source

All Articles