| Thread | Last Post | Replies |
|
| XmlDocument and XmlNode | 25 Nov 2004 08:37 GMT | 3 |
I've loaded an XmlDocument from a file XML: this file has many similar XmlNode and it is difficult to select them by using SelectSingleNode of the object XmlDocument. I've this question: is it possible to identify each XmlNode of the
|
| Access Denied when trying to write to file via Web Service | 24 Nov 2004 20:23 GMT | 3 |
Forgive me if this seems trivial but I cannot seem to find an answer. For testing purposes, one of my methods in my Web Service writes to a file (at least tries). I am using the following line of code to create the text file: Dim sw As StreamWriter = New StreamWriter("c ...
|
| XmlTextWriter and QuoteChar ??? | 24 Nov 2004 20:03 GMT | 1 |
I'm trying to specify single-quotes to be used in xmlAttributes as follows : XmlTextWriter writer = new XmlTextWriter (filename, null); writer.QuoteChar = (char)39; --> but he still generates double quotes ???
|
| XmlSchema: get basic type of XmlSchemaAttribute? | 24 Nov 2004 18:20 GMT | 2 |
I'm finding the XmlSchema object model very hard to follow :-( I've figured out by trial and error how to do most things I need, but this one has me beat. Suppose my schema has a simple type defined as follows:
|
| Swap pointers? | 24 Nov 2004 16:48 GMT | 1 |
is there a method somewhere in the framework for swapping two pointers?
 Signature Daniel A: Because it messes up the order in which people normally read text.
|
| SelectSingleNode not finding nodes | 24 Nov 2004 15:57 GMT | 6 |
I have the following Visual Basic .NET code in an ASP.NET project: ' ... Dim xdStructure As XmlDocument Dim xnStructureRoot As XmlNode
|
| XPath and Serialization | 24 Nov 2004 11:22 GMT | 1 |
I am reading values from an Xml file using XPathDocument / NodeIterators etc. My question is, is it possible to retrieve the XML for a node as a string so that i can use XML Serialization to instantiate an object
|
| xslt stylesheets as assembly resources? | 24 Nov 2004 08:48 GMT | 2 |
I like the idea of doing transforms on XML data via stylesheet, but I don't like having to manage lots of .xslt files. Is there a standardized approach to storing xslt strings in a .net application?
|
| XML formatting question | 24 Nov 2004 05:53 GMT | 6 |
After I've constructed an XmlDocument object composed of XmlNodes, I send the actual InnerXml contents to a server where my XML is processed. However, elements that have no InnerText end up looking like this: <PartMessage MessageText="INVENTORY REQUEST" MessageKeyword="REASON" />
|
| XslTransform in msword application with images | 23 Nov 2004 18:21 GMT | 2 |
I transform XML data in an OutputStream which is open as a word document. All works fine excepted the images defined in the xsl file which are html links (src="images/image1.jpg"). So, when I save the word document in a particular place, the image can't be
|
| Validating Xml with DTD and XmlValidatingReader | 23 Nov 2004 15:03 GMT | 1 |
I'm reading in an xml-file that has to be validated by it's dtd (code below). This works fine, except from some weird behaviour. <!ELEMENT STRUCT (FIELD+)> <!ATTLIST STRUCT
|
| How to tell the XmlSerializer to ignore all namespaces | 23 Nov 2004 14:40 GMT | 4 |
Is there a way of telling the XmlSerializer to ignore all namespaces when deserializing. I'm using XmlAttributeOverrides, but I have to do it for every class the OutputObject usses. Is there an
|
| posting XML | 23 Nov 2004 08:56 GMT | 1 |
I am developing two asp.net web projects. When the last page of the first project is done, it redirects to the first page of the second project. However, I need to transfer some data to the second project and I want to
|
| SelectSingleNode question | 23 Nov 2004 08:55 GMT | 2 |
I am somewhat new to extracting data from an XML document in .Net. My document looks like this: <?xml version="1.0" encoding="UTF-8"?> <RMA-Standard>
|
| XSLT output and restricted encoding in Widbey | 22 Nov 2004 23:19 GMT | 2 |
In .Net 1.1, System.Xml.Xsl.XslTransform cannot output directly a document in an encoding that cannot represent all the characters used (e.g. write in us-ascii for compatibility, and convert all non-ascii chars to entities). While it can be worked around (by defining a TextWriter ...
|