| re: XSLT & The Noob........
Hi Dormilich -
The CIDX standard allows for 2 date fields in the Header:
Header 1..1
ThisDocumentIdentifier 1..1 ThisDocumentDateTime 1..1
RequestingDocumentIdentifier 0..1 RequestingDocumentDateTime 0..1
From 1..1
To 1..1
I need both anyway.
The stylesheet is using
<xsl:for-each select="./OrderResponseBody"> which seems to be preventing me from puilling in the date/time elements from the header.
I've tried selecting Header/RequestingDocumentDateTime/DateTime/text()) and that returns nothing. I've also tried preceeding-sibling and that returns the same date for all 3 orders in the sample data. As you can see from the XSLT, I'm stuck using version 1.0 and I'm forced to use a really ugly conversion from 'Zulu' time as well. So far, the only thing that has gotten me even close is the following-sibling currently in the XSLT but that returns 2 of the 3 dates.
Bob
|