Executing XPROC

404 Views Asked by At

Am very new to XSLT and XPROC stuffs. Now i have written my sample XPROC, As like every beginner, i also started with Hello World.

hello.xpl

<?xml version="1.0" encoding="UTF-8"?>
<p:pipeline xmlns:c="http://www.w3.org/ns/xproc-step" xmlns:p="http://www.w3.org/ns/xproc" name="pipeline">
<p:identity>
<p:input port="source">
<p:inline>
    <p>Hello world!</p>
</p:inline>
</p:input>
</p:identity>
</p:pipeline>

Now my question may be silly, I want to know how to execute this and view the output?

Thanks.

1

There are 1 best solutions below

4
On

Download Calabash (a FLOSS XProc processor) and run it on your pipeline.