-1
votes
4answers
53 views
XML parsing problems
i need to parse this such that i can get the attribute of MMV and all the attributes of all CS tags
<MMV val="Configdes000110010101">
<CS protocol="SNMP" CommandStrin …
0
votes
1answer
29 views
nsxmlparser not solving '
Hi!
Im using NSXMLParser to dissect a xml package, I'm receiving &apos inside the package text.
I have the following defined for the xmlParser:
[xmlParser setShouldResolveEx …
0
votes
1answer
24 views
Example of ASIHTTPRequest with TouchXML .
Hello all,
I am currently using NSXMLParser mathods to parse my data something like this :
But I found some good option as TouchXML .
I googled for some good example or tut …
0
votes
2answers
47 views
Java: How to prevent ‘systemId’ in EntityResolver#resolveEntity(String publicId, String systemId) from being absolutized to current working directory
Hi guys,
I want to parse the following XML document to resolve all entities in it:
<!DOCTYPE doc SYSTEM 'mydoc.dtd'>
<doc>&title;</doc>
My EntityResolve …
2
votes
1answer
31 views
StAX - how to set XMLInputFactory.IS_VALIDATING to true?
Hi, this is my first time using StAX for parsing XML documents (still in the learning stage). During the process to parse an XML document using XMLStreamReader and generate a copy …
0
votes
2answers
51 views
How to generate an *exact* copy of an XML document with resolved entities
Given an XML document like this:
<!DOCTYPE doc SYSTEM 'http://www.blabla.com/mydoc.dtd'>
<author>john</author>
<doc>
<title>&title;</tit …
0
votes
1answer
40 views
NSXMLParser foundCharacters method!?
Hey!
i'm using the NSXMLParser to fetch a String from xml. I'v created a class to store the data with synchronized variables.
To get the text between the elementName i use the foun …
3
votes
2answers
120 views
Cannot parse poorly formed XML
I've been trying to parse this feed. If you click on that link, you'll notice that it can't even parse it correctly in the browser.
Anyway, my hosting service won't let me use sim …
0
votes
2answers
101 views
Umlaut in Java SAX Parser
Hello everybody!
I am currently having trouble with German umlaut values in a XML document I received.
It displays / saves the value as a "ü" instead of a "ü".
The XML Encoding …
1
vote
4answers
285 views
which is the most efficient XML Parser for C++ ?
I need to write an application that fetches element name value (time-series data) pair from any xml source, be it file, web server, any other server. the application would consume …
0
votes
1answer
50 views
is it possible to reuse appdelegate in applicationDidFinishLaunching ?
Hi all,
I am developing a tab bar application.
I have five tabs in it.
For each tab i have separate navigation controller.
For each tab's table View I want to load data from a …
0
votes
4answers
141 views
Java based XML Parsers [closed]
Possible Duplicate:
Best XML parser for Java
Hi,
I need to work with XML files in Java. My basic requirement is to parse the XML file, gather the information and show it …
3
votes
1answer
370 views
Nokogiri oddness?
A sample of some oddness:
#!/usr/bin/ruby
require 'rubygems'
require 'open-uri'
require 'nokogiri'
print "without read: ", Nokogiri(open('http://weblog.rubyonrails.org/')).class …
0
votes
2answers
254 views
Javascript XML Parser
Hi,
We've sets of webservices and we have to make request on clientside (sending request to getting response in a jason format, and parsing XML document through - having XSLT supp …
1
vote
3answers
256 views
Speed and XML Parsing in .NET - Serialization vs XML DOM vs ?
I have done XML parsing before but never on a massive scale.
If I'm working with many documents similar to this format:
<?xml version="1.0" ?>
<items comment="something.. …
