I m trying to catch regular exceptions from a wcf servie in a silverlight client application. For that I've included the respective changes in wcf service as given in
http://msdn.microsoft.com/en-us/library/dd470096(VS.96).aspx
But when I configure behavior extension and use the same in end point behavior the error mentioned above is coming up and the service is not able to run due to this error.
I am putting here my configuration. Kindly suggest me how can I solve this?
<extensions>
<!--Add a behavior extension within the service model-->
<!-- Here SilverlightFaultBehavior is a class in AppServiceLib namespace -->
<behaviorExtensions>
<add name="myFaultExtension"
type="AppServiceLib.SilverlightFaultBehavior,AppServiceLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"/>
</behaviorExtensions>
</extensions>
<endpointBehaviors>
<behavior name="myFaultBehavior">
<**myFaultExtension**/>
</behavior>
</endpointBehaviors>
Thanks in advance