tags:

views:

279

answers:

3

Hello, I'm running Java Facets on a IBM WebSphere 6.1. I'm getting this strange error message when I start the server:

[2009-07-21 15:49:35:784 CEST] 00000015 ServletWrappe E SRVE0100E: Did not realize init() exception thrown by servlet Faces Servlet: java.lang.IllegalStateException: ApplicationAssociate ctor not called in same callstack as FacesConfigParser.contextInitialized().

Does anyone have an idea what's wrong?

A: 

I am getting the same error... an application working well with WAS 5.1 when migrate to WAS 6.1 I get this issue. Anyone have a solution? Changing the application class loader policy helps in some cases. In my case I have the web proj depending on another project B. Irrespective of the jsf version this proj B has, I get this error. any help is appreciated

cheers mak

mak
In the future, please post questions by `Ask Question` button. Do not post questions as an `Answer`. You're free to include links to questions you found but did not answer your own question.
BalusC
A: 

Most probably you have the different versions of the JSF in both the WEB-INF/lib and the Websphere/lib and/or the Websphere's classloading policy is been set to "module" instead of "application".

BalusC
A: 

WAS 5.1 did not have a JSF implementation but added Sun JSF 1.0 to WEB-INF/lib. WAS 6.1 ships Sun JSF 1.1_01 with IBM fixes directly within the server.

Remove the Sun JSF 1.0 from WEB-INF/lib (by following the migration guidelines from RAD7).

Michael