[JBoss JIRA] Created: (RF-4426) Framework: error parsing date header under WL 10.3
by Nick Belaevski (JIRA)
Framework: error parsing date header under WL 10.3
--------------------------------------------------
Key: RF-4426
URL: https://jira.jboss.org/jira/browse/RF-4426
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: WL 10.3/FF 3.01 as client
Reporter: Nick Belaevski
Assignee: Nick Belaevski
Fix For: 3.2.2
09.09.2008 4:50:59 org.ajax4jsf.resource.InternetResourceService serviceResource
WARNING: Error in parsing request If-Modified-Since header
java.lang.IllegalArgumentException: Bad date header: 'Tue, 09 Sep 2008 01:47:21 GMT'
at weblogic.servlet.internal.ServletRequestImpl.getDateHeader(ServletRequestImpl.java:983)
at javax.servlet.http.HttpServletRequestWrapper.getDateHeader(HttpServletRequestWrapper.java:83)
at org.ajax4jsf.resource.InternetResourceService.serviceResource(InternetResourceService.java:167)
at org.ajax4jsf.resource.InternetResourceService.serviceResource(InternetResourceService.java:141)
at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:500)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(Unknown Source)
at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years
[JBoss JIRA] Created: (RF-8496) rich:dataTable can not be put inside rich:dataList
by Dave Chen (JIRA)
rich:dataTable can not be put inside rich:dataList
--------------------------------------------------
Key: RF-8496
URL: https://jira.jboss.org/jira/browse/RF-8496
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Environment: RichFaces 3.3.1
Reporter: Dave Chen
test case: dataList1.jsp
<rich:dataList value="#{backingBean.beanList}" var="bean">
<h:form>
<rich:dataTable
var="book"
value="#{bean.books}">
<rich:columns value="#{bean.properties}" var="p">
<f:facet name="header">
<h:outputText value="#{p.name}"/>
</f:facet>
<h:outputText value="#{p.value}"/>
</rich:columns>
</rich:dataTable>
</h:form>
</rich:dataList>
javax.servlet.jsp.JspTagException: FOREACH_BAD_ITEMS
at org.richfaces.iterator.SimpleForEachIterator.toForEachIterator(SimpleForEachIterator.java:135)
at org.richfaces.iterator.SimpleForEachIterator.supportedTypeForEachIterator(SimpleForEachIterator.java:98)
at org.richfaces.taglib.ColumnsTag.prepare(ColumnsTag.java:539)
at org.richfaces.taglib.ColumnsTag.doStartTag(ColumnsTag.java:299)
at org.apache.jsp.test.dataList1_jsp._jspx_meth_rich_005fcolumns_005f0(dataList1_jsp.java:338)
at org.apache.jsp.test.dataList1_jsp._jspx_meth_rich_005fdataTable_005f0(dataList1_jsp.java:302)
at org.apache.jsp.test.dataList1_jsp._jspx_meth_h_005fform_005f0(dataList1_jsp.java:249)
at org.apache.jsp.test.dataList1_jsp._jspx_meth_rich_005fdataList_005f0(dataList1_jsp.java:207)
at org.apache.jsp.test.dataList1_jsp._jspx_meth_f_005fview_005f0(dataList1_jsp.java:141)
at org.apache.jsp.test.dataList1_jsp._jspService(dataList1_jsp.java:97)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:369)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
>From debug: #{bean.properties} is evaluated to be NULL.
each bean's properties can be different, so it can not be written as #{backingBean.properties}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years
[JBoss JIRA] Created: (RF-7235) tabPanel: valueChangeListener called in UPDATE_MODEL_VALUES phase instead of PROCESS_VALIDATIONS phase
by Vadim Mikovoz (JIRA)
tabPanel: valueChangeListener called in UPDATE_MODEL_VALUES phase instead of PROCESS_VALIDATIONS phase
------------------------------------------------------------------------------------------------------
Key: RF-7235
URL: https://jira.jboss.org/jira/browse/RF-7235
Project: RichFaces
Issue Type: Bug
Components: component-output
Affects Versions: 3.3.2.CR1
Reporter: Vadim Mikovoz
Assignee: Nick Belaevski
Precondition:
<rich:tabPanel value="#{custom.value}"
valueChangeListener="#{custom.valueChangeListener}"
immediate="false">
<rich:tab></rich:tab>
<rich:tab></rich:tab>
</rich:tabPanel>
In bean:
public void valueChangeListener(ValueChangeEvent e) {
System.out.println("***>> valueChangeListener");
}
1. Open test page
2. Switch between tabs
3. See server log
------------------------
Actual result: valueChangeListener called in UPDATE_MODEL_VALUES phase
Expected result: valueChangeListener should be called in PROCESS_VALIDATIONS phase
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 1 month