I have an XML string being input into a Web Service via an HTTP Get method. When the XmlTextReader finds a numeric data value it is not reading it. Instead it is returning a blank / null value. ...
http://www.experts-exchange.com/Programming/Languages/.NET/Q_20382518.html
Zones:
.NETDate Answered: 10/12/2003 Grade: B Views: 0
Hello,
Hopefully someone out there can help me out or clarify what I may be doing wrong. I'm basically trying to use a XMLTextReader object to go through an XML and bring me back some raw XML...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_20845239.html
Zones:
C#,
XHTMLDate Answered: 01/08/2004 Grade: A Views: 4
I am trying to learn how to work with XML better... please help me figure out how to do this example. There are certain elements that have child elements - I don't want to display them or the chil...
http://www.experts-exchange.com/Programming/Programming_Languages/C_Sharp/Q_21506449.html
Zones:
C#Date Answered: 07/28/2005 Grade: A Views: 730
Hello All,
Using IIS, ASP.net, VB.net....
I used this in ASP to receive an xml document via httppost...
set xmlDoc = Server.CreateObject("Msxml2.DOMDocument")
xmlDoc.async = false
...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_21641835.html
Hey!
I have an xml file with this node:
<Value>
<![CDATA[<P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"> Test </FONT></P>]]>
</Value>
With XmlTextReader I can get the...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21890510.html
Zones:
C#Date Answered: 06/18/2006 Grade: A Views: 0
somebody suggested the following syntax:
try
{
XmlTextReader xSqlReader = new XmlTextReader("SqlStatement\\LoadQuery.xml");
xDoc.Load(xSqlReader);...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_22723325.html
Zones:
C#Date Answered: 07/26/2007 Grade: A Views: 0
I am trying to parse an XML file in C# using XMLTextReader (.NET 3.0). First I do the following
XmlTextReader reader = new XmlTextReader(xmlinputfilename);
while (reader.Read())
{
...
}
...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/XML/Q_23027630.htm...
Hi,
My web app uses content parsed from XML files with an XmlTextReader.
I have read that the XmlTextReader employs a forward only pull method that is much less memory intensive than using th...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_20938329.html
Zones:
C#Date Answered: 04/02/2004 Grade: B Views: 0
Hello I have an XML file that has more then one image encoded in it.
The file in question has three images in it. (See below for XML file)
Here the real problem, my program uses a case stateme...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_21679220.htm...
How can I use the XMLTextReader to read an XML string?
The XML is in a string variable, not in a file.
Logically, it seems like I should be able to do something like this:
Dim xtr As New XmlTe...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_21700021.html