Click here to Skip to main content
15,867,704 members
Articles / Programming Languages / XSLT

Creating PDF Documents from XML

Rate me:
Please Sign up or sign in to vote.
5.00/5 (25 votes)
16 Aug 2013CPOL3 min read 236.4K   5.7K   57   43
Creating PDF documents from XML

Introduction

This article is about using XML/XSL-FO and the open source library FO.NET to generate PDF documents by mixing input parameters, images and static localization strings. I think that this kind of approach is ideal to automate the process of generating invoices or simple dynamic documents/reports related to web service/server pages input parameters.

Background

The following image describes the idea behind this solution:

Image 1

The user submits its request to the web service. The request is serialized to XML and merged with a static localization XML. The result is passed through an XSLT sheet and the output is an XSL-FO document. XSL-FO (http://www.w3schools.com/xslfo/) is a language for formatting XML data for output to screen, paper or other media. It can be parsed by FO.NET (http://fonet.codeplex.com/) in order to produce PDF documents.

Architecture Overview

The following UML diagram represents the relationships between the most important classes in the solution.

Image 2

A short description of each class and of their responsibilities:

  • IPdfPrintableDocument: represents a basic interface for a PDF printable document
  • Document: represents a really simple printable document
  • XmlTransformationManager: gets the printable document instance and merges it with the related XML culture file. The output is a new XML file that is passed through the related XSLT file. The final output is an XSL-FO document that can be parsed by FO.NET.
  • PdfPrinterDriver: handles the PDF generation process with the help of the FonetDriver class.
  • ResourceManager: it is responsible to access the localization and transformation files. It makes use of the CacheUtility class to store retrieved files in cache in order to speed up the execution of subsequent requests
  • CacheUtility: a simple wrapper for System.Web.Caching.Cache class

Settings

XML
<pdfPrinterConfiguration>
    <settings
    xsltFolderPath="~/App_Data/Resources/XSLT/"
    localizationXmlFolderPath="~/App_Data/Resources/XML/"
    defaultCulture="en-US"
    defaultDateFormat="MM/dd/yyyy"
    pdfOutputFolder="~/GeneratedDocuments/"
      />
</pdfPrinterConfiguration>  

In the web.config, there is a little configuration section:

  • xsltFolderPath: tells the application where to find the XSLT files
  • localizationXmlFolderPath: tells the application where to find the localization files
  • defaultCulture: default application culture
  • defaultDateFormat: DateTime format
  • pdfOutputFolder: tells the application where to save PDF files.

Creating a Simple WCF Service

I decided to test the PDF printer core with a simple WCF service. First of all, let's create an IPrintableDocument class:

XML
[Serializable, DataContract(Namespace = "http://Schemas/PdfPrinter/Common")]
public class Document : IPrintableDocument
{
    [DataMember(IsRequired = true)]
    public string Description;
 
    public string ToXml()
    {
        return ObjectXmlSerializer.SerializeObjectToXmlFormattedString(this);
    }
}  

Then, let's write out simple web service with request and response:

XML
[ServiceBehavior(Namespace = "http://Schemas/PdfPrinter/WebServices")]
public class PdfPrinterService : IPdfPrinter
{
    public PdfPrinterResponse Print(PdfPrinterRequest request)
    {
        return PdfPrinterFacade.PrintPdf(request);
    }
} 
XML
[MessageContract]
public class PdfPrinterResponse
{
    [MessageHeader]
    public string Info;
 
    [MessageBodyMember]
    public string Message;        
} 
XML
[MessageContract]
public class PdfPrinterRequest
{
    private Document _document;
 
    [MessageBodyMember]
    public Document Document
    {
        get { return _document; }
        set { _document = value; }
    }        
}   

Finally, let's implement our XSLT and localization XML files and name them as Document class.

I put Document.xslt under "~/App_Data/Resources/XSLT/" folder. This is a simple XSLT that shows some powerful features of XSL-FO. Then, I wrote a simple localization XML file Document.xml and I put it under "~/App_Data/Resources/XML/" folder.

Running the Code

Let's invoke our web service with Document.Description = "Hello".

All input data is merged within an XML document that looks like this:

XML
<PdfPrinter>
  <Document>
    <Description>Hello</Description>
  </Document>
  <culture language="en-US">
 
    <label id="Footer" text="This documents has been auto-generated with Pdf Printer Service"/>
    <label id="Page" text="Page " />
    <label id="Of" text=" of " />
 
    <label id="Message" text="You sent the following message:" />
    <label id="EmptyMessage" text="- Empty message -" />
 
    <label id="Date_Header_1" text="Date" />
    <label id="LongWord_Header_2" text="Very Long Word" />
    <label id="Decimal_Header_3" text="Decimal" />
    <label id="Integer_Header_4" text="Integer" />
    <label id="Total" text="Total" />
 
    <label id="Date_Field_1" text="11/02/1984" />
    <label id="LongWord_Field_2" text="ThisIsAVeryVeryLongBreakedWord" />
    <label id="Decimal_Field_3" text="1234.5678" />
    <label id="Integer_Field_4" text="3" />
 
  </culture>
</PdfPrinter>

Then the XSLT file produces the XSL-FO document by querying previous XML content. It makes use of a helper extension class (PdfPrinter.Core.Common.XsltExtensionService) which simplifies some common operations.

XML
. . .
<xsl:variable name="logo" 
    select="utilityExtension:MapPath('~/App_Data/Resources/IMAGES/logo.jpg')"/>
<fo:block>
   <fo:block>
   <fo:external-graphic src="url('{$logo}')" 
        content-width="auto" content-height="auto"/>
   </fo:block>
   <fo:block padding-top="2pt">
   <fo:block text-align="left" font-size="16pt">
   <fo:inline font-weight="bold">
   <xsl:value-of select="/PdfPrinter/culture/label[@id='Message']/@text"/>
   </fo:inline>
   </fo:block>
   <fo:block text-align="left" padding-top="2pt" font-size="16pt">
   <xsl:choose>
   <xsl:when test="/PdfPrinter/Document/Description != ''">
   <xsl:value-of select="/PdfPrinter/Document/Description"/>
   </xsl:when>
   <xsl:otherwise>
   <xsl:value-of select="/PdfPrinter/culture/label[@id='EmptyMessage']/@text"/>
   </xsl:otherwise>
   </xsl:choose>
   </fo:block>
   </fo:block>
</fo:block>
. . . 

The final result is parsed by FO.NET and the output looks really great!

Image 3

Conclusions

The benefit of generating PDF documents with this approach is that the developer doesn't have to know any particular API and can modify at runtime the document layout just by changing some XSLT queries or adding new XSL-FO statements.

I hope that my work will be helpful and enjoyable to use!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Italy Italy
Take a look at my professional profile and become a part of my network on LinkedIn. http://lnkd.in/YcYs3R

Comments and Discussions

 
Questiondo you have a .net core version? Pin
Fermín Salcedo23-Mar-18 10:29
professionalFermín Salcedo23-Mar-18 10:29 
QuestionDoes your project support using images for backgrounds Pin
cesinco24-Jul-17 2:20
cesinco24-Jul-17 2:20 
QuestionHow to have multiple classes in PdfPrinterRequest class to generate multiple different reports Pin
maruthipuligandla14-Jul-16 21:33
maruthipuligandla14-Jul-16 21:33 
QuestionHow to maintain more than one XSL template and dynamic XML instead of XML file Pin
maruthipuligandla10-Jul-16 22:26
maruthipuligandla10-Jul-16 22:26 
AnswerRe: How to maintain more than one XSL template and dynamic XML instead of XML file Pin
Marco Merola14-Jul-16 8:07
Marco Merola14-Jul-16 8:07 
GeneralRe: How to maintain more than one XSL template and dynamic XML instead of XML file Pin
maruthipuligandla14-Jul-16 17:04
maruthipuligandla14-Jul-16 17:04 
QuestionUsing the PdfPrinterCore along with WinForms Pin
Member 1247287423-Jun-16 0:19
Member 1247287423-Jun-16 0:19 
AnswerRe: Using the PdfPrinterCore along with WinForms Pin
Marco Merola14-Jul-16 8:00
Marco Merola14-Jul-16 8:00 
QuestionHow to make columns dynamically fetch from the XML Pin
maruthipuligandla20-Jun-16 17:54
maruthipuligandla20-Jun-16 17:54 
AnswerRe: How to make columns dynamically fetch from the XML Pin
Marco Merola21-Jun-16 8:38
Marco Merola21-Jun-16 8:38 
GeneralRe: How to make columns dynamically fetch from the XML Pin
maruthipuligandla21-Jun-16 16:10
maruthipuligandla21-Jun-16 16:10 
GeneralRe: How to make columns dynamically fetch from the XML Pin
maruthipuligandla21-Jun-16 18:28
maruthipuligandla21-Jun-16 18:28 
GeneralRe: How to make columns dynamically fetch from the XML Pin
Marco Merola14-Jul-16 7:54
Marco Merola14-Jul-16 7:54 
GeneralRe: How to make columns dynamically fetch from the XML Pin
maruthipuligandla14-Jul-16 17:01
maruthipuligandla14-Jul-16 17:01 
GeneralMy vote of 3 Pin
Member 123148718-Feb-16 11:10
Member 123148718-Feb-16 11:10 
GeneralMy vote of 5 Pin
Jeremy Njoroge29-Oct-15 19:44
Jeremy Njoroge29-Oct-15 19:44 
QuestionGenerating the xsl-fo file Pin
Member 117881655-Jul-15 22:43
Member 117881655-Jul-15 22:43 
AnswerRe: Generating the xsl-fo file Pin
Marco Merola6-Jul-15 7:08
Marco Merola6-Jul-15 7:08 
QuestionXSL-FO Pin
Member 1139185319-Feb-15 5:24
Member 1139185319-Feb-15 5:24 
AnswerRe: XSL-FO Pin
Marco Merola11-Apr-15 0:59
Marco Merola11-Apr-15 0:59 
AnswerRe: XSL-FO Pin
Marco Merola11-Apr-15 1:08
Marco Merola11-Apr-15 1:08 
Also if XSL-FO is now discontinued, I think it is still a good choose to produce simple PDF documents. So using FO-NET is a valid alternative if you don't have money to buy professional PDF printer libraries/tools.
As I did in this simple example you can have a look at how i build the sample file Document.xslt which mixes XSL-Fo statements and X-PATH queries.
This web-site could be a good reference for XSL-FO grammar:
http://zvon.org/xxl/xslfoReference/Output/[^]

hope it helps
Questioncustom xml Pin
sasi rekha29-Jan-15 15:45
sasi rekha29-Jan-15 15:45 
AnswerRe: custom xml Pin
Marco Merola11-Apr-15 0:54
Marco Merola11-Apr-15 0:54 
QuestionCreate PDF document Pin
smithjimmy5-Nov-13 19:44
smithjimmy5-Nov-13 19:44 
QuestionSource code doesn't generate PDF Pin
deepika bandi23-Oct-13 20:49
deepika bandi23-Oct-13 20:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.