XProc error err:XC0050 access denied
Having trouble installing Oxygen? Got a bug to report? Post it all here.
-
- Posts: 102
- Joined: Tue Aug 19, 2014 12:04 pm
XProc error err:XC0050 access denied
Post by Martin Honnen »
Using oXygen 22 and the built-in Calabash XProc processor to run an XProc example that tries to use p:store I get
The XProc code is
the XML input to the p:xslt step is
The p:store href="toc-list.html" seems to be executed fine even from inside oXygen but I guess the error is caused by the p:store steps inside of the p:for-each, only that it works fine when run from the command line. Any idea where Calabash inside oXygen tries to write the secondary result files of the p:xslt step I am trying to store with the p:store inside of the p:for-each?
When I run Calabash from the command line with the same files I don't get that error.err:XC0050 : XProc error err:XC0050 It is a dynamic error if the URI scheme is not supported or the step cannot store to the specified location. Zugriff verweigert
The XProc code is
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" xpath-version="2.0"
xmlns:c="http://www.w3.org/ns/xproc-step" version="1.0">
<p:input port="source">
<p:empty/>
</p:input>
<p:output port="result" primary="true" sequence="true">
<p:pipe port="result" step="secondary-storage"/>
</p:output>
<p:xslt name="xslt-pagelist" version="2.0">
<p:input port="stylesheet">
<p:document href="page-list.xsl"/>
</p:input>
<p:input port="source">
<p:document href="toc.xml"/>
</p:input>
<p:input port="parameters">
<p:empty/>
</p:input>
</p:xslt>
<p:store href="toc-list.html"/>
<p:for-each name="secondary-storage">
<p:iteration-source select=".">
<p:pipe port="secondary" step="xslt-pagelist"/>
</p:iteration-source>
<p:output port="result">
<p:pipe port="result" step="store"/>
</p:output>
<p:store name="store">
<p:with-option name="href" select="document-uri(.)"/>
</p:store>
</p:for-each>
</p:declare-step>
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<book>
<chapter>
<section>
<title>section 1</title>
</section>
<section>
<title>section 2</title>
</section>
<section>
<title>section 3</title>
</section>
</chapter>
<chapter>
<section>
<title>section 1</title>
</section>
<section>
<title>section 2</title>
</section>
<section>
<title>section 3</title>
</section>
</chapter>
<chapter>
<section>
<title>section 1</title>
</section>
<section>
<title>section 2</title>
</section>
<section>
<title>section 3</title>
</section>
</chapter>
</book>
-
- Posts: 144
- Joined: Tue Mar 25, 2003 11:21 am
Re: XProc error err:XC0050 access denied
Hi Martin,
It seems that oXygen does not have the writing permissions for the specified location.
I tried the samples you provided and if the location where you need to save teh result is not available for writing I obtain the same result.
Regards,
Mircea.
It seems that oXygen does not have the writing permissions for the specified location.
The step attempts to store the XML document to the specified URI. It is a dynamic error (err:XC0050) if the URI scheme is not supported or the step cannot store to the specified location.
See: p:storeerr:XC0050
It is a dynamic error if the URI scheme is not supported or the step cannot store to the specified location.
I tried the samples you provided and if the location where you need to save teh result is not available for writing I obtain the same result.
Regards,
Mircea.
Mircea Enachescu
<oXygen> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
<oXygen> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
-
- Posts: 102
- Joined: Tue Aug 19, 2014 12:04 pm
Re: XProc error err:XC0050 access denied
Post by Martin Honnen »
But why would Calabash in oXygen be able to write out the "toc-list.html" (that file is written/updated) while not being able to write out the "section-X.X.html" files that are supposed to be written to the same directory? I don't understand where the "document-uri(.)" leads to with Calabash in oXygen while with Calabash from the command line it writes out the "section-X.X.html" files to the same directory as the toc-list.html.
-
- Posts: 144
- Joined: Tue Mar 25, 2003 11:21 am
Re: XProc error err:XC0050 access denied
I do not have your stylesheet to check the problem.
I used a simple "copy-stylesheet" to check the behaviur, but that do not create additional files.
I used a simple "copy-stylesheet" to check the behaviur, but that do not create additional files.
Mircea Enachescu
<oXygen> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
<oXygen> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
-
- Posts: 102
- Joined: Tue Aug 19, 2014 12:04 pm
Re: XProc error err:XC0050 access denied
Post by Martin Honnen »
Sorry, my bad, I thought I had inserted all files in the original post, somehow I forgot the XSLT:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:output method="html" indent="yes" version="5"/>
<xsl:template match="/">
<html>
<head>
<title>TOC</title>
</head>
<body>
<h1>TOC</h1>
<ul>
<xsl:apply-templates select="//chapter/section"/>
</ul>
</body>
</html>
</xsl:template>
<xsl:template match="chapter/section">
<xsl:variable name="nr" as="xs:string">
<xsl:number level="multiple" count="chapter | section" format="1.1"/>
</xsl:variable>
<li>
<a href="section-{$nr}.html">
<xsl:value-of select="title"/>
</a>
</li>
<xsl:result-document href="section-{$nr}.html">
<html>
<head>
<title>
<xsl:value-of select="title"/>
</title>
</head>
<body>
<h1>
<xsl:value-of select="title"/>
</h1>
</body>
</html>
</xsl:result-document>
</xsl:template>
</xsl:stylesheet>
-
- Posts: 102
- Joined: Tue Aug 19, 2014 12:04 pm
Re: XProc error err:XC0050 access denied
Post by Martin Honnen »
Instead of using p:store inside of the p:for-each I have simply tried to output the document-uri(.) of each document processed there and outside of oXygen, with Calabash from the command line, the URIs point to the current working directory where I have the XML document and the XProc file and where the p:store outside the p:for-each writes to, while Calabash run inside of oXygen has URIs in the form of
So basically that explains why my earlier attempt gives the access denied error.
I am not sure however I have missed a setting or configuration or XProc attribute I would need to set, still I wonder why Calabash from the command line manages to store all files in the same directory while inside oXygen the sole p:store uses the directory where the XProc, XML and XSLT files reside but the p:store trying to write the secondary results from the p:xslt step have acquired a URI in the oXygen installation directory.
What do you think? Does the XProc code I have need a fix? Or Calabash inside oXygen?
Code: Select all
file:/C:/Program%20Files/Oxygen%20XML%20Editor%2022/section-1.2.html
I am not sure however I have missed a setting or configuration or XProc attribute I would need to set, still I wonder why Calabash from the command line manages to store all files in the same directory while inside oXygen the sole p:store uses the directory where the XProc, XML and XSLT files reside but the p:store trying to write the secondary results from the p:xslt step have acquired a URI in the oXygen installation directory.
What do you think? Does the XProc code I have need a fix? Or Calabash inside oXygen?
-
- Posts: 144
- Joined: Tue Mar 25, 2003 11:21 am
Re: XProc error err:XC0050 access denied
It seems that the problem is in the following line:
It works from the command line because the URI of "." is the directory where you start the Calabash.
So I suggest you to provide the "href" for the p:store step in a different manner.
For a more specialized help please adress to the Calabash discussions lists.
In my case the "section-X.X.html" files were generated in the oXygen installation directory.<p:with-option name="href" select="document-uri(.)"/>
It works from the command line because the URI of "." is the directory where you start the Calabash.
So I suggest you to provide the "href" for the p:store step in a different manner.
For a more specialized help please adress to the Calabash discussions lists.
Mircea Enachescu
<oXygen> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
<oXygen> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
-
- Posts: 144
- Joined: Tue Mar 25, 2003 11:21 am
Re: XProc error err:XC0050 access denied
It seems that we both replyed in the same time.
Yes, the XProc code needs a fix.
Yes, the XProc code needs a fix.
Mircea Enachescu
<oXygen> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
<oXygen> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
Jump to
- Oxygen XML Editor/Author/Developer
- ↳ Feature Request
- ↳ Common Problems
- ↳ DITA (Editing and Publishing DITA Content)
- ↳ Artificial Intelligence (AI Positron Assistant add-on)
- ↳ SDK-API, Frameworks - Document Types
- ↳ DocBook
- ↳ TEI
- ↳ XHTML
- ↳ Other Issues
- Oxygen XML Web Author
- ↳ Feature Request
- ↳ Common Problems
- Oxygen Content Fusion
- ↳ Feature Request
- ↳ Common Problems
- Oxygen JSON Editor
- ↳ Feature Request
- ↳ Common Problems
- Oxygen PDF Chemistry
- ↳ Feature Request
- ↳ Common Problems
- Oxygen Feedback
- ↳ Feature Request
- ↳ Common Problems
- Oxygen XML WebHelp
- ↳ Feature Request
- ↳ Common Problems
- XML
- ↳ General XML Questions
- ↳ XSLT and FOP
- ↳ XML Schemas
- ↳ XQuery
- NVDL
- ↳ General NVDL Issues
- ↳ oNVDL Related Issues
- XML Services Market
- ↳ Offer a Service