Advanced Forum Search Results
-
In order to keep the same signatures on my WCF services, I've done something like what you said (with a GetLastError() Method) :
http://silverlight.net/forums/p/19875/94861.aspx#94861
Thanks
-
My solution is :
to memorize the WCF exception on the session and rethrow it ("as is" or a FaultException)
to implement a GetLastError method on my WCF service that gives the exception's details
to catch the ProtocolException on the SL2 client and recall the server to know what happened
Something like this ...