Advertisement

1 - 10 of 28 containing alltags:("xmltextreader") (0 seconds)
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.  ...
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...
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...
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   ...
Zones: ASP.Net ProgrammingDate Answered: 03/25/2006 Grade: A Views: 0
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...
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);...
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()) { ... } ...
Zones: XML, MS Visual C#, .Net Editors & IDEsDate Answered: 12/20/2007 Grade: B Views: 12
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...
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...
Zones: MS Visual BasicDate Answered: 12/30/2005 Grade: A Views: 0
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...
Zones: ASP.Net ProgrammingDate Answered: 01/17/2006 Grade: A Views: 0