How to specify vendor in JNLP file?

The public knowledge pool and discussion forum of the OWS community. Do not post confidential information here!
joelchrist
Posts: 1
Joined: 24 Aug 2020, 15:42

How to specify vendor in JNLP file?

Post by joelchrist »

Hi there!

I want to specify the vendor in the JNLP file, same way I can specify the version.

<resources>
<j2se version="1.8*"/>
</resources>

Thanks in advance!

Th3WalkingDad
Posts: 20
Joined: 01 Jun 2020, 14:20

Re: How to specify vendor in JNLP file?

Post by Th3WalkingDad »

Hi,

It's described there isn't it ? (JNLP syntax)

Stephan Classen
Posts: 232
Joined: 27 Mar 2020, 09:55

Re: How to specify vendor in JNLP file?

Post by Stephan Classen »

no, the vendor is an attribute which was introduced by open web start so you will not find it in any oracle documentation.

Basically you can add an attribute "vendor" to the <j2se> or <java> element:

<resources>
<j2se version="1.8*" vendor="Amazon"/>
</resources>

Post Reply