websphere 7 - JSF tag not rendering after migrating the application to WAS 7 -


i have been working on migration or jsf application 6.1 7. application uses jsf 1.1. made following changes in web.xml make code compatible jsf 1.1 per forums referred.

<!--  added compatibility jsf 1.1 on was7 --> <context-param>       <param-name>com.sun.faces.enablerestoreview11compatibility</param-name>         <param-value>true</param-value>   </context-param>      <!-- removed jsf 1.1 compatibility on 7 <listener>     <listener-class> com.sun.faces.config.configurelistener</listener-class> </listener> --> 

however, there pages contains <hx:jsppanel> , other hx components, doesn't render correctly. appears

!!jsftagmarker!!!!jsftagmarker!! !!jsftagmarker!!!!jsftagmarker!!  

could please advise how issue can resolved? need upgrade jsf 1.2 or jsf 2.0 resolve issue? possible resolve issue without upgrading jsf?


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -