I have the following action:
<action name="#dash_creds" class="AccountDashboardActionBean">
<result name="success" type="stream">
<param name="contentType">application/json</param>
<param name="inputName">jsonInputStream</param>
</result>
</action>
I want Struts to accept the #
symbol in my URL or to ignore it, for now it does not call my action.
The special character
#
is not allowed as a part of the action name. If you want to build url using the action name, you can use url tag.