Dynamic change of page header in XSLT
I want same Image to be in Header however the content over image should change dynamically according to value in XML node
<fo:flow flow-name="header">
<fo:table>
<fo:table-body>
<fo:table-cell border="0pt">
<fo:block>
<fo:external-graphic ID="headerlogo" src="url('imgae_url')" content-width="50%" content-height="50%">
<fo:table-cell border="0pt">
<fo:block margin-top="1.5cm" margin-right="1.2cm" text-align="left" >
<fo:inline font-size="30pt" color="white" >
<xsl:value-of select="path_url"/>
</fo:inline>
</fo:block>
</fo:table-cell>
</fo:external-graphic>
</fo:block>
</fo:table-cell>
</fo:table-body>
</fo:table>
</fo:flow>