using xsl:import and trying to access a variable defined in another xsl
Hi
I am having a a.xsl file with contents liek this :
...
<xsl:variable name="PersonId" select="'1910'"/>
...
inside b.xsl i am importing a.xsl like
...
<xsl:import href="a.xsl"/>
<xsl:value-of select="$PersonId"/>
...
This is working fine when i am testing it standalone.
when i port the code to weblogic server (meaning when all the
project related files are placed in proper location in
weblogic) and start the application then i get the error msg :
xsl:1031 variable not defined 'PersonId'.
i tried giving the enite path like :http://localhost:7001/....
even then problem remains unresolved.
am i making any mistake ?
Thank you
Regards
Jaya