Hosting jnlp applications on internet

Hi,

I would like to share my java application packed as jnlp application.

I tried to host it in free web hosting sites like geocities, tripod, bravenet.

But none of them seem to regonize jnlp extn and automatically open with javawebstart.

Are there any free java application hosting sites (while allows to host jnlp applications) available..?

Thanks a lot,

Raja.

[405 byte] By [e_raja_sekara] at [2007-10-3 4:10:17]
# 1

> But none of them seem to regonize jnlp extn and

> automatically open with javawebstart.

That's not how it works. The JNLP file is served like any other file (that is, unless the hosting site is blocking it?). Once the file is on the client side, THEN it will start up and look for the supporting jars/files (assuming the client has Java and Web Start installed)

SoulTech2012a at 2007-7-14 22:10:31 > top of Java-index,Desktop,Deploying...
# 2

> > But none of them seem to regonize jnlp extn and

> > automatically open with javawebstart.

>

> That's not how it works. The JNLP file is served like

> any other file (that is, unless the hosting site is

> blocking it?). Once the file is on the client side,

> THEN it will start up and look for the supporting

> jars/files (assuming the client has Java and Web

> Start installed)

Not true. You need to have the mime-type set up on the web-server. Maybe you can request that the mime-type be set up.

See http://java.sun.com/docs/books/tutorial/deployment/webstart/deploying.html#server

Caffeine0001a at 2007-7-14 22:10:31 > top of Java-index,Desktop,Deploying...
# 3
Take a look at http://lopica.sourceforge.net/faq.html#apachemime
Caffeine0001a at 2007-7-14 22:10:31 > top of Java-index,Desktop,Deploying...
# 4
> Not true. You need to have the mime-type set up on> the web-server. Maybe you can request that the> mime-type be set up. I've never had to do this...
SoulTech2012a at 2007-7-14 22:10:31 > top of Java-index,Desktop,Deploying...
# 5
newer server have this configured out of the box
kcwilsona at 2007-7-14 22:10:31 > top of Java-index,Desktop,Deploying...
# 6
recent versions of javaws also do not need the mime type of a jnlp file to be returned as aapplication/x-java.jnlp.If the browser is configured to launch javaws for ".jnlp" extensions, you can host jnlp files on servers without that mime type configured..
dietz333a at 2007-7-14 22:10:31 > top of Java-index,Desktop,Deploying...