Tagged Questions

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

learn more… | top users | synonyms

3
votes
1answer
38 views

Python lxml using xi:include with multiple Xml fragments

I am developing a simple xml logfile class using lxml in Python. My approach so far has been to use two files. A well-formed XML file which includes a second file which is a XML fragment. I am using ...
3
votes
1answer
2k views

Default support for xinclude in Java 6?

I see in my application that xinclude inside my parsed XML file does not work within my Java XSLT conversion. However, although I do: DocumentBuilderFactory factory = ...
2
votes
0answers
90 views

Why isn’t XInclude supported by any browser?

I’m wondering why no web browser supports the XInclude standard for XHTML. This standard exists for almost five years, and I think it would be very useful for the web. For example, you could XInclude ...
2
votes
1answer
371 views

How to use LINQ to read XML that contains xincluded files?

I am currently using VS2008, C# 3.5, and LINQ to read an XML file. (call it A.xml) I want to include other XML files in A.xml with xinclude. My initial attempts have failed, and I've not found any ...
2
votes
1answer
418 views

XercesDOMParser and XIncludes

I am attempting to get xincludes working in an existing system that uses a XercesDOMParser in xercesc to parse incoming xml from a client. I am working with Apache Xercesc v3.0.1, and the incoming ...
2
votes
4answers
2k views

Join multiple XML files with xinclude tags into single file

I am creating an installer in IzPack. It is quite large, and I have broken up my XML files appropriately using <xinclude> and <xfragment> tags. Unfortunately, IzPack does not combine them ...
1
vote
1answer
77 views

Java and XML: How to get list of included files

I have problem with by Xinclude or as an entity included files. I need to know, which files have been included by parser. Example:<?xml version="1.0" ?> <!DOCTYPE docBookChapter [ ...
1
vote
0answers
142 views

XML XInclude - wildcard character

I have a directory hierarchy and would want to include all XML files that fit a particular pattern using XInclude. The structure is as show below. Book/ ├── book.xml └── Chapter └── page01.xml ...
1
vote
1answer
197 views

XSLT and XInclude

I have a three XML files called A.xml,B.xml and C.xml. A includes B and C through XInclude. I want Saxon to process A.xml AFTER resolving the includes in A.xml. So far, I can activate the XInclude ...
1
vote
1answer
207 views

XInclude validation problem

I want an XML file split up with several includes, using XInclude. This method I prefere above others, because the included XML files can be standalone to be validated files on their own. I have the ...
1
vote
0answers
75 views

Can I use XInclude with Java 1.5 XML Properties?

Since JDK 1.5 Properties can be loaded from a simple XML file (see IBM article). Is it possible to use XInclude in one of these XML properties files to compose multiple files?
1
vote
2answers
448 views

How do I use an environment variables in xi:include of a XML file?

I would like to use an environment variable in the href link of the xi:include node of an XML file. Currently the Perl XInclude parser doesn't support any variables but only absolute paths. Is there a ...
0
votes
0answers
17 views

how to process xincluded xmls before xinclusion?

Using Xalan's implementation of XInclude, is it possible to apply some processing on the source files before these are getting included in the main source document? Thanks in advance, Adrian.
0
votes
1answer
53 views

Converting Docbook 5.0 (with partial includes) to PDF

I was trying to convert a docbook document with fragmented/partial includes to pdf using Xerces 2.7.1 and Xalan 2.7.0. <xi:include href="./TestDocument.included.xml" xpointer="Section2"/> ...
0
votes
1answer
54 views

XInclude support in Java 6

I've seen this example posted several times: public class XIncludeTest { public static void main(String[] args) throws Exception { DocumentBuilderFactory factory = ...
0
votes
1answer
26 views

adding elements to including file via XInclude

Can I somehow add elements to included file using XPointer or XPath or anything else? Main file <doc xmlns:xi="http://www.w3.org/2001/XInclude"> <xi:include href="field.xml" /> ...
0
votes
0answers
65 views

using xalan line number function with xinclude

I am building a testing framework for my company using Xalan-based XSL with Java backend. In one of my XSL sheets I am using the nodeinfo:line-number() function supplied by Xalan to track line ...
0
votes
0answers
31 views

can XInclude be used on stream input?

I would like a portable solution to creating a multiply nested XML document using XInclude. I am using <xi:include href="foo.xml"> elements and taking the input from a stream. So far this fails ...
0
votes
1answer
115 views

Why isn’t Jing picking up xml:id for XInclude?

Given the following files a.rnc: start = a a = element a { b } b = element b { attribute xml:id { xsd:ID }?, attribute xml:base { xsd:ID }?, empty } a.xml: <a ...
0
votes
2answers
106 views

Unraveling the dependency tree for a set of XML files using XIncludes

I have a set of XML files (DocBook, to be specific). These use XML inclusions, aka XInclude, to reference one another. Given one of these XML files, what is the best way to figure out the list of ...
0
votes
2answers
149 views

Is it possible to use wildcards with XInclude tags?

I'm afraid it's not possible, but haven't found anywhere it is said to be impossible either. I'd like to include a set of files within a XML document using wildcards. Like this: <?xml ...
0
votes
1answer
82 views

XSD-generated class doesn't include XInclude content after deserialization

I'm using the XmlSerializer class to deserialize a XSD.exe-generated class from an XML document. The XML document has two XInclude tags to other XML documents. After deserialization, the XInclude ...
0
votes
2answers
232 views

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 ...
0
votes
1answer
461 views

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 ...
0
votes
1answer
169 views

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 ...