4

我是 wso2 esb 的新手,定义了 3 个服务,它们返回整数值并使用过滤器调解器从一个路由到另一个,但工作不正确,在过滤器模式下总是返回 false 我的来源是:

<sequence xmlns="http://ws.apache.org/ns/synapse" name="SeqOne">
<log level="full"/>
<property xmlns:ns="http://org.apache.synapse/xsd" xmlns:m0="http://tempuri.org/"        name="CParam" expression="//m0:SumSerViseResponse/m0:SumSerViseResult" scope="default"   type="INTEGER"/>
<log level="custom">
  <property xmlns:ns="http://org.apache.synapse/xsd" name="CParam"  expression="$ctx:CParam"/>
</log>
<property name="propertyA" value="4" scope="default" type="INTEGER"/>
<log level="custom">
  <property xmlns:ns="http://org.apache.synapse/xsd" name="propertyA" expression="get-property('propertyA')"/>
</log>
<property xmlns:ns="http://org.apache.synapse/xsd" name="propertyCompare" expression="$ctx:CParam > get-property('propertyA')" type="STRING"/>
<log level="custom">
  <property xmlns:ns="http://org.apache.synapse/xsd" name="propertyCompare" expression="get-property('propertyCompare')"/>
</log>
<filter xmlns:ns="http://org.apache.synapse/xsd" source="get-property('propertyCompare')" regex="true">
  <then>
4

2 回答 2

10

我尝试了您的方案并得到与您相同的输出。然后深入研究它,因为这是一个基本功能,而且我认为我以前做过类似的事情。

这里的问题在于属性的类型。由于某种奇怪的原因INTEGER在这里不起作用。你需要有DOUBLESTRING。即使你有字符串,当你像这里一样进行比较时,它也会正确地转换它。以下对我有用。

<inSequence>
     <log level="full"/>
     <property xmlns:m0="http://tempuri.org/"
               name="CParam"
               expression="//m0:SumSerViseResponse/m0:SumSerViseResult"
               scope="default"
               type="DOUBLE"/>
     <log level="custom">
        <property name="CParam" expression="$ctx:CParam"/>
     </log>
     <property name="propertyA" value="4.0" scope="default" type="DOUBLE"/>
     <log level="custom">
        <property xmlns:ns="http://org.apache.synapse/xsd"
                  name="propertyA"
                  expression="get-property('propertyA')"/>
     </log>
     <property name="propertyCompare"
               expression="$ctx:CParam > get-property('propertyA')"
               scope="default"
               type="BOOLEAN"/>
     <log level="custom">
        <property name="propertyCompare" expression="get-property('propertyCompare')"/>
     </log>
     <filter xpath="$ctx:CParam > get-property('propertyA')">
        <then>
           <send>
              <endpoint>
                 <address uri="http://localhost:9000/services/SimpleStockQuoteService"/>
              </endpoint>
           </send>
        </then>
        <else>
           <drop/>
        </else>
     </filter>
  </inSequence>
于 2013-09-18T13:24:46.130 回答
1

以下是使用 switch 中介完成的示例,

<switch source="get-property('propertyCompare')">
        <case regex="1">
           <log>
              <property name="one" value="__________ONE__________"/>
           </log>
        </case>
        <case regex="2">
           <log>
              <property name="two" value="__________TWO__________"/>
           </log>
        </case>
     </switch>

根据您的需要将日志中介替换为发送中介。

于 2013-09-18T10:13:16.427 回答