-
Notifications
You must be signed in to change notification settings - Fork 64
Description
Hi,
I have configured result action using dp:url-open(), I can see DP is calling the backend services but after checking the probe in the backend services, the content is empty. I'm using the below xslt:
[](
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dp="http://www.datapower.com/extensions" xmlns:dpconfig="http://www.datapower.com/param/config" extension-element-prefixes="dp" exclude-result-prefixes="dp dpconfig">
<xsl:output method="xml" />
<xsl:template match="/">
<xsl:variable name="resultsList">
<dp:url-open target="http://10.14.147.112:9988/MainLocation"></dp:url-open>
<dp:url-open target="http://10.14.147.112:4188/PrmtoErpMainLoc"></dp:url-open>
</xsl:variable>
<dp:set-variable name="'var://context/uservars/backendURLs'" value="$resultsList"/>
<xsl:copy-of select="."/>
</xsl:template>
</xsl:stylesheet>)
Where do I need to make changes in the configuration ? can someone help on this. This is an urgent requirement though.