aspose file tools
The moose likes JSF and the fly likes Jsf + tiles + trinidad (Is it posible to get this work?) Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSF
Reply Bookmark "Jsf + tiles + trinidad (Is it posible to get this work?)" Watch "Jsf + tiles + trinidad (Is it posible to get this work?)" New topic
Author

Jsf + tiles + trinidad (Is it posible to get this work?)

Guillermo Tonello
Greenhorn

Joined: Aug 15, 2008
Posts: 2
Hello. I have problems with my application. I�m using:
Jsp
jsf 1.1_02
tomahawk 1.1.6
Tiles 2.0.6
trinidad-1.0.8.

I have to use dialogs so I try to open a popup dialog using navigation-rules:
<tr:commandButton text="Detail" action="dialog:showPopup"/>
...
<navigation-rule>
<from-view-id>/*</from-view-id>
<navigation-case>
<from-outcome>dialog:showPopup</from-outcome>
<to-view-id>/showPopup.layout</to-view-id>
</navigation-case>

tiles-def.xml:
<definition name="showPopup.layout" extends="popUp.layout">
<put-attribute name="body" value="/filtro/popUpTipoOT.jsp"/>
</definition>
...

but it does not open! and the console shows this message:
org.apache.tiles.web.util.TilesDispatchServlet::doPost - Tiles dispatch request received. Redirecting POST to GET.

Faces-config.xml is configured like this:

<default-render-kit-id>org.apache.myfaces.trinidad.core</default-render-kit-id>
...
and web.xml is configured just like it says on My Faces Trinidad official site.


my questions are:
-Is it posible to get this work?
-Does it exist any issues when you work with tiles, jsp, jsf and trinidad all together?

Best regards,

guillermo_arg.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Jsf + tiles + trinidad (Is it posible to get this work?)
 
Similar Threads
java.lang.IllegalStateException: using sendRedirect()
FacesContext is null inside managed bean
JSF1.1 and shale-tiles-1.0.4 integration problem
Clemen
Help. commandButton does not invoke Bean's method.