Hi,
I have a XML file who starts like this:
Code:
<StateMachineWorkflowActivity x:Class = "ReviewWorkflows.ReviewWF"
x:Name = "ReviewWF" DynamicUpdateCondition = "{x:Null}"
xmlns:ns0 = "clr-namespace:ReviewWorkflows" xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml"
xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/workflow">
.....
</StateMachineWorkflowActivity>
and when i apply my XSLT:
Code:
<xsl:template match="/">
<xsl:value-of select ="vt:initCount()"/>
<Root>
<xsl:apply-templates select="StateMachineWorkflowActivity/StateActivity" mode="sa"/>
</Root>
</xsl:template>
<xsl:template match="StateActivity" mode="sa">
....
i never match the node StateMachineWorkflowActivity!!!
but if i edit my orignal file and remove the StateMachineWorkflowActivity attributes, i have no problem!!
Code:
<StateMachineWorkflowActivity>
...
</tateMachineWorkflowActivity>
Thank's a lot