If I try to validate the below JNLP file using JaNeLA I get the message
Resource type http://cvgsvr1/wildware of resource http://cvgsvr1/wildware is not one of the allowable types of jar.
This is the only message in red so I assume it means something is wrong.
My problem is I don't know what the message is referring to. Everything under resources is a jar or extension and the only place I see that URL is in the codebase or homepage.
Any idea what the problem might be?
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="6.0+" codebase="http://cvgsvr1/wildware/jar/" href="FormulaEditor.jnlp">
<information>
<title>WILDWare Formula Editor</title>
<vendor>WILD Flavors, Inc.</vendor>
<homepage href="http://cvgsvr1/wildware"/>
<description>Formula editor application</description>
<icon href="WILDWareIcon.jpg"/>
<icon kind="splash" href="WILDWareSplash.jpg"/>
<shortcut online="true">
<desktop/>
</shortcut>
</information>
<security>
<all-permissions/>
</security>
<update check="background" policy="always"/>
<resources>
<java version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
<jar href="WILDWareClient.jar" main="true"/>
<jar href="FinishedBeverageHelp.jar"/>
<jar href="FinishedFoodHelp.jar"/>
<jar href="SingleIngredientHelp.jar"/>
<jar href="jt400.jar"/>
<jar href="jxl.jar"/>
<extension href="mail.jnlp"/>
<extension href="help.jnlp"/>
</resources>
<application-desc main-class="com.wildflavors.wildware.client.editor.EditorFrame"/>
</jnlp>