alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Ant example source code file (xmlcatalog.xml)

This example Ant source code file (xmlcatalog.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Ant tags/keywords

alternatively, doctype, test, test, this, xml, xml, xmlcatalog, xmlcatalog, xslt, xslt

The xmlcatalog.xml source code

<?xml version='1.0'?>
<!DOCTYPE project>

<project name="xmlcatalog" default="all" basedir=".">

  <description>
    This is to test XMLCatalog for external entity resolution from the
    xslt task, both the simple case and using the document() function
    to refer to a second file (which refers to the entity). This
    buildfile is called by
    org.apache.tools.ant.types.XMLCatalogBuildFileTest.java
    Alternatively, you may try it out by hand by first removing the
    comment symbols around the echo statements and then calling 
    ant -buildfile xmlcatalog.xml
  </description>

  <property name="transformer" value = "xmlcatalog.xsl"/>

  <target 
    name    = "all" 
    depends = "testentitynocatalog, testentitywithcatalog, 
    testdocumentnocatalog, testdocumentwithcatalog"/>

  <target 
    name        = "testentitynocatalog"
    description = "Test external entity resolver for simple XML
document without using XMLCatalog">
    <delete
      quiet = "yes"
      file  = "result.out"/>
    <xslt
      basedir   = "${basedir}"
      destdir   = "${basedir}"
      extension = ".text"
      style     = "${transformer}"
      in        = "xmlcatalog1.xml"
      out       = "result.out">
      <param
        name       = "outprop"
        expression = "val1"/>
    </xslt>
    <property file = "result.out"/>
    <!-- 
    <delete
      quiet = "yes"
      file  = "result.out"/>
  </target>

  <target 
    name        = "testentitywithcatalog"
    description = "Test external entity resolver for simple
XML document using XMLCatalog">
    <delete
      quiet = "yes"
      file  = "result.out"/>
    <xslt
      basedir   = "${basedir}"
      destdir   = "${basedir}"
      extension = ".text"
      style     = "${transformer}"
      in        = "xmlcatalog1.xml"
      out       = "result.out">
      <param
        name       = "outprop"
        expression = "val2"/>
      <xmlcatalog>
        <entity 
          publicId = "myquote"
          location = "quote2.xml"/>
      </xmlcatalog>
    </xslt>
    <property file = "result.out"/>
    <!-- 
    <delete
      quiet = "yes"
      file  = "result.out"/>
  </target>

  <target 
    name        = "testdocumentnocatalog"
    description = "Test entity resolution in XML document called
from XSLT document() function without using XMLCatalog">
    <delete
      quiet = "yes"
      file  = "result.out"/>
    <xslt
      basedir   = "${basedir}"
      destdir   = "${basedir}"
      extension = ".text"
      style     = "${transformer}"
      in        = "xmlcatalog2.xml"
      out       = "result.out">
      <param
        name       = "outprop"
        expression = "val3"/>
    </xslt>
    <property file = "result.out"/>
    <!-- 
    <delete
      quiet = "yes"
      file  = "result.out"/>
  </target>

  <target 
    name        = "testdocumentwithcatalog" 
    description = "Test entity resolution in XML document called
from XSLT document() function using XMLCatalog">
    <delete
      quiet = "yes"
      file  = "result.out"/>
    <xslt
      basedir   = "${basedir}"
      destdir   = "${basedir}"
      extension = ".text"
      style     = "${transformer}"
      in        = "xmlcatalog2.xml"
      out       = "result.out">
      <param
        name       = "outprop"
        expression = "val4"/>
      <xmlcatalog>
        <entity 
          publicId = "myquote"
          location = "quote2.xml"/>
      </xmlcatalog>
    </xslt>
    <property file = "result.out"/>
    <!-- 
    <delete
      quiet = "yes"
      file  = "result.out"/>
  </target>

</project>

Other Ant examples (source code examples)

Here is a short list of links related to this Ant xmlcatalog.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.