Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problems converting Master XML file into PDF

Status
Not open for further replies.

cmarchman

Programmer
Jun 18, 2004
56
US
I'm still really new to XML and I've run into a problem that maybe someone within this forum can help me with. The situation: I have created numerous xml templates for DocBook implementation and the individual templates will convert to HTML and PDF just fine. However, I have a "master" xml template that utilizes Xinclude to pull in the other templates to create a full document. The "master" xml will convert to HTML just fine, but I get an error "SystemID: C:\<Directory_Path>\User_Manual-Template\User_Manual-Template.xml
Description: The process 'FOP' ended with code : 2 The error was : [ERROR] null
" when trying to convert to PDF.

Here is the file in question:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"[
<!ENTITY % xinclude SYSTEM "/Program Files/Oxygen XML Editor 7.2/frameworks/docbook/dtd/xinclude.mod" >
%xinclude;
<!ENTITY % local.common.attrib "xml:base CDATA #IMPLIED" >
]>
<book>
<title>C-130 User Manual</title>
<part>
<title>Unpacking Instructions</title>
<xi:include href="./Unpacking_Instructions-Template.xml"
xmlns:xi=" <xi:fallback>
<para>
<emphasis>FIXME: MISSING XINCLUDE CONTENT</emphasis>
</para>
</xi:fallback>
</xi:include>
</part>

<part>
<title>Accessing the Graphical Management Interface - Step 1</title>
<xi:include href="./Accessing Graphical Interface_Step1-Template.xml"
xmlns:xi=" <xi:fallback>
<para>
<emphasis>FIXME: MISSING XINCLUDE CONTENT</emphasis>
</para>
</xi:fallback>
</xi:include>
</part>

<part>
<title>Accessing the Graphical Management Interface - Step 2</title>
<xi:include href="./Accessing Graphical Interface_Step2-Template.xml"
xmlns:xi=" <xi:fallback>
<para>
<emphasis>FIXME: MISSING XINCLUDE CONTENT</emphasis>
</para>
</xi:fallback>
</xi:include>
</part>

<part>
<title>Accessing the Graphical Management Interface - Step 3</title>
<xi:include href="./Accessing Graphical Interface_Step3-Template.xml"
xmlns:xi=" <xi:fallback>
<para>
<emphasis>FIXME: MISSING XINCLUDE CONTENT</emphasis>
</para>
</xi:fallback>
</xi:include>
</part>

<part>
<title>Accessing the Graphical Management Interface - Step 4</title>
<xi:include href="./Accessing Graphical Interface_Step4-Template.xml"
xmlns:xi=" <xi:fallback>
<para>
<emphasis>FIXME: MISSING XINCLUDE CONTENT</emphasis>
</para>
</xi:fallback>
</xi:include>
</part>
</book>


Any help would be greatly appreciated.

Thanks,

cmarchman
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top