Apache camel 发送大型xml时,camel cxf给出错误

Apache camel 发送大型xml时,camel cxf给出错误,apache-camel,soap-client,jbossfuse,Apache Camel,Soap Client,Jbossfuse,调用SOAP服务时,当XML消息大小较大时,我得到响应302,但当消息大小较小时,响应302有效。 虽然当我在SoapUI上发布相同的消息时,无论大小消息,我都得到了正确的响应 如果有,camel cxf中的消息长度是否有限制? 我怎样才能改变限额 骆驼2.10 JBoss保险丝6.0.0 这是我观点的摘录 <cxf:cxfEndpoint id="remindaWsEndpoint" address="https://example.service.abc.com/BasicServic

调用SOAP服务时,当XML消息大小较大时,我得到响应302,但当消息大小较小时,响应302有效。
虽然当我在SoapUI上发布相同的消息时,无论大小消息,我都得到了正确的响应

如果有,camel cxf中的消息长度是否有限制?
我怎样才能改变限额

骆驼2.10 JBoss保险丝6.0.0

这是我观点的摘录

<cxf:cxfEndpoint id="remindaWsEndpoint" address="https://example.service.abc.com/BasicService"
    serviceName="s:ABCService"
    endpointName="s:ABCHttpBinding_ABCService"
    wsdlURL="/META-INF/wsdl/ABCService.wsdl"
    xmlns:s="http://www.example.com">
    <cxf:outInterceptors>
        <ref bean="loggingOutInterceptor" />
    </cxf:outInterceptors>
    <cxf:inInterceptors>
        <ref bean="loggingInInterceptor"/>
    </cxf:inInterceptors>
    <cxf:properties>
        <entry key="dataFormat" value="PAYLOAD" />
        <entry key="allowStreaming" value="true" />
        <entry key="defaultOperationName" value="ABCOperations"/>
        <entry key="defaultOperationNamespace" value="http://www.example.com"/>
    </cxf:properties>
</cxf:cxfEndpoint> 


HTTP 302不是错误。这意味着服务器正试图将您重定向到另一个url。确保您的路由配置可以处理此问题。

Souciance,是的,很抱歉错误地提出了这个问题。问题仍然存在,为什么它适用于较小的消息大小,而不适用于较大的消息大小。尽管更大的消息仍然可以使用SoapUI。