Skip to Main Content

Application Development Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Issues - JSF 1.1 + RichFaces 3.1.3 + Weblogic 10.3 Portal

692167Mar 24 2009 — edited Mar 24 2009
I am trying to deploy a simple JSF portlet (JSF 1.1 - Sun RI 1.1 Implementation - RichFaces 3.1.3.GA).

Following is the JSP snippet:

<f:view>
<jsf-naming:namingContainer id="simplestJSFportlet">
Put your faces content here
<h:form id="form1">
<h:inputText id="userName" value="#{form.userName}">
<a4j:support event="onblur" action="#{form.validateUserName}" id="arjsup1"/>
</h:inputText>



<h:commandButton action="#{form.validateRegister}" id="sub" value="Submit"/>

Hello! <h:outputText id="usernameId1" value="#{form.userName}"/>.How are you?

<rich:calendar id="cal1"></rich:calendar>

</h:form>
</jsf-naming:namingContainer>
</f:view>

When I change the value for javax.faces.STATE_SAVING_METHOD as client - I get the com.sun.faces.saveStateFieldMarker displayed on JSP.

On the other hand when I change it to server - I get a null pointer exception:

java.lang.NullPointerException
at org.ajax4jsf.context.AjaxContextImpl.getSubmittedRegionClientId(AjaxContextImpl.java:574)
at org.ajax4jsf.context.AjaxContextImpl.isAjaxRequest(AjaxContextImpl.java:474)
at org.ajax4jsf.context.AjaxContextImpl.isAjaxRequest(AjaxContextImpl.java:466)

Any pointers how to solve this? Does anyone know any known compatibility issues with JSF 1.1 + WebLogic 10.3 Portal + Rich Faces (any version)

Thanks
Bond8135

Edited by: bond8135 on Mar 24, 2009 1:02 AM

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Apr 21 2009
Added on Mar 24 2009
0 comments
761 views