【发布时间】:2017-06-29 17:05:26
【问题描述】:
我们正在将位置标头重写逻辑从 IIS 反向代理移动到 IBM dataPower XI52。我知道我们在 DP 上具有标头重写功能,但我无法理解如何在 DP 上实现以下场景,请指导我?我可以知道这里的 R:1、R:2 和 R:3 指的是什么吗? IIS反向代理上的Location HeaderRewrite传出规则:
<rule name="Change Location Header" enabled="true">
<match serverVariable="RESPONSE_LOCATION" pattern="^http(s)?://([^/]+)/(.*)" />
<conditions logicalGrouping="MatchAny" trackAllCaptures="true">
<add input="{RESPONSE_STATUS}" pattern="^301" />
<add input="{RESPONSE_STATUS}" pattern="^302" />
</conditions>
<action type="Rewrite" value="http{R:1}://{R:2}/{R:3}" />
</rule>
我可以知道我们如何在 DP 上实现相同的功能吗?
我尝试使用下面的 xslt,但得到空的 LocationHeader_output 值,这里做错了吗?
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:dp="http://www.datapower.com/extensions"
xmlns:re="http://exslt.org/regular-expressions"
extension-element-prefixes="dp re"
exclude-result-prefixes="dp">
<xsl:template match="*">
<xsl:choose>
<xsl:when test="dp:responding()">
<xsl:variable name="code">
<xsl:choose>
<xsl:when test="dp:http-response-header('x-dp-response-code') != ''">
<xsl:value-of select="substring(dp:http-response-header('x-dp-response-code'), 1, 3)"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="substring(dp:variable('var://service/error-headers'), 10, 3)" />
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:if test="$code = '301' or $code = '302'">
<xsl:variable name="location" select="dp:http-response-header('Location')"/>
<xsl:variable name="location_final">
<xsl:value-of select="re:replace($location, '^http(s)?://([^/]+)/(.*)', 'g', 'http{$1}://{$2}/{$3}')" />
</xsl:variable>
<dp:set-http-response-header name="'Location'" value="$location_final" />
</xsl:if>
<!-- the following prevent DataPower from overriding the response code coming back from Server-->
<dp:set-response-header name="'x-dp-response-code'" value="'-1'"/>
</xsl:when>
<xsl:otherwise/>
</xsl:choose>
</xsl:template>
【问题讨论】:
标签: regex xslt xslt-2.0 pcre ibm-datapower