• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Dynamic JNLP not working with JBoss?

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Guys,

I have a Jsp page containing dynamic jnlp info like this:



The test.jar file is put under the root web folder. It's working with Tomcat (Tomcat 5.5), but not with JBoss (only tested with JBoss 4.0.5 and JBoss 4.2.0). The error is

java.io.FileNotFoundException: http://localhost:8080/test.jnlp

Can anyone please enlighten what I should do?

Thanks!
 
Jingwei Yang
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
By the way, I tried the servlet way suggested by this post: https://coderanch.com/t/200653/JNLP-Web-Start/java/create-Dynamic-jnlp-files. But it has no success with JBoss either.
 
Jingwei Yang
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Problem resolved. The optional attribute "href" of the tag jnlp shouldn't be supplied.

<jnlp spec="1.0+" codebase="http://<%= request.getServerName() %>:<%= request.getServerPort() %>" >
 
Barry's not gonna like this. Barry's not gonna like this one bit. What is Barry's deal with tiny ads?
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic