0
votes
2answers
35 views
How to use XMLREADER in php?
I have the following XML file, the file is rather large and i haven't been able to get simplexml to open and read the file so i'm trying XMLREADER with no success in php
<?xml version="1.0" …
1
vote
0answers
62 views
using php xmlreader to get data from xml to mysql
I am using php and xmlreader to retreive data from an xml file and insert into a mysql table. I chose xmlreader because the files supplied me are 500mb. I am new to all of this and am at a sticking …
1
vote
3answers
49 views
xmlreader newline \n instead of \r\n
When I use XmlReader.ReadOuterXml(), elements are separated by \n instead of \r\n.
So, for example, if I have XmlDocument representatino of
<A>
<B>
</B>
</A>
I get
…
0
votes
1answer
37 views
Properly reading a nested XML document using an XmlReader.ReadInnerXML in .NET 3.5
I'm using an XmlReader.ReadInnerXML to read an XML document (as text) embedded within in an element of an outer XML document. This works fine except for the handling of tab characters in attributes …
1
vote
1answer
46 views
How can I read and parse a URL’s XML or JSON content with C++?
I can easily do this with JQuery or PHP but I have a project for my Intro to C++ class and I thought it'll be pretty cool if I could mix C++ with some APIs like twitter, google, yahoo etc.
Could you …
0
votes
4answers
129 views
Not all code paths return a value C#?
This is my code:
public String[] readXML(String filename)
{
XmlReader xmlReader = XmlReader.Create(@filename);
List<String> names = new List<string>();
String[] keywords …
1
vote
2answers
117 views
Getting File Attributes with XMLReader in C#
I used the XMLReader format:
XmlReader xmlReader = XmlReader.Create("batch.xml");
while (xmlReader.Read())
{
//Keep reading
if (xmlReader.Name.Equals("Keyword") && …
0
votes
4answers
178 views
How to build XmlNodes from XmlReader
I am parsing a big number of big files and after profiling my bottleneck is:
XmlDocument doc = new XmlDocument();
doc.Load(filename);
This approach was very handy because I could extract nodes like …
0
votes
0answers
24 views
Error while fetching Data in form of XML from SQL Server Database
I have a Multi-tier ASP.NET application. In which am reading data from SQL Server 2005. Am fetching XML data directly from database using "FOR XML AUTO,ELEMENTS" suffix in my query. The problem is …
0
votes
0answers
80 views
XmlReader is {None} on web service call (.Net C#)
I have a method which creates HttpWebRequest for a given url and returns XmlReader object with the response stream.
HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url);
req.Accept = …
0
votes
2answers
73 views
Response.GetResponseStream() escapes double quotes
Response.GetResponseStream() is returning xml with escape characters
<?xml version=\"1.0\" encoding=\"utf-8\"?>
Because of this XmlReader return {None}. Help please?
HttpWebRequest req = …
1
vote
2answers
51 views
Efficiency of deserialization vs. XmlReader
I'm working with a complicated xml schema, for which I have created a class structure using xsd.exe (with some effort). I can now reliably deserialize the xml into the generated class structure. For …
0
votes
2answers
59 views
What’s XmlNodeType.Document ? Difference between XmlNodeType.Element and XmlNodeType.Document
Hi,
I am using XmlReader to read an XML File and I want to count XML Element right under of Document Element that as I know it should be the root element.
XML
<?xml version="1.0" …
0
votes
2answers
44 views
Are XmlMtomReader and XmlMtomWriter fully implemented in Mono project?
I'm working on a cross-platform solution currently. The solution uses XmlMtomReader and XmlMtomWriter from .NET framework 3.0.
Now i need to know if these two classes (and all the nessasary …
0
votes
3answers
121 views
convert XmlReader to XmlTextReader
How do you convert XmlReader to XmlTextReader?
Code Snippet:
XmlTextReader reader = XmlTextReader.Create(pomfile.FullName);
Here's the Build error I got:
Cannot implicitly convert type …
