1
vote
RightNow CRM XML API - Anyone familiar with it?
I don't know RightNow CRM, but according to the documentation you can send the XML requests using HTTP post. The simplest way to do this in .NET is using the WebClient class. Alternatively you migh …
0
votes
.NET XmlDocument LoadXML and Entities
Entity references are not encoding specific. According to the W3C XML 1.0 Recommendation:
…
0
votes
Xsd and inheritance
Simply add an with the required elements:
<xsd:complexType name="B">
<xsd:complexContent>
<xsd:extension base="A">
<xsd:sequence>
…
