加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

如何从CXF端点调用Spring Integration应用程序

发布时间:2020-12-15 01:21:19 所属栏目:大数据 来源:网络整理
导读:我正在使用Apache CXF Web服务和Spring Integration,现在我不怎么从CXF端点调用Spring Integration应用程序. 我有使用Apache Camel的经验,很容易解决这个问题.但是在Spring Integration中,我没有任何想法. 我的行代码是: 在webservices-definition-beans.xm

我正在使用Apache CXF Web服务和Spring Integration,现在我不怎么从CXF端点调用Spring Integration应用程序.

我有使用Apache Camel的经验,很容易解决这个问题.但是在Spring Integration中,我没有任何想法.

我的行代码是:

>在webservices-definition-beans.xml中:

<!-- Load CXF modules from cxf.jar -->
<import resource="classpath:META-INF/cxf/cxf.xml"/>
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/>
<import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>

<!--Exposing the HelloWorld service as a SOAP service -->
<bean id="jaxbBean"
      class="org.apache.cxf.jaxb.JAXBDataBinding"
      scope="prototype"/>

<bean id="jaxws-and-aegis-service-factory"
      class="org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean"
      scope="prototype">
    <property name="dataBinding" ref="jaxbBean"/>
    <property name="serviceConfigurations">
    <list>
        <bean class="org.apache.cxf.jaxws.support.JaxWsServiceConfiguration"/>
        <bean class="org.apache.cxf.aegis.databinding.AegisServiceConfiguration"/>
        <bean class="org.apache.cxf.service.factory.DefaultServiceConfiguration"/>
    </list>
</property>
</bean>

<jaxws:endpoint id="helloWorld"
            serviceName="HelloWorldService"
            implementorClass="com.datys.cxf.HelloWorldService"
            address="/HelloWorld">
    <jaxws:serviceFactory>
        <ref bean="jaxws-and-aegis-service-factory"/>
    </jaxws:serviceFactory>
</jaxws:endpoint> 

>在service-definition-beans.xml中:

<gateway id="HelloWorldService" 
         default-request-channel="requestStrings"
         default-reply-channel="replyStrings"             
         service-interface="com.datys.cxf.HelloWorldService">
    <method name="sayHello"/>
</gateway>

<channel id="requestStrings"/>
<channel id="replyStrings"/> 

<!--<channel id="filesOut"/>-->
<service-activator input-channel="requestStrings"
                   output-channel="filesOut"
                   ref="handler" method="handleString"/>

<file:outbound-channel-adapter id="filesOut" 
                               directory="file:D:/OUTPUT"/>

<beans:bean id="handler" class="org.springframework.integration.samples.filecopy.Handler"/>

但是,当我使用客户端Web服务部署和调用Web服务时,返回此错误:

Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: Could not instantiate service     class com.datys.cxf.HelloWorldService because it is an interface.
at com.sun.xml.internal.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:171)
at com.sun.xml.internal.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:94)
at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:240)
at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:210)
at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(SEIStub.java:103)
at $Proxy29.sayHello(Unknown Source)
最佳答案
可能最简单的选择是配置< gateway>.这样,您就可以提供可以注入到端点并调用它以启动消息流的任何接口.在幕后,该接口的实现方式与Spring中其他“ ProxyFactoryBean”的实现方式相同(例如,通过RMI,HttpInvoker等进行远程处理).

这是参考手册中的相关部分:
http://static.springsource.org/spring-integration/docs/2.1.x/reference/htmlsingle/#gateway-proxy

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读