| Thread | Last Post | Replies |
|
| Troubles with editing XSLT doc | 17 Oct 2003 17:57 GMT | 4 |
Hy I'm trying to edit a XSLT document, just like I'm editing a XML document
(Im trying to make a new xsl:template tag here ) Dim myXml As New XmlDocument()
|
| XSD to XML transformer | 17 Oct 2003 08:14 GMT | 2 |
Because XSD (XML Schema Document) is a definition of the XML document, there must be a parser that can read a XSD file and give the complete XML file as a result. Is there something like this, or do I have to create it by
|
| XML validation Problem | 16 Oct 2003 16:41 GMT | 3 |
My code won't validate the xml document. I'm using vb.net. In the IDE I can use the schema to validate the XML. But when I use XmlValidatingReader in code it does not pick any restrictions.
|
| InnerXml | 16 Oct 2003 14:51 GMT | 3 |
i despair on one simple problem (maybe it's to simple???) I have the string txt = "hallo</hmm>" or txt = "am&24" and want to pass it to the XmlNode InnerXml property myNode.InnerXml = txt //error
|
| Compressing xml file | 16 Oct 2003 12:52 GMT | 1 |
I am using sharpziplib ti compress & zip an XML file. But the compression ration is very bad for this utility compared to that i do with winzip. Any idea how to integrate winzip with our VB.net application to compress xml files. Or is there any other utility to do the kob
|
| trying to instantiate XPathDocument with MemoryStream | 16 Oct 2003 03:19 GMT | 2 |
I am trying to instantiate an instance of XPathDocument after serializing XML into a memory stream. Here is my method that uses XmlSerializer public MemoryStream SerializeXMLSelectedApplication() {
|
| Making sure a replica of another node is not saved in the xml document | 16 Oct 2003 03:05 GMT | 1 |
How do I iterate through the nodes of an xml file to check if the newly added node is a replica of another node(incl. innertext and each element of the node and values thereof) ? If there newly added node is a copy of another node I would then delete the new node and save the xml ...
|
| Schema Validation | 15 Oct 2003 21:54 GMT | 3 |
I have an XML document that contains the xsi:noNamespaceSchemaLocation attribute giving the location of the XSD file to use for validating it. I created an XmlReader on the XML file. I then created an XmlValidatingReader based on the XmlReader which I use to read the file with
|
| XMLSerializer & Inheritence | 15 Oct 2003 21:44 GMT | 3 |
Help! I want to serialize mu C# objects uzing the xmlserializer class. It works well whem all my classes are flat, but when I use inheritence to split the data and
|
| Getting exception "The node to be inserted is from a different document context." | 15 Oct 2003 15:17 GMT | 2 |
I've got the following piece of code that's causing me a bit of a problem XmlDocument doc = new XmlDocument (); XmlNode rootNode = doc.CreateNode (XmlNodeType.Element, "usersettings", null);
|
| Writing to one trace file from Web Service | 15 Oct 2003 08:57 GMT | 2 |
Presumably a trivial question... I want to write trace information from a web service to a log file using the Trace Class. Is this possible without closing and opening the Trace in every single web method?
|
| HTML to XML | 15 Oct 2003 02:56 GMT | 2 |
I use a httpWebrequest to download an html page as string, then I would like to have xml document, but html and xml are "incompatible" There is a way to convert html to xml?
|
| How: Setting UTF8 as an application wide text encoding format | 15 Oct 2003 02:43 GMT | 3 |
XmlTextReader myXmlReader = new XmlTextReader(args[0]); string en = myXmlReader.Encoding.EncodingName; //Console.WriteLine(x); Error:
|
| How to conume xml sent over http post | 15 Oct 2003 01:11 GMT | 4 |
How do I consume xml and send back an xml response not using SOAP in an asp.net aspx page using vb.net?
|
| Another NameTable Question | 14 Oct 2003 20:15 GMT | 3 |
I am trying to work out the best way to use the NameTable class in my C# application. I am assuming that getting/adding a string to the nametable has the same overheads as comparing a string normally, so I have created a class which
|