root/trunk/config/bwbuild/liferay5/sysevents.properties

Revision 2695 (checked in by douglm, 3 years ago)

JBoss support. First stage in deploying applications as services in jboss.

Restructure shell script builds to provide platform specific options. Use that feature to create jboss services (sar files) that can be deployed within the server.

All this work is based on jboss 5.1.0.GA

In addition there is some partial support for geronimo. This is not complete

Line 
1 #
2 # activemq jndi.properties
3 #
4 java.naming.factory.initial = org.apache.activemq.jndi.ActiveMQInitialContextFactory
5
6 # use the following property to configure the default connector
7 java.naming.provider.url = tcp://localhost:61616?trace=true
8
9 // Allows us to handle container differences
10 org.bedework.connection.factory.name=jms/BedeworkConnectionFactory
11
12 # use the following property to specify the JNDI name the connection factory
13 # should appear as.
14 connectionFactoryNames = jms/BedeworkConnectionFactory
15
16 # register some queues in JNDI using the form
17 # queue.[jndiName] = [physicalName]
18 queue.queue/sysevents = bedework.sysevents
19
20 queue.queue/syseventslog = bedework.sysevents.logger
21
22 queue.queue/schedulerIn = bedework.scheduleIn
23
24 queue.queue/schedulerOut = bedework.scheduleOut
25
26 queue.queue/crawler = bedework.crawler
27
28 # register some topics in JNDI using the form
29 # topic.[jndiName] = [physicalName]
30 #topic.MyTopic = example.MyTopic
31
32
33
34
35
36 #
37 # context.xml
38 #  <Resource name="jms/BedeworkConnectionFactory"
39 #            auth="Container"
40 #            type="org.apache.activemq.ActiveMQConnectionFactory"
41 #            description="JMS Connection Factory"
42 #            factory="org.apache.activemq.jndi.JNDIReferenceFactory"
43 #            brokerURL="tcp://localhost:61616?trace=true"
44 #            brokerName="LocalActiveMQBroker"/>
45 #
46 #  <!-- ActiveMQ System events queue -->
47 #  <Resource name="queue/sysevents"
48 #            auth="Container"
49 #            type="org.apache.activemq.command.ActiveMQQueue"
50 #            description="Bedework crawler queue"
51 #            factory="org.apache.activemq.jndi.JNDIReferenceFactory"
52 #            physicalName="bedework.sysevents"/>
53 #
54 #  <!-- ActiveMQ System events log queue -->
55 #  <Resource name="queue/syseventslog"
56 #            auth="Container"
57 #            type="org.apache.activemq.command.ActiveMQQueue"
58 #            description="Bedework crawler queue"
59 #            factory="org.apache.activemq.jndi.JNDIReferenceFactory"
60 #            physicalName="bedework.sysevents.logger"/>
61 #
62 #  <!-- ActiveMQ index crawler notifications queue -->
63 #  <Resource name="queue/crawler"
64 #            auth="Container"
65 #            type="org.apache.activemq.command.ActiveMQQueue"
66 #            description="Bedework crawler queue"
67 #            factory="org.apache.activemq.jndi.JNDIReferenceFactory"
68 #            physicalName="bedework.crawler"/>
Note: See TracBrowser for help on using the browser.