Skip to content

Instantly share code, notes, and snippets.

@thiyagaraj
Created March 28, 2012 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiyagaraj/2229017 to your computer and use it in GitHub Desktop.
Save thiyagaraj/2229017 to your computer and use it in GitHub Desktop.
WebSphere DataPower Config nodes to get input from console setting
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:dp="http://www.datapower.com/extensions" xmlns:dpconfig="http://www.datapower.com/param/config" extension-element-prefixes="dp" exclude-result-prefixes="dp dpconfig">
<!--
This param can be set via the DataPower GUI in the console, and it will come as input to the transformation
-->
<xsl:param name="dpconfig:paramName"/>
<dp:param name="dpconfig:paramName">
<display>Param name value</display>
<description>Param Name Description can go here</description>
</dp:param>
<xsl:template match="/">
<!-- Other stuff -->
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment