A simple, very flexible text format that stands for eXtensible Markup Language.
0
votes
2answers
1k views
Failed dependencies trying to install package 'libxml2'
I am trying to install libxml2, but my system complains about dependencies. The dependent packages exist on system.
The ultimate goal is to install xml_grep2, I have been trying various methods ...
1
vote
1answer
205 views
Modify XML file based on partial name
I've been using Xmlstarlet to modify some .xml files but I am lost trying to figure out how to modify a tag based on a partial name. What is the best way to comment out an entire line that begins ...
0
votes
1answer
72 views
python xml parsing
I have to delete particular tags from an xml file. Sample xml below.
<data>
<tag:action/>
</data>
I want to delete all contents between data and /data. ...
0
votes
0answers
47 views
Strange issue with xml_split in Linux
I am using the code xml_split from https://metacpan.org/pod/distribution/XML-Twig/tools/xml_split/xml_split to split a huge XML file. I am facing a strange issue with this.
First, I tried the ...
0
votes
0answers
50 views
Setting up apache axis client on centos
I have below codes.
import java.util.*;
import java.io.*;
import java.net.URLConnection;
import java.net.MalformedURLException;
import org.apache.axis.client.Call;
import ...
0
votes
0answers
42 views
How to format xml attributes, not just elements
How do you format an XML document to make it easy to read element attributes?
I have a xml based webservice that returns one or two elements, but with hundreds of attributes. As I'm doing ...