Skip to content

Commit

Permalink
fixed error where I'd stupidly put an absolute URI instead of a relat…
Browse files Browse the repository at this point in the history
…ive one
  • Loading branch information
Conal-Tuohy committed Dec 11, 2014
1 parent 7b02c81 commit d63c74f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/conaltuohy/xprocz/XProcZServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public void service(HttpServletRequest req, HttpServletResponse resp)
// sending the result to the HTTP client
XProcConfiguration config = new XProcConfiguration();
XProcRuntime runtime = new XProcRuntime(config);
Input input = new Input("file:///usr/src/XProc-Z/xproc/xproc-z.xpl");
Input input = new Input("xproc/xproc-z.xpl");
XPipeline pipeline = runtime.load(input);
// wrap request DOM in Saxon XdmNode
XdmNode inputDocument = runtime.getProcessor().newDocumentBuilder().wrap(requestXML);
Expand Down

1 comment on commit d63c74f

@Conal-Tuohy
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Guess whereabouts I've installed the XProc-Z source on my computer! D'oh

Please sign in to comment.