I have a silverlight application with a service reference back to a Silverlight-Enabled WCF service. When I try to "new up" the WCF objects I get an exception about not having a constructor when I do the following.
Activator.CreateInstance(type, true);
However; this works:
Activator.CreateInstance(type);
Any idea why?