Advertisement
Guest User

Jim

a guest
Sep 29th, 2010
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.39 KB | None | 0 0
  1. <configuration xmlns="urn:hornetq"
  2.            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.            xsi:schemaLocation="urn:hornetq /schema/hornetq-jms.xsd">
  4.    
  5.     <connection-factory name="NettyConnectionFactory">
  6.        <connectors>
  7.          <connector-ref connector-name="netty"/>
  8.        </connectors>
  9.         <entries>
  10.             <entry name="/ConnectionFactory"/>
  11.             <entry name="/XAConnectionFactory"/>
  12.         </entries>
  13.     <!-- We set the consumer window size to 0, which means messages are not buffered at all
  14.      on the client side -->
  15.       <!--<consumer-window-size>0</consumer-window-size>-->
  16.  
  17.     </connection-factory>
  18.    
  19.     <connection-factory name="NettyThroughputConnectionFactory">
  20.        <connectors>
  21.          <connector-ref connector-name="netty-throughput"/>
  22.        </connectors>
  23.         <entries>
  24.             <entry name="/ThroughputConnectionFactory"/>
  25.             <entry name="/XAThroughputConnectionFactory"/>
  26.         </entries>
  27.     </connection-factory>
  28.    
  29.     <queue name="DLQ">
  30.         <entry name="/queue/DLQ"/>
  31.     </queue>
  32.     <queue name="ExpiryQueue">
  33.         <entry name="/queue/ExpiryQueue"/>
  34.     </queue>  
  35.     <queue name="ExampleQueue">
  36.         <entry name="/queue/ExampleQueue"/>
  37.     </queue>
  38.    
  39.    
  40.      <!-- queue where I can test shit out sometimes, hornet is a finicky motherfucker! -->
  41.         <queue name="jimTest2">
  42.                 <entry name="/queue/jimTest2"/>
  43.                 <durable>false</durable>
  44.         </queue>
  45.  
  46.  
  47.  
  48.    
  49. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement