在 WSO2 ESB 代理服务中,我如何根据来自某些 Web 服务响应的整数值进行迭代,就像“foreach”一样:
例如这样的响应消息:
<Response>
<noOfcustomers>10</noOfCustomers>
</Response>
我需要迭代 10 次(根据客户数量)
这可能吗?我怎样才能做到这一点?
谢谢你的帮助!
我还没有找到一种干净的方法来做到这一点,但这是一个混乱的解决方案。
首先,您需要一个 XSLT 转换。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exclude-result-prefixes="xsl xsi">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:param name="iterations"/>
<xsl:template name="for.loop">
<xsl:param name="i"/>
<xsl:param name="count"/>
<!--begin_: Line_by_Line_Output -->
<xsl:if test="$i <= $count">
<iteration>
<xsl:value-of select="$i"/>
</iteration>
</xsl:if>
<!--begin_: RepeatTheLoopUntilFinished-->
<xsl:if test="$i <= $count">
<xsl:call-template name="for.loop">
<xsl:with-param name="i">
<xsl:value-of select="$i + 1"/>
</xsl:with-param>
<xsl:with-param name="count">
<xsl:value-of select="$count"/>
</xsl:with-param>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template match="/">
<iterations>
<xsl:call-template name="for.loop">
<xsl:with-param name="i">1</xsl:with-param>
<xsl:with-param name="count"><xsl:value-of select="$iterations"/></xsl:with-param>
</xsl:call-template>
</iterations>
</xsl:template>
</xsl:stylesheet>
然后你在你的序列中使用转换,如下所示:
<inSequence>
<xslt key="conf:/repository/test/iterations.xslt">
<property name="iterations" expression="//noOfcustomers"/>
</xslt>
<iterate expression="//iterations/iteration" sequential="true">
<target>
<sequence>
</sequence>
</target>
</iterate>
</inSequence>
迭代中介器中的序列将为“迭代”中的每个元素运行。这种方法的缺点是您将使用迭代 XML 替换消息正文,因此如果您希望重用原始消息,则必须在转换之前使用丰富的中介将原始消息保存到属性中。
您可以基于 xpath进行迭代。但目前我们没有柜台支持。你的实际用例是什么?
从 ESB 4.9 开始,ForEach 中介器支持这一点