| Thread | Last Post | Replies |
|
| Deserializing of a XML string as a object does not work with .NET 1.1 SP1 anymore | 21 Oct 2004 17:41 GMT | 3 |
We have problems deseralizing objects previously serialized as XML. This did work fine with .NET 1.1 but since we have installed SP1, deserializing fails (but serializing works). The error occurs within the following line "return formatter.Deserialize(xmlReader) as
|
| HOW TO CHECK WHETHER A NODE EXIST? | 21 Oct 2004 15:22 GMT | 1 |
in my ASP.NET (C#) application I would like to check in advance if a node exist: my code is as follow: XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load(XML_FILENAME);
|
| Can't get xslt document() function to work. | 20 Oct 2004 11:35 GMT | 1 |
I can't get the following call to document() to work in a VB .Net (1.0) application, but it works in IE6. Can anyone tell me why this doesn't work? == XSLT fragment
|
| Import Excel XML into Dataset | 20 Oct 2004 09:51 GMT | 1 |
I'm trying to import some Excel XML into a dataset. If I use the below code on some standard XML it works fine. If I use it on XML created from Excel I will get (will xmlread): Specified cast is not valid.
|
| Problem in deriving class from System.Xml.XmlNode | 20 Oct 2004 06:12 GMT | 3 |
I want to make a custom class in c#, which extends System.Xml.XmlNode class of BCL. Now in custom class, I have implement abstract methods of XmlNode class also. Now when I am trying to run the class it gives an error that
|
| Blank xml tags; whats the deal? | 19 Oct 2004 23:18 GMT | 1 |
Okay here is my question. I have an XSD and two pieces of xml that look like this: snippet1: <myTag myattr="someVal"></myTag>
|
| Flat files to XML | 19 Oct 2004 21:45 GMT | 1 |
How can I convert unstructured flat files into structured XML? Are there any scientific articles and tools that handles this subject? Bye, hakhan
|
| XSLTransform & using XML Resolver to get images | 19 Oct 2004 16:08 GMT | 3 |
I am transforming xml using XSLTransform which works fine. The xsl file is stored on eg. C:\temp1 and the xml is loaded from c:\temp2. All image files referenced in the stylesheet file are stored on the same path as the stylesheet and are not used in the transform. How do
|
| Need help change a particular word in an XML doc | 19 Oct 2004 15:14 GMT | 2 |
I have an XML doc and I am trying to write a utility thath will allow me to change a particular word with my "title" section of theXML doc. I would like to look for a "word" in the title and then change only that "word" to something else. Below in XML file I would want to change ...
|
| Data from xml file gets truncated when writing to text file | 19 Oct 2004 14:13 GMT | 2 |
I have an xml doc and I am trying to write the values from xml file to a tab delimited text file. Currently, what I am doing is I am reading xml file through XpathNavigaotr and manipulating all the nodes,elements and attributes than I am writing those values to a text file using ...
|
| Serializing value types | 19 Oct 2004 13:35 GMT | 4 |
When a class contains a TimeSpan property, XmlSerializer doesn't work. A TimeSpan property is serialized like: <MySpan /> I've read a number of posts that talk about why this happens and how to work
|
| Still having problems with NameSpaceManager | 19 Oct 2004 11:33 GMT | 2 |
I'm trying to extract data from objects that contain xml that fits a third party schema with it's own root namespace. I've added a namespace manager that seemed to work most of the time but I never fully understood why. I've now hit another problem. It might be code
|
| Path in XML | 19 Oct 2004 11:06 GMT | 2 |
I am working with XMLDocuments, and i go through it with XMLNode, and i want know for each node the path in the XMlDocuments. For instance for this XML i want get for each nodes the following: testlayer
|
| Simple Store and Retrieve with XML (using C#) | 19 Oct 2004 10:55 GMT | 1 |
I want to store some system settings in XML, but I am new to it. So far, I am able to retrieve the attributes, but not the elements they belong to (I hope my terminology is right). For example, I can retrieve "Clear", "AV1", "AV2", "BB", and "BB2" from the XML file
|
| Transform Dataset using XSL in-place? | 19 Oct 2004 10:34 GMT | 1 |
I'm trying to apply an XSL to a dataset contents. More specifically, I want to apply an XSL to a dataset or an XmlDataDocument and put the resulting transformed data back into another DataSet or simply to modify the current DataSet. The first part is easy:
|