0

问题: 我正在尝试将 uuid 作为新元素添加到传入的 xml 消息中。我可以看到在我记录结果时添加了它,但是 mule 将它的命名空间和 java util uuid 命名空间添加到结果中,这导致我路由此消息的另一个服务,不识别它,因为它有一个它没有的命名空间知道关于。

有没有办法配置 xslt 转换器来实现我在这里尝试做的事情?还有其他可以替代的建议吗?

目标是让 xslt 生成一个 uuid 并标记传入消息并将其传递给服务端点。感谢这方面的所有帮助。

骡配置:

<mule xmlns:mulexml="http://www.mulesoft.org/schema/mule/xml"
  xmlns:tracking="http://www.mulesoft.org/schema/mule/ee/tracking"
  xmlns:http="http://www.mulesoft.org/schema/mule/http" 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.4.1"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:billing="http://mycompany.com/billing"
  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/ee/tracking http://www.mulesoft.org/schema/mule/ee/tracking/current/mule-tracking-ee.xsd
http://www.mulesoft.org/schema/mule/xml http://www.mulesoft.org/schema/mule/xml/current/mule-xml.xsd">

  <mulexml:xslt-transformer name="xslt"
    doc:name="XSLT">
    <mulexml:xslt-text>
      <xsl:stylesheet version="2.0" xmlns:uuid="java:java.util.UUID">
        <xsl:variable name="uid" select="uuid:randomUUID()" />
        <xsl:template match="/">
          <xsl:apply-templates />
        </xsl:template>

        <xsl:template match="node()|@*">
          <xsl:copy>
            <xsl:apply-templates select="node()|@*" />
          </xsl:copy>
        </xsl:template>

        <xsl:template match="Request">
          <Request>
            <xsl:apply-templates select="node()|@*" />
            <RequestId>
              <xsl:value-of select="$uid" />
            </RequestId>
          </Request>
        </xsl:template>
      </xsl:stylesheet>
    </mulexml:xslt-text>
  </mulexml:xslt-transformer>

  <flow name="rsi_invoiceFlow1" doc:name="rsi_invoiceFlow1">
    <http:inbound-endpoint exchange-pattern="request-response"
      address="${listener.hostname}:${listener.port}/${listener.path.invoice.rsi}"
      doc:name="HTTP" transformer-refs="xslt" />


    <logger message="#[message.payloadAs(java.lang.String)]" level="ERROR"
      doc:name="Logger" />

    <http:outbound-endpoint exchange-pattern="request-response"
      method="POST" address="${destination.dev2.url}/" doc:name="HTTP"
      doc:description="The '/' at the end of the URL is required on the RSI outbound call" />
  </flow>
</mule>

传入的 XML:

<?xml version="1.0" encoding="UTF-8"?>
<billing:RQ xmlns:billing="http://mycompany.com/billing">
  <Request>
    <CallingHostOrWeblogicInstance>SOAPUI</CallingHostOrWeblogicInstance>
  </Request>

输出:

<?xml version="1.0" encoding="UTF-8"?>
<billing:RQ xmlns:billing="http://mycompany.com/billing">
<Request xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:uuid="java:java.util.UUID"><CallingHostOrWeblogicInstance xmlns="">SOAPUI</CallingHostOrWeblogicInstance>
<RequestId>bff3e1d6-ecdd-41ae-8807-ec04085a2b54</RequestId>
</Request>
4

4 回答 4

1

XSLT 在有效的默认名称空间中创建没有指定名称空间的新元素。

在您的情况下,默认命名空间被声明为xmlns="http://www.mulesoft.org/schema/mule/core",因此<Request>您输出的元素将位于该命名空间中。

一种方法是完全避免使用默认命名空间。而是使用前缀xmlns:mule="http://www.mulesoft.org/schema/mule/core",然后使用<mule:mule>,等。如果您发现太长<mule:flow>,请使用。<mule:logger>m:mule:

这可能是最干净的方法。无论如何,您已经在使用许多其他名称空间,明确说明那个名称不会受到伤害。

另一个变体是在 XSLT 声明中将默认命名空间重置为空:

<xsl:stylesheet 
   version="2.0" 
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:uuid="java:java.util.UUID" 
   xmlns=""
>
  <!-- ... -->
</xsl:stylesheet>

您也可以使用<xsl:copy>而不是显式创建一个新的<Request>- 但是您仍然会遇到同样的问题<RequestId><RequestId xmlns="">可以解决这个问题,但它相当难看,特别是如果它不是您创建的唯一元素。

如果您不想将 XSLT 外部化(正如 David 建议的那样),我建议您使用“无默认命名空间”方法。

于 2014-02-20T22:50:03.470 回答
0

在 xsl:stylesheet 元素上使用 xmlns="" 来重置默认命名空间。

在 xsl:stylesheet 元素中使用 exclude-result-prefixes 以避免其他 mule 命名空间泄漏到样式表中。

(您也可以使用 XML 1.1 “名称空间取消声明”,它是为此目的而发明的,但我不会那样做:XML 1.1 没有得到足够广泛的支持以使该技术变得健壮。)

于 2014-02-21T10:43:02.093 回答
0

我尝试了所有 3 条建议,我认为将转换与流配置分开最适合我的情况,因为它提供了最干净和解耦的方法来解决这个问题。

谢谢大家的回复。

于 2014-02-24T14:59:39.673 回答
0

不要将 XSL 嵌入 Mule 配置本身,而是存储在独立文件中。您将避免命名空间污染,这是最佳实践。

于 2014-02-20T21:22:45.173 回答