缺少肥皂动作:: Spring Integration

问题描述 投票:0回答:1

我正在开发一个spring集成组件,我将数据发布到外部第三方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收到的有效载荷。

<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标头或soap标头中发送API密钥。所以我修改了我的代码如下。现在我可以看到API密钥作为soap标头发送,但有些SOAPAction如何变为空,不知道为什么。

下面是修改的代码,用于发送api密钥作为soap标头的一部分。

<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">
spring spring-integration spring-ws
1个回答
1
投票

mapped-request-headers="soapHeaderMapper"配置错误。它与名称完全相同,但在您的情况下,您尝试引用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>

代替。

还有用于映射的标题名称:当您配置一些自定义标题名称时,将错过所有标准标题。所以,与api-key一起,你需要考虑包括提到的ws_soapAction名称。

© www.soinside.com 2019 - 2024. All rights reserved.