I\'ve got a simple WCF service that has worked fine while I\'ve been testing on my dev machine.
Now I\'ve moved the web service to a web server, and I\'m running the
Don't define MyClass as Serializable. Mark it as [DataContract] and it's properties as [DataMember].
If you can't, well... I think I've seen that question lying around here as well.
EDIT
While there is nothing inherently blocking [Serializable] will cause your serialization to perhaps process more than it can handle.
EDIT 2
marc_s's comment got it right