缺少 soap 操作 :: Spring 集成

Missing soap action :: Spring Integration

我正在开发 spring 集成组件,我将数据发布到外部 third-party URL。它在下面的代码中运行良好。

<!-- language: lang-xml -->
    <int:chain id="channe.id"
                input-channel="request.in"
                output-channel="reply.channel">

                <int-ws:header-enricher>
                    <int-ws:soap-action
                        value="${service.soapaction}" />
                </int-ws:header-enricher>
                <int-ws:outbound-gateway
                    id="invoker.ws.outbound.gateway"
                    ignore-empty-responses="true" message-sender="message.sender"
                    interceptors="${SecurityInterceptor}"
                    message-factory="${mmessageFactory}"

                    uri="${protocol}://${host}:${port}/{endpoint}">
                    <int-ws:uri-variable name="endpoint"
                        expression="headers.endpoint" />
                    <int-ws:request-handler-advice-chain>
                        <ref bean="commonRetryAdviceBean" />
                    </int-ws:request-handler-advice-chain>
                </int-ws:outbound-gateway>
            </int:chain>

下面是第三方api接收到的payload。

<MessageLogTraceRecord>
<HttpRequest xmlns="http://schemas.microsoft.com/2004/06/ServiceModel/Management/MessageTrace">
<Method>POST</Method>
<QueryString></QueryString>
<WebHeaders>
<Content-Length>9381</Content-Length>
<Content-Type>text/xml; charset=UTF-8</Content-Type>
<Accept>text/xml</Accept>
<Accept-Encoding>gzip</Accept-Encoding>
<Host>myhost</Host>
<User-Agent>Jakarta Commons-HttpClient/3.1</User-Agent>
<SOAPAction>"http://www.mysoap.com/action/update"</SOAPAction>
</WebHeaders>

现在,我必须添加额外的安全功能并在 HTTP header 或 soap header 中发送 API 密钥。所以我修改了我的代码如下。现在我可以看到 API 密钥作为 soap header 发送,但一些 SOAPAction 是如何变空的,不知道为什么。

下面是修改后的代码,将 api ket 作为 soap header 的一部分发送。

<int:chain id="channe.id"
        input-channel="request.in"
        output-channel="reply.channel">

        <int-ws:header-enricher>
            <int-ws:soap-action
                value="${service.soapaction}" />
        </int-ws:header-enricher>
        <int-ws:outbound-gateway
            id="invoker.ws.outbound.gateway"
            ignore-empty-responses="true" message-sender="message.sender"
            interceptors="${SecurityInterceptor}"
            message-factory="${mmessageFactory}"
            mapped-request-headers="soapHeaderMapper"
            uri="${protocol}://${host}:${port}/{endpoint}">
            <int-ws:uri-variable name="endpoint"
                expression="headers.endpoint" />
            <int-ws:request-handler-advice-chain>
                <ref bean="commonRetryAdviceBean" />
            </int-ws:request-handler-advice-chain>
        </int-ws:outbound-gateway>
    </int:chain>


    <bean id="soapHeaderMapper"
        class="org.springframework.integration.ws.DefaultSoapHeaderMapper">
        <property name="requestHeaderNames">
            <list>
                <value>api-key</value>
            </list>
        </property>
    </bean>

添加 mapped-request-headers 之后我得到

org.springframework.messaging.MessagingException: 无法处理消息,因为操作“”无效或无法识别。;嵌套异常是 org.springframework.ws.soap.client.SoapFaultClientException:无法处理消息,因为操作“”无效或无法识别。,failedMessage=GenericMessage

当我检查第三方收到的负载时 api 我可以看到 SOAP 操作是空的,我不确定为什么。

请帮帮我。

谢谢。

<QueryString></QueryString>
<WebHeaders>
<Content-Length>9463</Content-Length>
<Content-Type>text/xml; charset=UTF-8</Content-Type>
<Accept>text/xml</Accept>
<Accept-Encoding>gzip</Accept-Encoding>
<Host>myhost</Host>
<User-Agent>Jakarta Commons-HttpClient/3.1</User-Agent>
<SOAPAction>""</SOAPAction>
</WebHeaders>
</HttpRequest>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header api-key="dummy-123455555uuuuuuuuuuuqwert">

mapped-request-headers="soapHeaderMapper"配置错误。它正是关于 names,但在您的情况下,您尝试引用 DefaultSoapHeaderMapper bean 定义。

考虑使用:

        <xsd:attribute name="header-mapper">
            <xsd:annotation>
                <xsd:documentation>
                    Reference to a SoapHeaderMapper implementation
                    that this gateway will use to map between Spring Integration
                    MessageHeaders and the SoapHeader.
                </xsd:documentation>
                <xsd:appinfo>
                    <tool:annotation kind="ref">
                        <tool:expected-type type="org.springframework.integration.ws.SoapHeaderMapper"/>
                    </tool:annotation>
                </xsd:appinfo>
            </xsd:annotation>
        </xsd:attribute>

相反。

还有要映射的 header 名称:当您配置一些自定义 header 名称时,所有标准 header 都会丢失。因此,除了 api-key,您还需要考虑包括提到的 ws_soapAction 名称。