Changeset 3244

Show
Ignore:
Timestamp:
03/25/11 13:53:50
Author:
douglm
Message:

Bring Oracle config in line with the others

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • releases/bedework-3.7/config/bwbuild/oracle10g/cal.properties

    r3234 r3244  
    1717# 
    1818# Define the names of the applications we want to build 
     19# Note this is NOT all of the sections found below. Some components are now 
     20# included by default as they have become a jboss service, e..g indexing and  
     21# dump/restore. 
     22# 
     23#Others are built as separate projects. However, all build information for 
     24# allprojects adn subprojects is in this file, and all configuration (with the 
     25# proviso below) is in the options file. 
     26# 
     27# Separate from this are the various configuration files, e.g. bedework-ds.xml  
     28# which get deployed into the app server. 
     29#  
     30# These are the names which MAY appear in the list: 
     31#  
     32# CalAdmin:    admin client. You probably always want this 
     33# EventSubmit: public events submission client 
     34# Events:      Public events Client 
     35# Feeder:      Feed context. Better than using the main web client. 
     36# SoEDept:     Example calendar suite 
     37# UserCal:     personal web client 
     38# Pubcaldav:   Unauthenticated public caldav - alsoprovides unauth SOAP web services   
     39# Usercaldav:  Authenticated caldav - Also provides SOAP web services   
     40# Pubcalws:    Unauthenticated CalWS REST web service 
     41# Usercalws:   Authenticated CalWS REST web service 
     42# sysevlog:    System event logger - required 
     43# monitor:     System monitor - required 
     44# genkeys:     key generator - required 
    1945org.bedework.install.app.names=CalAdmin,EventSubmit,Events,Feeder,\ 
    20  SoEDept,UserCal,Pubcaldav,Usercaldav,caldavTest,test,
     46 SoEDept,UserCal,Pubcaldav,Usercaldav,
    2147 sysevlog,monitor,genkeys 
    2248 
     
    513539# -------------------------------------------------------------------- 
    514540# 
     541# bwtools 
     542# 
     543 
     544org.bedework.app.bwtools.runnable=yes 
     545org.bedework.app.bwtools.project=bwtools 
     546org.bedework.app.bwtools.sou.dir= 
     547org.bedework.app.bwtools.shellscr.name=bwrun 
     548org.bedework.app.bwtools.batscr.name=bwrun.bat 
     549org.bedework.app.bwtools.zip.name=bwtools 
     550org.bedework.app.bwtools.description=Bedework tools suite 
     551org.bedework.app.bwtools.schema.delimiter=; 
     552 
     553# 
     554# -------------------------------------------------------------------- 
     555# 
    515556# Dumprestore 
    516557# 
  • releases/bedework-3.7/config/bwbuild/oracle10g/sysevents.properties

    r2711 r3244  
    22# activemq jndi.properties 
    33# 
    4 java.naming.factory.initial = org.apache.activemq.jndi.ActiveMQInitialContextFactory 
     4#java.naming.factory.initial = org.apache.activemq.jndi.ActiveMQInitialContextFactory 
    55 
    66# use the following property to configure the default connector 
     
    88 
    99// Allows us to handle container differences 
    10 org.bedework.connection.factory.name=jms/BedeworkConnectionFactory 
     10#org.bedework.connection.factory.name=java:activemq/QueueConnectionFactory 
     11org.bedework.connection.factory.name=java:jms/BedeworkConnectionFactory 
    1112 
    12 org.bedework.jms.queue.prefix=queue/ 
     13org.bedework.jms.queue.prefix=activemq/queue/ 
    1314 
    1415# use the following property to specify the JNDI name the connection factory 
    1516# should appear as. 
    16 connectionFactoryNames = jms/BedeworkConnectionFactory 
     17connectionFactoryNames = activemq/QueueConnectionFactory 
    1718 
    1819# register some queues in JNDI using the form 
     
    2122 
    2223queue.queue/syseventslog = bedework.sysevents.logger 
     24 
     25queue.queue/monitor = bedework.sysevents.monitor 
    2326 
    2427queue.queue/schedulerIn = bedework.scheduleIn 
     
    3134# topic.[jndiName] = [physicalName] 
    3235#topic.MyTopic = example.MyTopic 
    33  
    34  
    35  
    36  
    37  
    38 # 
    39 # context.xml 
    40 #  <Resource name="jms/BedeworkConnectionFactory" 
    41 #            auth="Container" 
    42 #            type="org.apache.activemq.ActiveMQConnectionFactory" 
    43 #            description="JMS Connection Factory" 
    44 #            factory="org.apache.activemq.jndi.JNDIReferenceFactory" 
    45 #            brokerURL="tcp://localhost:61616?trace=true" 
    46 #            brokerName="LocalActiveMQBroker"/> 
    47 # 
    48 #  <!-- ActiveMQ System events queue --> 
    49 #  <Resource name="queue/sysevents" 
    50 #            auth="Container" 
    51 #            type="org.apache.activemq.command.ActiveMQQueue" 
    52 #            description="Bedework crawler queue" 
    53 #            factory="org.apache.activemq.jndi.JNDIReferenceFactory" 
    54 #            physicalName="bedework.sysevents"/> 
    55 # 
    56 #  <!-- ActiveMQ System events log queue --> 
    57 #  <Resource name="queue/syseventslog" 
    58 #            auth="Container" 
    59 #            type="org.apache.activemq.command.ActiveMQQueue" 
    60 #            description="Bedework crawler queue" 
    61 #            factory="org.apache.activemq.jndi.JNDIReferenceFactory" 
    62 #            physicalName="bedework.sysevents.logger"/> 
    63 # 
    64 #  <!-- ActiveMQ index crawler notifications queue --> 
    65 #  <Resource name="queue/crawler" 
    66 #            auth="Container" 
    67 #            type="org.apache.activemq.command.ActiveMQQueue" 
    68 #            description="Bedework crawler queue" 
    69 #            factory="org.apache.activemq.jndi.JNDIReferenceFactory" 
    70 #            physicalName="bedework.crawler"/>