将http响应转换为xml

时间:2015-03-23 09:14:54

标签: xml mule esb

这是我与Mule的第一步,所以我可能不了解一些基本概念。

有一个运行Prestashop的商店,它公开了REST服务。

我现在要做的就是发送请求到商店,获得回复,替换一个值,然后将其保存到文件中。

响应如下:

<?xml version="1.0" encoding="UTF-8"?>
<prestashop xmlns:xlink="http://www.w3.org/1999/xlink">
<stock_available>
    <id><![CDATA[1]]></id>
    <id_product xlink:href="http://xxxxxxxxxxxxx/api/products/1"><![CDATA[1]]></id_product>
    <id_product_attribute><![CDATA[0]]></id_product_attribute>
    <id_shop xlink:href="http://xxxxxxxxxxxxx/api/shops/1"><![CDATA[1]]></id_shop>
    <id_shop_group><![CDATA[0]]></id_shop_group>
    <quantity><![CDATA[0]]></quantity>
    <depends_on_stock><![CDATA[0]]></depends_on_stock>
    <out_of_stock><![CDATA[2]]></out_of_stock>
</stock_available>
</prestashop>

我想替换数值&#39;。现在 - 具有恒定的价值。 我目前的流程是:

<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:file="http://www.mulesoft.org/schema/mule/file" xmlns:data-mapper="http://www.mulesoft.org/schema/mule/ee/data-mapper" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:mulexml="http://www.mulesoft.org/schema/mule/xml" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
    xmlns:spring="http://www.springframework.org/schema/beans" version="EE-3.6.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/xml http://www.mulesoft.org/schema/mule/xml/current/mule-xml.xsd
http://www.mulesoft.org/schema/mule/file http://www.mulesoft.org/schema/mule/file/current/mule-file.xsd
http://www.mulesoft.org/schema/mule/ee/data-mapper http://www.mulesoft.org/schema/mule/ee/data-mapper/current/mule-data-mapper.xsd">
    <http:listener-config name="HTTP_Listener_Configuration" host="0.0.0.0" port="8081" doc:name="HTTP Listener Configuration"/>
    <http:request-config name="HTTP_Request_Configuration" host="xxxxxxxxxxxxxxxx" port="80" basePath="/api/" doc:name="HTTP Request Configuration">
        <http:basic-authentication username="xxxxxxxxxxxxxxxxxxxxxxx" password="x"/>
        <http:raml-api-configuration location="api.raml"/>
    </http:request-config>
    <flow name="1Flow">
        <http:listener config-ref="HTTP_Listener_Configuration" path="/" doc:name="HTTP"/>
        <http:request config-ref="HTTP_Request_Configuration" path="/stock_availables/{id}" method="GET" doc:name="HTTP">
            <http:request-builder>
                <http:uri-param paramName="id" value="#[message.inboundProperties.'http.query.params'.id]"/>
            </http:request-builder>
        </http:request>
        <byte-array-to-object-transformer doc:name="Byte Array to Object" mimeType="text/xml"/>
        <mulexml:object-to-xml-transformer doc:name="Object to XML"/>
        <file:outbound-endpoint path="C:\test" outputPattern="test.txt" responseTimeout="10000" doc:name="File"/>
    </flow>
</mule>

这已经连接到服务,获取响应并保存文件。 但我不知道如何修改它的内容。

我无法理解的一个问题是: 当我查看调试器时,在&#34; Byte Array To Object&#34;之后,有效负载的类型为java.lang.string。在&#34;对象到XML&#34;有效负载仍然是java.lang.string类型,有效负载的值是:

<string>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;prestashop xmlns:xlink=&quot;http://www.w3.org/1999/xlink&quot;&gt;
&lt;stock_available&gt;..............blahblahblah.........</string>

当我尝试使用xslt变换时,会导致错误。

如何修改该值?

3 个答案:

答案 0 :(得分:1)

这里有几个选项。首先,您的http传输将返回一个字节数组,然后您可以使用字节数组转换为字符串到字符串转换器。之后,您可以调用自定义处理器并转换java代码中的字符串有效内容,或者尝试MEL(#[regex()]中的正则表达式函数和字符串appender转换器的某种组合,以完全转换mule xml中的有效负载码。

答案 1 :(得分:0)

您可以通过xpath从响应xml获取所有值。 请查看以下链接中的示例5 http://www.mulesoft.org/documentation/display/current/Mule+Expression+Language+Examples

答案 2 :(得分:0)

我试图向您概述您可以采取的方向,而不一定是为您提供直接的解决方案,对不起!

描述您需要介绍&#34;消息处理器&#34;的关键字。在你的,更具体地说是变形金刚。

Transformer将接收您的XML,将对其进行所需的调整,并将修改后的XML提供给输出,在您的情况下为文件端点。

例如,您可以以POJO的形式编写变压器。您将XML作为字符串发送给它。 Java类有一个方法可以处理并返回修改后的String(也就是你想要的XML)。

要获取String,您应该使用变换器Byte-Array-to-String。