Hi all,

I didn't find a neat way to return errors in the java part to the javascript 
remoting part. 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());
                });

If someone is interested, you can email me at heinzbeinz AT googlemail.com.

Greetz,
Nico

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3997347#3997347

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3997347
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to