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 …
1
vote
How to Sort In-Memory XML with Microsoft XMLDOM?
I'm not familiar with any method other than using XSLT to sort XML.
Why is XSLT not an option? It's simple and should not a performance buster. You can cache the FreeThreadedDOMDocument obj …
3
votes
Possible to do xsl transform on dynamically generated xml?
There are three essential elements to running a multi-pass transform.
<xsl:import>
<xsl:apply-imports>
node-set() …
0
votes
Creating XSD schema for messages validation Problem
It could be the XML Schema targetNamespace (ref http://dev.ektron.com/kb%5Farticle.aspx?id=426). If the targetNamespace i …
0
votes
