Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 30th, 2006, 05:34 PM
Authorized User
 
Join Date: Mar 2006
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default axis problem

check my xml
<Main>
  <X>
     <A @error="dfdfsfds"/>
      <B>
           <M>abc</M>
           <N @error="sdfsf"/>
      </B>
      <C/>
       <D @error="sdsdSD">
 <X>
<X>
     <A @error="fdgdfgdfg"/>
      <B>
         < M>def</M>
          <N></N>
     </B>
      <C @error="gdfgdfgd"/>
       <D/>
 <X>
<X>
     <A/>
      <B>
          < M>gfgfd</M>
          <N></N>
        </B>
      <C @error="jhjh"/>
       <D/>
 <X>
</Main>

i have to match record for M(for eg M='abc') and if it matching then print all error attribute of X.

My output would be
dfdfsfds
sdfsf
sdsdSD

Pls suggest me xslt for this.


 
Old July 30th, 2006, 06:05 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

<xsl:template match="X[.//M='abc']"
  <xsl:for-each select=".//@error">
    <xsl:value-of select="."/>

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old July 30th, 2006, 08:55 PM
Authorized User
 
Join Date: Mar 2006
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default

this is not correct.It is printing def and gfgfd also

 
Old July 31st, 2006, 02:26 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Please try to be more courteous in your language.

My response was correct, but it did not try to be a complete stylesheet. You only told me part of what you wanted to do, so I gave you the part of the code needed to do that. Getting the rest right is up to you.

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference





Similar Threads
Thread Thread Starter Forum Replies Last Post
Consuming Axis Web Service from .NET - Problem Koushik .NET Web Services 0 October 28th, 2006 07:29 AM
Packages problem with WS under Axis edoardo.tosca Apache Tomcat 0 January 26th, 2006 07:17 PM
Problem in formating Y axis of Chart mayuri Crystal Reports 0 December 26th, 2005 08:15 AM
Apache, Axis and JDK for web service problem solomon_13000 Apache Tomcat 0 August 26th, 2005 08:16 AM
Tomcat 5 and Axis: JWS problem rushman Apache Tomcat 0 April 15th, 2005 09:30 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.