Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I get TicketDate from xml document?

Status
Not open for further replies.

momo2000

Programmer
Jan 2, 2015
63
0
0
US
What I want to do is use the xml document to get the TicketDate. The xml document could have more than one ChargeID. So I have to match the ChargeHistoryID a child of CitationCharge to the ChargeHistoryID a child of Charge. This ensures I get the right TicketDate for the right Charge and Citation.

The output can look like this.
XML:
<Charge>
    <Citation>
        <TicketDate>2014-03-26</TicketDate>
    </Citation>
</Charge>

Desired output
XML:
<ext:Charge>
    <ext:Citation>
        <nc:ActivityDate>2014-03-26</nc:ActivityDate>
    </ext:Citation>
</ext:Charge>

xml

XML:
<Integration xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:tsg="[URL unfurl="true"]http://tsgweb.com"[/URL] xmlns:IXML="[URL unfurl="true"]http://tsgweb.com"[/URL] xmlns:CMCodeQueryHelper="urn:CMCodeQueryHelper" PackageID="IXML Case Notification Test" MessageID="67078058" xmlns="">
    <Case InternalID="1616807927" ID="11747370" xmlns:user="[URL unfurl="true"]http://tylertechnologies.com">[/URL]
        <Charge ID="10547226" PartyID="16580814" CurrSentenceID="155092098" InternalChargeID="1616447618" InternalPartyID="1614482843" xmlns:reslib="urn:reslib">
            <ChargeOffenseDate>03/26/2014</ChargeOffenseDate>
            <ChargeHistory ChargeHistoryID="41490827" Stage="Citation Issued" CitationEventSequence="1" InternalOffenseHistoryID="1635954992">
                <ChargeNumber>1</ChargeNumber>
            </ChargeHistory>
        </Charge>
    </Case>
    <Citation ID="5131033" xmlns:user="[URL unfurl="true"]http://tylertechnologies.com">[/URL]
        <TicketDate>03/26/2014</TicketDate>
        <CitationCharge>
            <ChargeID>10547226</ChargeID>
            <ChargeHistoryID>41490827</ChargeHistoryID>
        </CitationCharge>
    </Citation>
</Integration>

Xslt
Code:
<xsl:template name="ChargeDetails">
         <ext:Citation>
        <xsl:if test="@Stage='Citation Issued'">
        <!--<xsl:for-each select="../../DispositionEvent[Disposition/@ChargeHistoryID=current()/@ChargeHistoryID][1]">-->
        <xsl:for-each select="/Integration/Citation/CitationCharge[ChargeHistoryID=current()/@ChargeHistoryID][1]">
            <nc:ActivityDate>
                <xsl:value-of select="mscef:formatDate(string(../TicketDate))"/> 
            </nc:ActivityDate>
            </xsl:for-each>
            </xsl:if>
        </ext:Citation>
    </xsl:template>
 
I am not as familiar with this particular corner of LegalXML. (I am blundering around in CivilCase land right now.)

Are you saying that there can be multiple <Citation> with an <Integration>? Are you trying to relate from a particular <Charge> to find all of the <Citation> that pertain to that <Charge>?

Several confusing points. What is the context node for the called template you have provided? Most of your <xsl:value-of> XPath expressions refer to non-existing nodes in the example XML.

Sorry, but I think you need to provide a better problem statement.



Tom Morrison
Hill Country Software
 
momo2000, any additional insight on this?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top