Remove unused configuration parameters.
[pithos] / gss / jboss-production / deploy / messaging / messaging-service.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4      The JBoss Messaging service deployment descriptor.
5
6      $Id: messaging-service.xml 3880 2008-03-14 15:55:42Z timfox $
7  -->
8
9 <server>
10
11    <!-- ServerPeer MBean configuration
12         ============================== -->
13
14    <mbean code="org.jboss.jms.server.ServerPeer"
15       name="jboss.messaging:service=ServerPeer"
16       xmbean-dd="xmdesc/ServerPeer-xmbean.xml">
17
18       <!-- The unique id of the server peer - in a cluster each node MUST have a unique value - must be an integer -->
19
20       <attribute name="ServerPeerID">${jboss.messaging.ServerPeerID:0}</attribute>
21       
22       <!-- The default JNDI context to use for queues when they are deployed without specifying one --> 
23       
24       <attribute name="DefaultQueueJNDIContext">/queue</attribute>
25       
26       <!-- The default JNDI context to use for topics when they are deployed without specifying one --> 
27       
28       <attribute name="DefaultTopicJNDIContext">/topic</attribute>
29
30           <attribute name="PostOffice">jboss.messaging:service=PostOffice</attribute>
31           
32       <!-- The default Dead Letter Queue (DLQ) to use for destinations.
33            This can be overridden on a per destinatin basis -->
34       
35       <attribute name="DefaultDLQ">jboss.messaging.destination:service=Queue,name=DLQ</attribute>
36       
37       <!-- The default maximum number of times to attempt delivery of a message before sending to the DLQ (if configured).
38            This can be overridden on a per destinatin basis -->
39       
40       <attribute name="DefaultMaxDeliveryAttempts">10</attribute>
41       
42       <!-- The default Expiry Queue to use for destinations. This can be overridden on a per destinatin basis -->
43       
44       <attribute name="DefaultExpiryQueue">jboss.messaging.destination:service=Queue,name=ExpiryQueue</attribute>
45       
46       <!-- The default redelivery delay to impose. This can be overridden on a per destination basis -->
47       
48       <attribute name="DefaultRedeliveryDelay">0</attribute>
49       
50       <!-- The periodicity of the message counter manager enquiring on queues for statistics -->
51       
52       <attribute name="MessageCounterSamplePeriod">5000</attribute>
53       
54       <!-- The maximum amount of time for a client to wait for failover to start on the server side after
55            it has detected failure -->
56       
57       <attribute name="FailoverStartTimeout">60000</attribute>
58       
59       <!-- The maximum amount of time for a client to wait for failover to complete on the server side after
60            it has detected failure -->
61       
62       <attribute name="FailoverCompleteTimeout">300000</attribute>
63
64       <attribute name="StrictTck">false</attribute>
65       
66       <!-- The maximum number of days results to maintain in the message counter history -->
67       
68       <attribute name="DefaultMessageCounterHistoryDayLimit">-1</attribute>
69       
70       <!-- The name of the connection factory to use for creating connections between nodes to pull messages -->
71       
72       <attribute name="ClusterPullConnectionFactoryName">jboss.messaging.connectionfactory:service=ClusterPullConnectionFactory</attribute>
73       
74       <!-- When redistributing messages in the cluster. Do we need to preserve the order of messages received
75             by a particular consumer from a particular producer? -->
76             
77       <attribute name="DefaultPreserveOrdering">false</attribute>
78       
79       <!-- Max. time to hold previously delivered messages back waiting for clients to reconnect after failover -->
80       
81       <attribute name="RecoverDeliveriesTimeout">300000</attribute>
82       
83       <!-- Set to true to enable message counters that can be viewed via JMX -->
84       
85       <attribute name="EnableMessageCounters">false</attribute>
86       
87       <!-- The password used by the message sucker connections to create connections.
88            THIS SHOULD ALWAYS BE CHANGED AT INSTALL TIME TO SECURE SYSTEM
89       -->
90       <attribute name="SuckerPassword">$uck3r</attribute>
91
92       <!-- The name of the server aspects configuration resource
93       <attribute name="ServerAopConfig">aop/jboss-aop-messaging-server.xml</attribute>
94       -->
95       <!-- The name of the client aspects configuration resource
96         <attribute name="ClientAopConfig">aop/jboss-aop-messaging-client.xml</attribute>
97       -->
98
99       <depends optional-attribute-name="PersistenceManager">jboss.messaging:service=PersistenceManager</depends>
100       
101       <depends optional-attribute-name="JMSUserManager">jboss.messaging:service=JMSUserManager</depends>
102       
103       <depends>jboss.messaging:service=Connector,transport=bisocket</depends>
104       <depends optional-attribute-name="SecurityStore"
105           proxy-type="org.jboss.jms.server.SecurityStore">jboss.messaging:service=SecurityStore</depends>
106    </mbean>
107
108 </server>