Hi,

I have some questions about handling exceptions in the presentation layer
(JSPs).

I am using a set of JavaBeans/actions (extended from ActionSupport) to
display the data in my page. Here is a code snippet.


<webwork:action name="'com.blacksign.emerio.view.LocalServiceBean'"
id="localServiceBean">
 <webwork:param name="'serviceId'"
value="@orderBean/simpleOrder/service/id"/>
</webwork:action>

<webwork:iterator value="@localServiceBean/directService/items">
  ....
</webwork:iterator>


OrderBean.getSimpleOrder() interogates a session bean to get the data so it
is possible to have system/application/communication exceptions. I looked
into the WebWork code and it seems that the exceptions are ignored and null
is returned (ValueStack:370).

If my actual design is wrong, what is the recomanded way to display data and
to handle the exceptions ?

Regards,
Bogdan


_______________________________________________
Webwork-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webwork-user

Reply via email to