t:jscookmenu randomly stopped working

Hi all,

I recently began a program using jsf and one of the components I am using is the jscookmenu. Originally it had been working but then I added some other features and it stopped working. I then removed everything I had added and it is not working still. Here is the code for the menu:

<h:form>

<input type="hidden" name="jscook_action" />

<t:jscookMenu layout="hbr" theme="ThemeOffice">

<t:navigationMenuItem itemLabel="Reports">

<t:navigationMenuItem itemLabel="Work Item Reports" action="#{navBean.goToSelectReport}"/>

</t:navigationMenuItem>

</t:jscookMenu>

</h:form>

The backing bean code:

public String goToSelectReport() {

System.out.println("At least it is running the validation method");

return ("goToReportSelect");

}

and the pertinent faces-config code:

<navigation-rule>

<from-view-id>*</from-view-id>

<navigation-case>

<from-outcome>goToReportSelect</from-outcome>

<to-view-id>/pages/selectReport.xhtml</to-view-id>

</navigation-case>

</navigation-rule>

The .xhtml is because I am using facelets. I am using tomahawk 1.1.5. The problem seems to be the action is never being called because the System.out.println string does not appear in the stdout log.

Thanks for any help you can give

[1469 byte] By [jco1323a] at [2007-11-27 8:01:57]
# 1

If anyone else has had this issue, I "fixed" mine. I temporarily moved my program to a different, older server than the one I usually use because that one was not working. Apparently the older server just couldn't handle the jscookmenu because as soon as I moved the program back to the original server it started working again

jco1323a at 2007-7-12 19:44:04 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...