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

link|improve this question

41% accept rate
feedback

2 Answers

You might be getting this error in Visual Studio when creating the WCF config file, since the VS editor doesn't know about that extension.

But does this happen at runtime as well??

How and where are you using this behavior? On the server side? On the client side? BotH?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.