>version="1.5.0+"
should be: version="1.5+" (dunno if it works then)
> Is it by the way possible to test one's JNLP starter file locally?
Yes. It's a piece of cake. All you need is a webserver

Well, don't be afraid my friend. It's really easy with xampp.
http://www.apachefriends.org/xampp-en.htmlThat's apache with php, mysql and perl. It's a complete package with an installer. Just run it et voila you have a running webserver

Create a ".htaccess" file in the "htdocs" directory and put this line into it:
AddType application/x-java-jnlp-file .jnlp
*or*
(preferred way to do it)
Edit <xampp>/apache/conf/httpd.conf
Search for "AddType" and add the flowing line:
AddType application/x-java-jnlp-file .jnlp
That's it
