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

using the AND condition

Subject: using the AND condition
From: "CROFT, MICHAEL" <MCROFT@xxxxxxxxx>
Date: Wed, 5 Jun 2002 16:33:26 -0400
using and or condition xml
I need to search for elements that contain certain text and are part of a
certain parent element.  I need to search the whole document and find the
specific parent element, that contains certain child elements with certain
text.  This information needs to be printed in order.  For example:
<ListOfInsClaimsContact>
				<InsClaimsContact Id="1-16HHT">
					<BirthDate>04/08/2002
00:00:00</BirthDate>
	
<CellularPhoneNumber>3418748901</CellularPhoneNumber>
					<ContactRole>Insured</ContactRole>>
					<PositionInVehicle>passnege
of</PositionInVehicle>
	
<RoleInAccident>Owner</RoleInAccident>
				</InsClaimsContact>
				<InsClaimsContact Id="2-16HHT">
					<BirthDate>04/08/2002
00:00:00</BirthDate>
	
<CellularPhoneNumber>3418748901</CellularPhoneNumber>
					<ContactRole>Witness</ContactRole>>
					<PositionInVehicle>passnege
of</PositionInVehicle>
	
<RoleInAccident>Driver</RoleInAccident>
				</InsClaimsContact>
</ListOfInsClaimsContact>


Basically my logic needs to say, Find the <InsClaimsContact> element that
contains a <RoleInAccident> element whose data is "Driver", AND a
<ContactRole> element whose data is "Witness", then process this
InsClaimsContact element.
Next, find the <InsClaimsContact> element that contains a <RoleInAccident>
element whose data is "Owner" AND a <ContactRole> element whose data is
"Insured", then process this InsClaimsContact element.
This continues for many possible combinations, and of course the xml content
will not be in the order I need it to print in the report.

Also, this template below wont work....This will match on the first
InsClaimsContact element and do the conditional logic, this wont "force" the
printing of the order I specify.

		<xsl:template match="//InsClaimsContact">
			<xsl:if test="(RoleInAccident='Driver') and
(ContactRole='Insured')">  this could be false for the first match of
InsClaimsContact, and fall to next if.  I need to force it to find these
elements to print.
				FOUND FIRST MATCH; PRINT THIS
InsClaimsContact elements information FIRST
			</xsl:if>
			<xsl:if test="(RoleInAccident='Owner') and
(ContactRole='Witness')">
				FOUND SECOND MATCH; PRINT THIS
InsClaimsContact elements information SECOND
			</xsl:if>
		</xsl:template>


Mike



**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the sender and postmaster@xxxxxxxxxx
**********************************************************************
 


 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.