Hi,
In my plugin code ,there are several calls between actionscript(Our View) and java(Service layer) along the lines of the Chassis example (createChassis/deleteChassis/editChassis etc.). However, the only difference is that in our service layer, we may be throwing exceptions and I don't see that happening in the Chassis/Rack examples. So the callback in actionscript gets called asynchronously to update the UI on successful method-return which is good; However if something fails in the java layer, I am wondering how I can communicate that exception over to the actionscript side. The MethodReturnEvent reference carries an event.error but that appears to have no knowledge about what really happened on the java service layer and I could not figure out how to pass that information back to actionscript (on failure). Before building another layer to manage exceptions, I was wondering if there were any recommendations from the webclient team about how to handle java exceptions and pass information back from java to actionscript to further handle the failure in actionscript (perhaps show an error dialog saying something went bad and how to fix it).
Thank you.