| Thread | Last Post | Replies |
|
| Problem converting from MSXML2 to MSXML4 in C# | 31 Oct 2008 13:02 GMT | 1 |
I had a piece of code working fine with MSXML2 (it does an open get and then a send, returning the webpage of the url in the get) but my server is hosted by a company that uses MSXML4 - help? I added a reference to MSXML4 - I right clicked on my project name ->
|
| subclassing xmlReader issues | 30 Oct 2008 09:50 GMT | 4 |
I have created a subclass of xmlReader and was passing that in to XPathDocument and using that XPathDocument instance in my xslCompiledTransform transform() method. Something about my reader causes the xslCompiledTransform to behave differently in reading xml attributes
|
| [ANN] VTD-XML extended edition released | 28 Oct 2008 19:40 GMT | - |
The Java version of extended VTD-XmL is released and available for download. This version supports 256 GB max file sizes and memory mapped capabilities.
|
| Can someone help me to understand schema locations? | 28 Oct 2008 12:26 GMT | 4 |
I have this xml: [xml] <Report p1:schemaLocation="Data_Feed http://server/reportserver?param1=foo¶m2=bar"
|
| SelectNodes not working like I thought it would | 24 Oct 2008 18:24 GMT | 2 |
I've been trying to teach myself XML. I have an XML file with contents like this (from a play): <SPEECH> <SPEAKER>SLY</SPEAKER>
|
| InnerXml and PreserveWhitespace | 24 Oct 2008 17:06 GMT | 4 |
Hi... I just noticed something that seems counter-intuitive to me. By default an XmlDocument is set with PreserveWhitespace=false. This means that XmlDocument.Load() or .LoadXml() will strip/condense non-semantic whitespace.
|
| Issue selecting the correct nodes | 24 Oct 2008 16:44 GMT | 1 |
Hi, I should probably start with my XML as it makes it easier to explain the problem. <?xml version="1.0" encoding="utf-8" ?> <aa note="top level">
|
| Adding attributes to a node | 23 Oct 2008 17:23 GMT | 11 |
I’m trying to add the following attributes (xmlns:xsi and xsi:type) to a node (Grantee) like the following: <Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="Group">
|
| Space problem with .NET 2.0 | 22 Oct 2008 12:12 GMT | 1 |
I am loading an XML file and applying the XSLT using .net 2003 (C#). XSLT will add Space character in the xml. I am using the entity value for space character  . it works fine in .net 1.1 whereas in .net 2.0 the space character is not showing up in the xml at all. Any idea why ...
|
| How to obtain a utf-8 string from an XmlReader? | 20 Oct 2008 19:54 GMT | 3 |
I'm trying to convert the xml obtained from a XmlReader object into a UTF-8 array. My general idea is to read the XmlReader and write into a MemoryStream. Then convert the MemoryStream bytes into utf-8. MemoryStream ms = new MemoryStream();
|
| Error Serializing a Wrapped SortedList | 16 Oct 2008 16:02 GMT | 2 |
I'm using VB.NET 2002 on Windows 2000 Pro and am having trouble serializing a SortedList. This is my class: <Serializable()> Public Class clsGoodFiles Inherits SortedList
|
| XmlSerializer not reading some attributes with redundant explicit namespace | 15 Oct 2008 14:14 GMT | 2 |
I'm trying to use annotation-based automatic XML serialization of my .NET-classes in order to exchange XML with other platforms. So far my class looks like this: [XmlRoot(ElementName="thing", Namespace="http://eins")]
|
| How to insert and query nodes? | 14 Oct 2008 12:33 GMT | 4 |
I need to use XML to store some log data and then query that data. I'm struggling with the right terminology, which is hindering my ability to successfully search for a solution. Thanks in advance for your help! Two questions:
|
| how to eliminate whitespaces from an XML file | 11 Oct 2008 14:39 GMT | 2 |
we have written a C# program which generates an XML file from a Client computer and this file is being transfered to the Server side(using Socket programming). at the Server side we are first extracting the data from the XML file into a Dataset and using the
|
| WPF xml | 09 Oct 2008 13:38 GMT | 1 |
I'm using WPF with net 3.5 to load the ItemsSource of a combo box from an xml file. The xml is setup like this: <profiles>
|