Re: How to make Jogl work with Janel?
Posted by
Sven Gothel on
Jul 10, 2012; 1:27pm
URL: https://forum.jogamp.org/How-to-make-Jogl-work-with-Janel-tp4025470p4025491.html
On 07/10/2012 01:29 PM, Cousken [via jogamp] wrote:
> Hello Sven!
>
> Tanks for your reply! The wiki page you tipped me about was really helpful in
> understanding how it all works instead of just solving specific issues. I
> haven't found it before, that's why i turned to more experienced people via
> this forum. Now my development process should go much smoother, thanks again :)
>
> I've managed to set up my jnlp file just fine now, at least from the desktop.
> Once i double klick it, it launches my application. However clicking on the
> Launch button on the web page still only opens the Jnlp file as XML, is that
> an issue with the html then?
That's your web server hasn't setup the mime-type right
or your browser doesn't know how to handle it.
If the JNLP file doesn't have the right mime type
the browser doesn't know what to do. Mime type:
application/x-java-jnlp-file JNLP
<
http://stackoverflow.com/questions/33751/how-do-i-add-a-mime-type-to-htaccess>
Browser shall launch javaws w/ the above mime type.
~Sven