[jbossseam-issues] [JBoss JIRA] Updated: (JBSEAM-633) remoting extension in handling exceptions on client side
Shane Bryzak (JIRA)
jira-events at lists.jboss.org
Thu Oct 2 20:37:21 EDT 2008
[ https://jira.jboss.org/jira/browse/JBSEAM-633?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Shane Bryzak updated JBSEAM-633:
--------------------------------
Fix Version/s: 2.1.0.GA
> remoting extension in handling exceptions on client side
> --------------------------------------------------------
>
> Key: JBSEAM-633
> URL: https://jira.jboss.org/jira/browse/JBSEAM-633
> Project: Seam
> Issue Type: Patch
> Components: Exception Handling, Remoting
> Affects Versions: 1.1.0.GA
> Reporter: Nico Gau
> Assignee: Shane Bryzak
> Priority: Optional
> Fix For: 2.1.0.GA
>
>
> Hi all,
> I don't really know what JIRA is by the way, so hopefully nobody is upset by this post. I first mailed Gavin but he told me I should put it in JIRA.
> I currently work on a project which uses Seam Remoting directly and I didn't find a neat way in handling errors on the client side as Exceptions are not propagated to it. Therefore I changed Seam to transmit all exceptions which can be handled in the javascript part via another callback. E.g.:
> Seam.Component.getInstance('userManager').currentUser(function(user) {
> alert("user: " + user);
> },
> function(ex) {
> alert("exception occured: " + ex.getMessage());
> });
> As the exception handler is optional, the change would not brake any client code. If you are interested in the change, you can reach me at heinzbeinz AT googlemail.com
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the seam-issues
mailing list