Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Remove spurious references to Celtix Enterprise...

...

Code Block
titleJMS WSDL Port Specification
<service name="JMSService">
  <port binding="tns:Greeter_SOAPBinding" name="SoapPort">
    <jms:address jndiConnectionFactoryName="ConnectionFactory"
                 jndiDestinationName="dynamicQueues/test.Celtixcxf.jmstransport">
      <jms:JMSNamingProperty name="java.naming.factory.initial"
                             value="org.activemq.jndi.ActiveMQInitialContextFactory" />
      <jms:JMSNamingProperty name="java.naming.provider.url"
                             value="tcp://localhost:61616" />
    </jms:address>
  </port>
</service>

...

Code Block
titleAddressing Information in a Celtix Enterprise Configuration File
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:ct="http://cxf.apache.org/configuration/types"
       xmlns:jms="http://cxf.apache.org/transports/jms"
       xmlns:jms-conf="http://cxf.apache.org/transports/jms/jms-conf"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="{http://cxf.apache.org/jms_endpt}HelloWorldJMSPort.jms-conduit-base"
      class="org.apache.cxf.transport.jms.base.JMSTransportBaseConfigBean">
  <property name="addressPolicy">
    <value>
      <jms:address destinationStyle="queue"
                   jndiConnectionFactoryName="myConnectionFactory"
                   jndiDestinationName="myDestination"
                   jndiReplyDestinationName="myReplyDestination"
                   connectionUserName="testUser"
                   connectionPassword="testPassword">
        <jms:JMSNamingProperty name="java.naming.factory.initial"
                               value="org.apache.cxf.transport.jms.MyInitialContextFactory"/>
        <jms:JMSNamingProperty name="java.naming.provider.url"
                               value="tcp://localhost:61616"/>
      </jms:address>
    </value>
  </property>
</bean>
</beans>

...