I use some common classes as data containers, and use them to transfer data to and from the wcf service. Due to the way WCF manages client-side generic names in a class named "ListOfBlah231546797646", I add a link to the actual assembly as "KnownType".
Silverlight should consume these services, but can only refer to Silverlight assemblies. I moved the classes to my "silverlight" assembly and can refer to them from silverlight, but when the service is running, I get the error "I cannot find the assembly reference" on the System.Runtime.Serialization assembly.
It turns out that Silverlight has its own set of binaries, all with a version 2.0.5.0 tag. They are not in the GAC service, and therefore an exception is thrown.
Because of this, I cannot reference my Silverlight Assembly from my service code. Is there a way around this problem by making these two options compatible with each other when they are serialized?
This question is similar, but none of the answers help. Any ideas? similar question
Matthew timbs
source share