I'm working on a webapp which combines PrimeFaces 1.1 and RichFaces 3.3.3 in a JBoss 4.2.3 server, so this application uses JSF 1.2.

Inside this app I have a webpage where I combine different components from these two libraries. My problem consists in: initially this page works fine, but there is a rich:tree component included in this page which is not rendered after a request. All other components are rendered and updated correctly. The server throws the following exception after any request:

java.lang.IllegalStateException: Application was not properly initialized at startup, could not find Factory: javax.faces.application.ApplicationFactory
javax.faces.FactoryFinder.getFactory(FactoryFinder.java:267)
org.richfaces.skin.SkinFactoryImpl.processProperties(SkinFactoryImpl.java:239)
org.richfaces.skin.SkinFactoryImpl.buildSkin(SkinFactoryImpl.java:278)
org.richfaces.skin.SkinFactoryImpl.getSkinByName(SkinFactoryImpl.java:133)
org.richfaces.skin.SkinFactoryImpl.getSkin(SkinFactoryImpl.java:150)

... etc

Thanks in advance!

FYI: I need to use JSF 1.2 because this app uses the WSDC library from JADE (multiagent system) and I'm not able to use WSDC library in a JSF 2.0 environment. This library allows to invoke web services (which represents JADE agents services) in a dynamic way.

link|improve this question
I am curious why a web service interface library is incompatible with JSF2. Are there web based administration tools for this that require JSF 1.2? If so then the fact that you use JBoss 4.2.3 explains why you can't use both in conjunction. JBoss comes bundled with JSF 1.2 and to run JSF 2 applications on the same server instance would require disabling JSF 1.2 for other applications. Problem is that the 1.0 versions of Primefaces were terribly buggy and nearly unusable, but then the error suggests a problem with Richfaces. – maple_shaft Feb 6 at 12:05
1  
Thanks maple_shaft! I can't answer why WSDC (JADE add-on) is not compatible with JSF. Finally the solution for my problem is to drop WSDC and use other similar library instead. Selected library is Wise (www.jboss.org/wise). I've tested in my webapp (JSF 1.2) and it works fine. Now I can call web services dynamically as I wanted. Maybe I'll try this library using JSF2, which will allow me to use PF 3 and RF 4. – Andrew R Feb 6 at 21:40
That would be a good approach. Anything that can only run on JSF 1.2 is already obsolete. – maple_shaft Feb 6 at 23:47
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.