Ivan,
when you enable the 'java console' in Java Web Start->Preferences->Advanced->Show Java Console, you'll notice that you run into a java.security.accessControlException.
To avoid that, sign your jar file(s) and add the following to your jnlp file :
...
<security>
<all-permissions>
</security>
...
and it will work as expected!
Regards,
Patrick