我是WSO2 EI
的新手。
现在,我已经创建了一个rest API,
,并按先后顺序使用创建的API中的参数调用第一个WSDL
端点,并从该WSDL
端点检索下一个XML。
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://pse/">
<SOAP-ENV:Body>
<ns1:dl190Response>
<mvts>
<mvts_S>
<x>x1</x>
<w>w1</w>
</mvts_S>
<mvts_S>
<x>x2</x>
<w>w2</w>
</mvts_S>
</mvts>
</ns1:dl190Response>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
如何创建具有值"Your statistic is x1, w1, x2, w2"
的参数以调用带有get参数的下一个端点?
来自第一个端点的XML数组可以具有不同的权重。
我可以使用哪些调解人?
谢谢!
答案 0 :(得分:0)
据我所知,您的要求是从XML中获取值并将其存储在变量中,以便您可以使用该值调用其他内容,如果这种理解正确,则可以使用xpath来获取值并存储它们放在一个属性中,您以后可以使用该属性。
<property name="yourParameter" expression="concat('Your statistic ',$body//*[local-name()='mvts_S'][1]/*[local-name()='x'],',',$body//*[local-name()='mvts_S'][1]/*[local-name()='w'],',',$body//*[local-name()='mvts_S'][2]/*[local-name()='x'],',',$body//*[local-name()='mvts_S'][2]/*[local-name()='w'])"/>
<log level="custom">
<property name="yourParameter" expression="$ctx:yourParameter"/>
</log>
以上仅在固定数组的情况下有效,但是对于数组中的多个元素,您需要编写xslt介体,然后将其输出连接到属性中。
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:tem="http://tempuri.org/">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="/">
<Root>
<xsl:for-each select="//*[local-name()='dl190Response']/*[local-name()='mvts']/*[local-name()='mvts_S']">
<xsl:value-of select="concat(x,',')"/><xsl:value-of select="concat(w,',')"/>
</xsl:for-each>
</Root>
</xsl:template>
</xsl:stylesheet>
xslt介体使用属性介体后
<log level="custom">
<property name="yourParameter" expression=" concat ('Your statistic ',$body//*[local-name()='Root']/text())"/>
</log>
<property name="yourParameter" expression=" concat ('Your statistic ',$body//*[local-name()='Root']/text())"/>
<log level="custom">
<property name="yourParameter1" expression="substring($ctx:yourParameter,1,string-length($ctx:yourParameter)-1)"/>
</log>