Questions tagged [xinclude]

XInclude is a generic mechanism for merging XML documents, by writing inclusion tags in the parent document.

XInclude (XML Inclusions) is a generic mechanism for merging XML documents, by writing inclusion tags in the "main" document.

One should not confuse XInclude with XLink (XML linking language)

109 questions
0
votes
1 answer

Does JavaFX FXML support XInclude?

Does JavaFX FXML support XInclude? (http://www.w3.org/2001/XInclude) Since there does not seem to be a formal FXML Specification (where is the: FXML Specification?) I am asking here. It also seems that the XML parser in use must have namespace…
paulhr
  • 339
  • 4
  • 17
0
votes
1 answer

jQuery Ajax calling XML with Xinclude

So I got three levels of XML: app.xml includes 4 categories (XML-files). Each category includes a number of entries. The including part is right now done with Xinclude. My script runs an Ajax function getting the first xml, app.xml right now, but…
Rhyder
  • 101
  • 2
  • 14
0
votes
1 answer

solrException. XML parser doesn't support XInclude option

After configuring solr4.7.2 with tomcat 7, got the error in solrAdmin page stating SolrCore Initialization Failures fran92:org.apache.solr.common.SolrException:org.apache.solr.common.SolrException: XML parser doesn't support XInclude option My…
Raichu
  • 237
  • 1
  • 7
  • 20
0
votes
1 answer

Xpointer: is it possible to select an empty node-set?

Question I have an XInclude that includes a node-set resulting from the specified xpointer attribute's expression. Is it possible to select, with the xpointer, an empty node-set, so to not include anything? Issue The reason is that my xincluded &…
Kamafeather
  • 8,663
  • 14
  • 69
  • 99
0
votes
1 answer

XInclude xml file from resources of dependent java module

I have a java application that contains of 2 parts: Core project(module) and App project(module). Core module is dependent by several apps. I configure the work of my App module in config.xml file. I want to put xml file with common settings to Core…
Vasilii Ruzov
  • 554
  • 1
  • 10
  • 27
0
votes
1 answer

Using XSL to style a XML with multiple XInclude

I am trying to style a XML document that uses xinclude to include other xml files for modularity purposes. I'm using Firefox as my tool to visualize the transformation. (All the files are in the same folder) At the moment i have composed the…
goncalonsp
  • 13
  • 2
0
votes
2 answers

Error parsing an XML with xinclude and xpointer

I'm using Jdom 2.0.5 and opening a document one.xml which includes another file two.xml through xinclude. I'm calling the builder as follows: SAXBuilder builder = new SAXBuilder(); builder.setJDOMFactory(new LocatedJDOMFactory()); …
Jose L Martinez-Avial
  • 2,191
  • 4
  • 28
  • 42
0
votes
1 answer

java xalan transform with and without xinclude in the same app

I write a book database application in java. The books stored in XML format. Every book a XML. The books can contains short stories and a short story can be a XML. In that case the book look like: ...
0
votes
1 answer

XInclude and Scales XML

I'm using the Scales library to process XML in Scala, and I'd like to have xi:include elements expanded during parsing. This doesn't happen by default—if I write the following, for example, any include elements in the XML file will appear unexpanded…
Travis Brown
  • 138,631
  • 12
  • 375
  • 680
0
votes
1 answer

pass xincludes without parsing

I've seen many question on resolving xinclude, but I haven't seen one about the opposite. I have a source XML file with xincludes. I don't want to resolve them, but simply pass them through the XSLT with no changes. However, my parser is trying to…
Jeff
  • 877
  • 2
  • 11
  • 17
0
votes
1 answer

Split large XML file into small files, but keep validating it like one file

I have a 7K lines, 500kb XML file. While this sounds ridiculous to call such a file large, it is a configuration file which is edited by hand and in this context the size is a problem: Syntax highlighting is extremely slow (at least it is in…
yankee
  • 38,872
  • 15
  • 103
  • 162
0
votes
2 answers

how to transform XML files before processing xinclude

I have numerous XML files that are organized into different directories. I need to combine them and transform the result using XSLT. So far, I have already done this except for one problem: some XML files need to be transformed first before it can…
simoncpu
  • 578
  • 5
  • 9
0
votes
1 answer

xerces xinclude error

I am using Apache Xerces 3.0.1 XInclude. I want to use the xinclude mechanism to include XML files. I have three XML files all in the same directory. test_a.xml xincludes test_b.xml which xincludes test_c.xml. When I just have test_a.xml xinclude…
sizzle
  • 2,222
  • 2
  • 21
  • 32
0
votes
1 answer

How to enable XInclude for XSLT in webstorm?

I have xml like this:
Alexey Ryazhskikh
  • 2,458
  • 4
  • 32
  • 51
0
votes
1 answer

XML XInclude and two elements with the same name

I have two different XML files (IzPack installation to be exact) which a common part. Naturally, I would like to keep this common part in one (external) file and to include it into two XML installation files. I cannot make it work as it appears…
Demiurg
  • 1,597
  • 8
  • 26
  • 40