Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Components
Assignee
Rodrigo PastranaRodrigo PastranaReporter
Tim KlemmTim KlemmPriority
CriticalFix versions
Pull Request URL
Details
Details
Components
Assignee
Rodrigo Pastrana
Rodrigo PastranaReporter
Tim Klemm
Tim KlemmPriority
Fix versions
Pull Request URL
Created May 17, 2018 at 7:13 PM
Updated May 18, 2018 at 2:10 PM
Resolved May 18, 2018 at 2:10 PM
esp.xsl includes markup to copy CustomBindingParameter elements from environment.xml into esp.xml for static bindings.
esp_service_DynamicESDL.xsl is missing similar markup, preventing defined data from being copied. Some security managers rely upon these custom parameters to manage authorization requests, and cannot function without them.
The missing markup, to be inserted in EspBinding either before or after the authentication template call, is as follows:
<xsl:if test="$bindingNode/CustomBindingParameter">
<CustomBindingParameters>
<xsl:for-each select="$bindingNode/CustomBindingParameter">
<xsl:copy-of select="."/>
</xsl:for-each>
</CustomBindingParameters>
</xsl:if>