Subjects
Home
Xalan extension functions
Fomatting question serializing DOM with pretty print
xalan with pull parser
Cannot find the declaration
Apache Xalan drop support to run on JRE 1 1 x
Why does Doctype change processing of a document
Node set to XML string via Java extensions in Xalan J: possible?
Templates/Transformers + thread safety???
Problem evaluating xpath with muliple prefix with different namespace
remove an arbitrary attribute from xsl output
Xalan3 XSLT 2 0 XPath 2 0 support?
Problem using compiled translets with Xalan !!
Xalan and jstl 1 1 problem with transform tag
NullPointer in DOM2DTM getLocalName
URIResolvers base parameter with xsltc and cascaded imports
Performance problem for Xalan J on intel dual core
Standard libraries in JAXP?
Serializing a DOM tree to XML file, customize entities replacement
Library Conflict Involving BCEL Library
A question on how users are using <xsl:message >
Kevin Cormier as a new Apache Xalan J committer
Struggling to iterate over tokenized string
Xalan count() trouble
Problem with recursive xpath
Error when switching to java 1 5
document( ' ')
Problem with Xalan2 7 0 transformation
cr/lf options
entity encoded XML
can xalan transform 2 xml using one xslt?
Xalan J JIRA defect review Monday October 16, 2006 from 2:00 to 3:30 pm ED
xsl transform with cdata section elements
xslt parameters not expanded
Weird behavior of XPath evaluate()
How to avoid <xsl:message > instruction prints stylesheet file informations ?
Cannot find SimpleTransform subdirectory after installing Xalan J
recover from document not found exceptions
jdk1 5 and Xalan jar differences?
Performance Issue
Error/Bug adding floating point numbers
XPathAPI: eval exp using nodes with default namespace
modifying xalan to output invalid XML
NullPointerException
mege two separate xml nodes into one
Is this a XALAN document identification bug?
is StylesheetRoot really java io Serializable ?
transform() fails for DOMSource but succeeds for StreamSource
Thoughts on Transformer parameter passing
HELP, Xalan and jstl 1 1 problem with transformer
Problem with XPath namespace axis?
string utils:replace deleting search string if replacement string is an HTML
help with enumeration values pls
xalan 2 5 1 vs 2 7 performance question
How to insert/update in XML document
HTML Serialization and Handling of Ampersands in HREF Attributes
XHTML link tag stripping
SystemId Unknown; Line #24; Column #49; java lang NullPointerException
xpath text() help
Apostrophe problem with xalan 2 7 0
How to set variables in XML document?
Links
Home
Oracle database error code ...
 
Search:  
Power your search with and, or, +, -, or "some phrase" operators.
The test conditional doesn 't seem to work

The test conditional doesn 't seem to work

2003-04-22       - By kroberts@(protected)
Reply:     1     2     3     4     5     6     7  

I'm migrating an app from xalan-java-1 to xalan-java 2.4.1 and it seems
that all the conditions evaluate to false.

The stylesheet:

<?xml version="1.0"?>

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

     <xsl:output method="html" indent="yes" doctype-public="-//W3C//DTD
HTML 4.01 Transitional//EN" encoding="UTF-8"/>

     <xsl:template match="/">
           <html style="cursor:wait">
                 <head>
                       <title>Toolbar</title>
                 </head>
                 <body>
               <table>
               <tr>
                   <xsl:choose>
                         <xsl:when test="summary/patient/field='ON'">
                       <td>Field is ON</td>
                         </xsl:when>
                         <xsl:otherwise>
                       <td>Field is OFF</td>
                         </xsl:otherwise>
                   </xsl:choose>
               </tr>
               <tr>
                   <xsl:choose>
                         <xsl:when test
="number(selected_applications/numitems/field)>1">
                       <td>Numitems gt 1</td>
                         </xsl:when>
                         <xsl:otherwise>
                       <td>Numitems not gt 1</td>
                         </xsl:otherwise>
                   </xsl:choose>
               </tr>
               </table>
           </body>
       </html>
     </xsl:template>
</xsl:stylesheet>

Prints out Field is OFF and Numitems not gt 1

The xml doc is:

<Module-1801 binitem="1801">
   <selected_applications section="selected applications">
       <_9 name="9">
           <field>
               MMMHISVitals.Vitals
           </field>
       </_9>
       <_8 name="8">
           <field>
               MMMHISPatList.PatList
           </field>
       </_8>
       <_16 name="16">
           <field>
               MMMHISAlertrev.Alertrev
           </field>
       </_16>
       <_7 name="7">
           <field>
               MMMHISProblems.Problem
           </field>
       </_7>
       <_6 name="6">
           <field>
               MMMHISAllergy.Allergy
           </field>
       </_6>
       <_15 name="15">
           <field>
               MMMHISResultsReview.Lab
           </field>
       </_15>
       <_5 name="5">
           <field>
               MMMHISSchedule.Schedule
           </field>
       </_5>
       <_14 name="14">
           <field>
               MMMHISClinNote.ClinNote
           </field>
       </_14>
       <_4 name="4">
           <field>
               MMMHISPhoneLog.PhoneLog
           </field>
       </_4>
       <_13 name="13">
           <field>
               MMMHISImageAcq.ImageAcq
           </field>
       </_13>
       <_3 name="3">
           <field>
               MMMHISDemogrph.Demogrph
           </field>
       </_3>
       <_12 name="12">
           <field>
               MMMHISDRU.DRU
           </field>
       </_12>
       <_2 name="2">
           <field>
               MMMHIS.Enctr
           </field>
       </_2>
       <_11 name="11">
           <field>
               MMMHISAlertSystemManager.ASM
           </field>
       </_11>
       <_1 name="1">
           <field>
               MMMHISDemogrph.Demogrph
           </field>
       </_1>
       <_10 name="10">
           <field>
               MMMHISADEEntry.AdeEntry
           </field>
       </_10>
       <numitems name="numitems">
           <field>18</field>
       </numitems>
   </selected_applications>
   <summary section="summary">
       <clinician name="clinician">
           <field>
               ON
           </field>
       </clinician>
       <encounter name="encounter">
           <field>
               ON
           </field>
       </encounter>
       <patient name="patient">
           <field>ON</field>
       </patient>
   </summary>
</Module-1801>

summary/patient/field is ON and selected_appliations/numitems is > 1.

What has changed that is causing this issue?

Thanks in advance.

Keith...