My Beans.xml file
<jaxws:endpoint
id="HelloHttpService"
address="/HelloHttpService"
endpointName="HelloHttpPort"
implementor="com.example.httpservice.impl.HelloServiceImpl"
</jaxws:endpoint>
<jaxws:endpoint
id="HelloService"
address="jms://"
endpointName="HelloPort"
implementor="com.example.jmsservice.impl.HelloServiceImpl"
transportId="http://cxf.apache.org/transports/jms">
</jaxws:endpoint>
<jms:destination
name="{http://www.springframework.org/schema/beans}HelloPort.jms-destination">
<jms:address destinationStyle="topic"
jndiConnectionFactoryName="jms/ConnectionFactory"
jndiDestinationName="jms/Topic">
<jms:JMSNamingProperty name="java.naming.factory.initial"
value="weblogic.jndi.WLInitialContextFactory"/>
<jms:JMSNamingProperty name="java.naming.provider.url"
value="t3://localhost:7001"/>
</jms:address>
</jms:destination>
<CamelContext>
<route>
<from Uri = "HelloHttpService">
<to Uri = "HelloPort">
</route>
</CamelContext>
-----
Harshal
--
View this message in context:
http://cxf.547215.n5.nabble.com/How-To-Route-SoapHttp-Request-to-SoapJMS-tp4406893p4406910.html
Sent from the cxf-dev mailing list archive at Nabble.com.