[EMAIL PROTECTED] schrieb: > Hi, > I'm using Tomahawk 1.1.6 on WebSphere 6.1 and does work correctly. But > on the log I found: > "Both MyFaces and the RI are on your classpath. Please make sure to use > only one of the two JSF-implementations." > I know that WAS has a JSF 1.1 implementation (Sun implementation) and my > application classloader policy is PARENT-LAST. The question is: > The log has an "ERROR" severity, so can this cause some problem? >
Having both on the classpath *is* a serious problem. You do need to resolve this. Setting the classloader policy cannot solve this problem; that can change which is *first*, but cannot make one of them invisible. So you will need to either remove the websphere implementation, or overwrite it with the myfaces one, or use some websphere-specific feature (if one exists) to make the "built-in" lib invisible. There is some information on the wiki about configuring various containers. The wiki can be found here: http://wiki.apache.org/myfaces/ Regards, Simon

