[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: handling failed document() invocations

Subject: RE: handling failed document() invocations
From: "Robert Koberg" <rob@xxxxxxxxxx>
Date: Tue, 29 Oct 2002 15:35:57 -0800
RE:  handling failed document() invocations
Hi,

Since you are using saxon you can simply do something like:

<xsl:choose>
  <xsl:when test="boolean($item-doc")">
    <xsl:apply-templates select="$item-doc"/>
  </xsl:when>
  <xsl:otherwise>
    <xsl:call-template name="content_not_found"/>
  </xsl:otherwise>
</xsl:choose>

If you want this to be non-(java)-processor-specific you might want to use a(n?)
URIResolver to return some well-formed error info.

best,
-Rob




> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Jeff Barrett
> Sent: Tuesday, October 29, 2002 3:06 PM
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject:  handling failed document() invocations
>
>
> I have a main XML document that has references to other XML document
> instances.  These references take the form of an ID number that is
> used to construct the path to an instance doc.  For example:
>
> <document>
> 	<item id="14" />
> 	<item id="94" />
> </document>
> <!----------------------------->
> <xsl:stylesheet>
> [...]
> <xsl:variable name="instance-id" select="document/item/@id" />
> <xsl:variable name="item-doc" select="document(
> 'documents/$instance-id/item.xml' )" />
> [...]
> </xsl:stylesheet>
>
> The problem is there may not be a document there, which is an OK
> state of affairs.  What is the xsl code idiom for detecting when
> document() is unable to find a document at the given location, and to
> handle this in a more meaningful way than exiting on error?
>
> If it matters I'm using saxon 6.5.2.
>
> thanks,
> +jeff
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.