In my wcf methods am catching methods at the top teir only. So if any exceptions are thrown im my methods below the top tier they will be automatically causght as an ApplicationException.
I want to add a property or find a way to hold the inputData of the method that crashed, so when the ApplicationException is causght is has the methods inputData attached to it.
Is this scenerio possible?
I am using IErrorHandler to catch the exceptions. How do I extract the inputData from the method that crashed out of it?
if you turn trace on, you can get this data. Otherwise you need to catch the exception in each WCF method and save any data into a custom exception you would then use in an IErrorHandler