• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Deploy JSF 1.2 application on JBoss 5.1.0 GA

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

I have a web application which I have developed using JSF, Spring and hibernate.
Till date i have been deploy it on Tomcat apache and it works fine.
But now i want to deploy it on JBoss 5.1.
I create a war file which contains jsf jar files in lib folder and put that war file in deploy folder.
But some of jsf functionality doesnt work specially ajax related.
Then i put jsf-impl.jar in lib folder of deploy folder that solves my problem.
But I dont want to copy jsf-impl.jar file into lib folder.

So does anyone has any solution for that?

Thanks,
Milin Shah
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JBoss AS already comes with a jsf-impl.jar file at server/xxx/deploy/jbossweb.sar/jsf-libs and your jsf-lib.jar file is probably interfering with it. Try completely removing your jsf-lib.jar file.
 
Milin Shah
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for your reply.
But i dont want to remove anything.
Is there any configuration which allows me to specify to use my own jars (jars in my war file)?

Thanks,
Milin Shah
 
reply
    Bookmark Topic Watch Topic
  • New Topic