1
vote
1answer
293 views
How to emit bare XML for a [WebGet] method in WCF?
How can I define a [OperationContract] [WebGet] method to return XML that is stored in a string, without HTML encoding the string?
The application is using WCF service to return XML/XHTML …
1
vote
Consume WCF with JavaScript but keep it generic enough for all clients?
First, since you don't want to depend on Microsoft Ajax ScriptManager, don't use <enableWebScript /> in the endpointBehaviors/behavior. It is Microsoft-specific JSON.
Fortunately, how …
0
votes
serializing generic XML data across WCF web service requests
The class returned by the method needs to implement IXmlSerializable.
public XmlContent XmlContent()
{
return new XmlContent();
}
[XmlRoot(ElementName = "div")]
public class XmlCo …
