I have a service built using Preview 2 of the WCF REST starter kit, but I\'ve run into an issue with passing around XML-styled data in the calls. Here\'s my request object:<
Although this is an older post here are my 2¢. I addressed this issue by defining the data member as XmlElement.
[DataMember(Name = "MyCData")] public XmlElement MyCDataField { get; set; }