Greetings All. I'm migrating an existing webapp to Struts. An Action tag in my menu is getting blown away. The application is in the middle of migration, so there are some struts-enabled jsps and some vanilla jsps.
On first navigation to the menu, the code works fine. After navigating to a non-struts page, then back to the menu, the url is corrupted - as if the /viewGroupQuery link were redefined to "". The Action is defined at session scope. The corruption of the Action remains across multiple sessions. I'm using Struts 1.2.9 w/ Tiles. Has anyone seen this behavior? Thanks in advance, -Brian --- code snippets --- <struts-config snippet> <action path="/viewGroupQuery" type="org.apache.struts.actions.ForwardAction" scope="session" parameter="page.group.query"/> </struts-config snippet> <menu html snippet> <li> <% if (activeItem.equalsIgnoreCase("group.query")) { %> <a class="active"> <img src="/dat/images/group-query-icon.gif" height="15" width="15" alt="" /> <span class="label">Query a Group</span> </a> <% } else { %> <html:link action="/viewGroupQuery"> <img src="/dat/images/group-query-icon.gif" height="15" width="15" alt="" /> <span class="label">Query a Group</span> </html:link> <% } // END GROUP QUERY ACTIVE ITEM CHECK %> </li> </menu html snippet> -- Brian M. Long Middleware Services, Virginia Tech "Ancora Imparo (I am still learning)" - Michaelangelo, age 87 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]