Hi,
When you have the forwards first
struts will search in the <action> and if it doesnt find it there then it will look for global forwards.
In case you want to have the global forward, then you have to change the name of the forward path in your action, or omit it altogether.
<global-forwards>
<forward name="searching" path="searching_common.jsp"/>
</global-forwards>
<action path="/myURL" scope="session" type="myAction">
<forward name="searching_new" path="/searching.jsp"/>
</action>[/