xsl-list
[Top] [All Lists]

RE: [xsl] Counting records [Solved] - addendum

2008-12-09 07:48:29
Apologies.  It's the stylesheet I can't change - or even access.  It's
constructed implicitly using the XPath expression I give it.  Unless I
give it the one I mentioned, it won't work.

What I'm doing is giving BizTalk the XPath expression needed for it to
perform a transformation for me and output a result containing the
rowcount.

But never mind.  The answers you all provided me with pointed me in the
right direction so that I could then sort BizTalk out.  So I'm grateful
for that.

Cheers


Peter


-----Original Message-----
From: Martin Honnen [mailto:Martin(_dot_)Honnen(_at_)gmx(_dot_)de] 
Sent: 09 December 2008 11:35
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Counting records [Solved] - addendum

Bradley, Peter wrote:
Because that's what BizTalk requires.

I don't know BizTalk but you said it requires that saying "where I
have no control over the XML being used". However the solutions 
suggested to you did not ask you to change the XML, the simply suggested

to change the stylesheet to e.g.

<xsl:stylesheet
     xmlns:df="http://HesaValidateSqlSend";
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
     version="1.0">

     <xsl:template match="/">
       <xsl:value-of select="count(/df:HesaValidate_Response/df:row)"/>

If you can change the stylesheet in BizTalk to use the cumbersome

count(/*[local-name()='HesaValidate_Response' and
namespace-uri()='http://HesaValidateSqlSend']/*[local-name()='row' and
namespace-uri()='http://HesaValidateSqlSend'])

why can't you change it as suggested? Both are changes to the stylesheet

only.

You do not even need to put the namespace declaration on the 
xsl:stylesheet element if you can't change that, doing


<xsl:stylesheet
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
     version="1.0">

     <xsl:template match="/">
       <xsl:value-of xmlns:df="http://HesaValidateSqlSend";
                     select="count(/df:HesaValidate_Response/df:row)"/>

would suffice as well.


-- 

        Martin Honnen
        http://JavaScript.FAQTs.com/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--