Skip to main content
0 votes
0 answers
78 views

With the following code: require 'nokogiri' class MyDocument < Nokogiri::XML::SAX::Document def start_element_namespace(name, attrs = [], prefix = nil, uri = nil, ns = []) a = attrs.map ...
jean marc's user avatar
0 votes
1 answer
89 views

I try using sax js in order to process xml file in chunks , adding it to limited size of array , await to updating the DB , then reset the array. The problem is that it not working asynchronously out ...
benny hassan's user avatar
1 vote
1 answer
160 views

I've tried countless ways to get attribute values out of Python's SAX parser when using namespaces and cannot find a way to do it. There must be a simple solution here, but for the life of me I cannot ...
Killtrox's user avatar
1 vote
0 answers
51 views

I'm using Tomcat v9.0.87 with Java 1.8.0_412. The Tomcat starts very well, just with root and manager application. If I deploy two war-files, the whole Tomcat crashes. > 09-Jul-2024 10:49:34.899 ...
stalachristian's user avatar
0 votes
1 answer
46 views

I need to parse document using SAX parser in java. I was able to print all the node values if I use DefaultHandler class traditionally implementing the startElement, endElement and characters method. ...
user2628187's user avatar
0 votes
1 answer
65 views

I am creating an Excel file with a large amount of data, for this reason I had to choose SAX technology, but I can’t find examples anywhere of how to freeze the first row so that when scrolling it ...
Kirill's user avatar
  • 1
1 vote
0 answers
136 views

Can the libxml2 SAX interface do schema validation against the whole XML contents? Currently, I have a completed xsd loaded into the memory. Based on my knowledge, libxml2 SAX interface is a stream-...
Gavin Tian's user avatar
0 votes
1 answer
53 views

I'm planning to write a SAX2 XML parser and I would like to support as many standard options as I can. However, I'm really scratching my head trying to understand what the http://xml.org/sax/...
Kevin Riff's user avatar
2 votes
1 answer
139 views

I am trying to parse an xml which contains hex value of &#x1d4c5;. This represents the mathematical symbol 𝓅. The output that I am getting is &#55349;&#56517;. What am I doing wrong? ...
Rishabhg's user avatar
  • 118
1 vote
2 answers
89 views

There is an XML and I parse it using the SAX parser. Now suppose I receive a notification at the start of an element startElement(..) At this time I will know the tag name that the SAX parser is at. ...
pensee's user avatar
  • 585
0 votes
1 answer
129 views

I'm trying to read a XML file in SAX in Python3, because in my pet project I have in inptu a full directory of XML file representing some GTD projects1 . The file has this format <project name = &...
alepuzio's user avatar
  • 1,424
1 vote
0 answers
60 views

Java SAX parser throws error if a CDATA section ends with a "]" and XML version is 1.1. <?xml version="1.1" encoding="UTF-8"?> <book> <description><...
RajV's user avatar
  • 7,292
0 votes
0 answers
62 views

I got a task to validate xml against dtd and we'll get more than 20k files to validate. While testing the performance, we have found the below discrepancies using catalog resolver, it's taking more ...
Kumaran's user avatar
  • 31
0 votes
1 answer
48 views

I have a SAX2 XML parser and I want to perform specific actions. Add an object to tileFrames list when frame element starts (as many times as frame in each animation element), Add String ...
user avatar
0 votes
1 answer
115 views

I want to parse the an XML document (the JMdict dictionary), which is a list of entries containing elements which represent properties about the entry, for example <pos>&vr;</pos>, ...
Simone Bondi's user avatar

15 30 50 per page
1
2 3 4 5
119