Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Invalid
-
Affects Version/s: 1.7
-
Fix Version/s: 1.7.1
-
Component/s: ICE-Components
-
Labels:None
-
Environment:N/A
Description
Following ice compoents have failed the test but it seems like a common problem across all ice components that support ACTION attribute.
1)selectInputDate
2)inputText
3)commandLink
4)commandButton
This works:
<navigation-rule>
<navigation-case>
<from-outcome>page2</from-outcome>
<to-view-id>/page2.jspx</to-view-id>
</navigation-case>
</navigation-rule>
This does not work:
<navigation-rule>
<from-view-id>/Calendar.jspx</from-view-id>
<navigation-case>
<from-outcome>page2</from-outcome>
<to-view-id>/page2.jspx</to-view-id>
<redirect/>
</navigation-case>
</navigation-rule>
NOTE: For 'h:commadLink' redirect with from-view-id worked fine.
1)selectInputDate
2)inputText
3)commandLink
4)commandButton
This works:
<navigation-rule>
<navigation-case>
<from-outcome>page2</from-outcome>
<to-view-id>/page2.jspx</to-view-id>
</navigation-case>
</navigation-rule>
This does not work:
<navigation-rule>
<from-view-id>/Calendar.jspx</from-view-id>
<navigation-case>
<from-outcome>page2</from-outcome>
<to-view-id>/page2.jspx</to-view-id>
<redirect/>
</navigation-case>
</navigation-rule>
NOTE: For 'h:commadLink' redirect with from-view-id worked fine.
Activity
Mandeep Hayher
created issue -
Ken Fyten
made changes -
Field | Original Value | New Value |
---|---|---|
Fix Version/s | 1.7.1 [ 10122 ] | |
Assignee Priority | P2 | |
Assignee | Mircea Toma [ mircea.toma ] |
Mandeep Hayher
made changes -
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Invalid [ 6 ] |
Ken Fyten
made changes -
Status | Resolved [ 5 ] | Closed [ 6 ] |
Assignee Priority | P2 | |
Assignee | Mircea Toma [ mircea.toma ] |
Marking issue as in valid. Reason for failure was the missing configuration in the web.xml file.
<servlet-mapping>
<servlet-name>Persistent Faces Servlet</servlet-name>
<url-pattern>*.jspx</url-pattern>
</servlet-mapping>