I am not sure did anyone had this type of problem. Can you please give some clues with the approach i am trying in WCF.
I have say 100 dlls registered in server GAC. When my WCF client invokes with the name of the dll, WCF service should look in to the GAC using reflection and create instance for that and send it back to the client. I dont know anything about 100 dlls and all those are POCO objets.
I tried and and was getting errors at serialization of datacotract. Below is my datacontract.
[DataContract]
public class RDSContract
{
private Type _oType;
private Object _oObject;
private string _strOutput;
[DataMember]
public Type TypeProp { get; set; }
[DataMember]
public Object ObjectProp { get; set; }
[DataMember]
public string StrOutput { get { return _strOutput + " test"; } set { _strOutput = value; } }
}