I'm running into a stumbling block on getting my object passed down to my client.
I have added [DataContract] and [KnownType] attributes to my class on the service, and created a property with {get; set;} and [DataMember] attribute (the property is the object I want to pass down).
The Service builds and deploys just fine and when I update the proxy on my client it works fine as well, however, I can't seem to cast my return value as the object type.
I'm assuming I need to add a step to deserialize the object, but I'm not sure how to do that.
any advice would be greatly appreciated.
Edit: FYI, my object that I'm passing down is a List<> and it looks like (according to VS) that it needs an array. I converted the List on the client side to an array, then back to a list and it appears to be accepting that in VS, but it's still not working....