My bean.xml like
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:jms="http://cxf.apache.org/transports/jms" xmlns:p="http://www.springframework.org/schema/p" xmlns:jaxrs="http://cxf.apache.org/jaxrs" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd http://cxf.apache.org/transports/jms http://cxf.apache.org/schemas/configuration/jms.xsd"> <import resource="classpath:META-INF/cxf/cxf-extension-jms.xml"/> <jaxws:endpoint id="CustomerService" address="jms://" implementor="com.example.customerservice.impl.CustomerServiceImpl" transportId="http://cxf.apache.org/transports/jms" bindingUri="" > </jaxws:endpoint> <jms:destination name="{http://impl.customerservice.example.com/}CustomerPort.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> </beans> -- View this message in context: http://cxf.547215.n5.nabble.com/NOT-getting-WSDL-when-adding-transportId-http-cxf-apache-org-transports-jms-tp4343106p4343120.html Sent from the cxf-dev mailing list archive at Nabble.com.
