You have your error view returning the same action that returned the error?

This is most probably causing you an infinite loop.  Remove the lines like:

<view name="error">userregistration!default.action</view>

And instead have your view as a JSP (or at least something that doesn't have the 
possibility of looping forever).

Cheers,
Scott


"Manuel Alzola" <[EMAIL PROTECTED]> wrote ..
> Hello, I have the following problem
> 
> 'Exceeded maximum number of chained actions' when I touch a reference
> like this:
> 
> <a href="<webwork:url 
> page="reportdetailaction!default.action"></webwork:url>?trID=<webwork:property
> value="id"/>">
> <webwork:property value="date"/>
> </a>
> 
> My actions.xml only has 4 actions:
> 
> <actions>
>    <action name="com.nemotec.radiology.partners.actions.UserRegistration"
> alias="userregistration">
>         <view name="success">validregistration.jsp</view>
>         <view name="input">userregistration.jsp</view>
>         <view name="error">userregistration!default.action</view>
>    </action>
>    <action name="com.nemotec.radiology.partners.actions.ReportsAction"
> alias="reportsaction">
>         <view name="success">reports.jsp</view>
>         <view name="input">reports.jsp</view>
>         <view name="error">reportsaction!default.action</view>
>    </action>
>    <action name="com.nemotec.radiology.partners.actions.ReportDetailAction"
> alias="reportdetailaction">
>         <view name="success">reportDetail.jsp</view>
>         <view name="input">reportDetail.jsp</view>
>         <view name="error">reportdetailaction!default.action</view>
>    </action>
>    <action name="com.nemotec.radiology.partners.actions.UsersReportAction"
> alias="usersreportaction">
>         <view name="success">users.jsp</view>
>         <view name="input">users.jsp</view>
>         <view name="error">usersreportaction!default.action</view>
>    </action>
> 
> </actions>
> 
> Thanks in advance:
> Manuel
> 
> 
> 
> _________________________________________________________________
> MSN Fotos: la forma más fácil de compartir e imprimir fotos. 
> http://photos.msn.es/support/worldwide.aspx
> 
> 
> 
> -------------------------------------------------------
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> _______________________________________________
> Opensymphony-webwork mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork

Reply via email to