I've decided to make my app java web start, i prepared the .jar file and .jnlp. Here is .jnlp:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+"
codebase="http://www.mypage.com/jar/"
href="BoxChat.jnlp">
<information>
<title>BoxChat</title>
<vendor>Kitty</vendor>
</information>
<resources>
<!-- Application Resources -->
<j2se version="1.6+"
href="http://www.mypage.com/jar/"/>
<jar href="chat.jar" main="true" />
</resources>
<application-desc
name="BoxChat"
main-class="chat.class"
width="320"
height="240">
</application-desc>
<update check="background"/>
</jnlp>
It crashes and says that i have no java 1.6 installed, but im SURE that i have it. What is the problem? Thanks for any replies.