Here is error happened web.config
<system.serviceModel>
<extensions>
<behaviorExtensions>
<add name="TestExtension" type="Mynamespace.DependencyInjectionServiceBehavior,MyAssembly,Version=1.0.0.0,Culture=neutral,PublicKeyToken=null" />
</behaviorExtensions>
</extensions>
<behaviors>
<serviceBehaviors>
<behavior name="MyServiceBehavior">
<TestExtension/>
</behavior>
</serviceBehaviors>
</behaviors>
Notice there is not spaces between each of the type name elements. if you go and put the spaces in it works perfectly.
Mynamespace.DependencyInjectionServiceBehavior, MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null