Hi Joel
Joel wrote:
> >> When I examine the XML returned by the RequestGenerator,
> it has all
> >> the headers
> >> etc. and then the parameters. The relevent part looked like:
> >>
> >> <h:parameter name="12,23">
> >> <h:value/>
> >> </h:parameter>
Since you report that the parameters appeared in the RequestGenerator
output, you could extract them using an XSLT:
<xsl:template match="/">
<xsl:variable name="parameters"
select="//h:parameter/@name[contains(.,',')]"/>
x=<xsl:value-of select="substring-before($parameters,',')"/>
y=<xsl:value-of select="substring-after($parameters,',')"/>
</xsl:template>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]