Changeset 3307
- Timestamp:
- 08/11/11 13:58:57
- Files:
-
- trunk/build/quickstart/linux/bw (modified) (4 diffs)
- trunk/config/bwbuild/jboss-postgresql/bedework-synch-ds.xml (added)
- trunk/config/bwbuild/jboss-postgresql/cal.options.xml (modified) (3 diffs)
- trunk/config/bwbuild/jboss-postgresql/cal.properties (modified) (4 diffs)
- trunk/config/bwbuild/jboss-postgresql/synch-config.xml (modified) (1 diff)
- trunk/deployment/bw-core-appjars.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/quickstart/linux/bw
r3271 r3307 85 85 echo " -catsvr Target is for the Catsvr build" 86 86 echo " -client Target is for the bedework client application build" 87 echo " - exsynch Target is for the Exchange synch build"87 echo " -synch Target is for the synch build" 88 88 echo " -naming Target is for the abstract naming api" 89 89 echo " The default is a calendar build" … … 262 262 catsvr= 263 263 client= 264 exsynch=264 synch= 265 265 monitor= 266 266 naming= … … 399 399 shift 400 400 ;; 401 - exsynch)402 exsynch="yes"401 -synch) 402 synch="yes" 403 403 pkgdefault= 404 404 shift … … 498 498 fi 499 499 500 if [ "$ exsynch" != "" ] ; then501 cd $QUICKSTART_HOME/ exchgsynch500 if [ "$synch" != "" ] ; then 501 cd $QUICKSTART_HOME/synch 502 502 fi 503 503 trunk/config/bwbuild/jboss-postgresql/cal.options.xml
r3298 r3307 797 797 <webcalServiceURI>/webcal</webcalServiceURI> 798 798 799 <!-- The bedework end of the exchangesynch service. This is a web799 <!-- The bedework end of the synch service. This is a web 800 800 service called by the synch engine to get information out of 801 801 bedework and to update events and status. … … 806 806 Comment out or delete for no exchange synch service 807 807 808 NOTE: t the value below is defined in the build properties808 NOTE: the value below is defined in the build properties 809 809 --> 810 < exsynchWsURI>@exsynchWsURI@</exsynchWsURI>810 <synchWsURI>@synchWsURI@</synchWsURI> 811 811 </Pubcaldav> 812 812 … … 916 916 <debugEntity>false</debugEntity> 917 917 </iosched> 918 919 <!-- ==================================================================920 Exchange synch921 ================================================================== -->922 <Exsynch classname="org.bedework.exchgsynch.ExsynchConfig">923 <appType>exsynch</appType>924 925 <!-- location of the WSDL - modified to include server element926 This corresponds to the wsdl deploy location defined in the927 build properties file.928 -->929 <exchangeWSDLURI>http://localhost:8080/wsdls/exchange/Services.wsdl</exchangeWSDLURI>930 931 <!-- location of the WSDL for the remote web service932 This corresponds to the wsdl deploy location defined in the933 build properties file.934 -->935 <remoteWSDLURI>http://localhost:8080/wsdls/exsynch/wssvc.wsdl</remoteWSDLURI>936 937 <!-- Exchange sync callback. Comment out for no service -->938 <exchangeWsPushURI>http://128.113.124.225:8080/exsynch/</exchangeWsPushURI>939 940 <!-- Path to keystore - comment out to use default -->941 <keystore>@APPSERVER-DATA-DIR@/exsynchcerts</keystore>942 943 <remoteWsURL>http://localhost:8080/pubcaldav/exsynchws/</remoteWsURL>944 945 <!-- seconds -->946 <remoteKeepAliveInterval>60</remoteKeepAliveInterval>947 </Exsynch>948 918 949 919 <!-- =============================================================== trunk/config/bwbuild/jboss-postgresql/cal.properties
r3298 r3307 74 74 org.bedework.global.jboss.db.datasource.jndiname=/CalendarDS 75 75 org.bedework.global.jboss.carddb.datasource.jndiname=/CardDS 76 org.bedework.global.jboss. exsynch.datasource.jndiname=/ExsynchDS76 org.bedework.global.jboss.synch.datasource.jndiname=/SynchDS 77 77 org.bedework.global.jboss.tzdb.datasource.jndiname=/TzDS 78 78 … … 179 179 org.bedework.global.copy.bedeworktzds.config=yes 180 180 # 181 # If set to true or yes will copy in the bedework exchangesynch db datasource def182 org.bedework.global.copy.bedework exsynchds.config=yes181 # If set to true or yes will copy in the bedework synch db datasource def 182 org.bedework.global.copy.bedeworksynchds.config=yes 183 183 184 184 # If set to true or yes will build the web (CASifiable) version of carddav also … … 209 209 org.bedework.exchange.wsdl.deploy.dir=${org.bedework.wsdl.deploy.dir}/exchange 210 210 211 # Exchangesynch - wsdl212 org.bedework. exsynch.wsdl.deploy.dir=${org.bedework.wsdl.deploy.dir}/exsynch213 # Exchangesynch - service214 org.bedework. exsynch.uri=/exsynchws/215 org.bedework. exsynch.service=http://localhost:8080/pubcaldav${org.bedework.exsynch.uri}211 # synch - wsdl 212 org.bedework.synch.wsdl.deploy.dir=${org.bedework.wsdl.deploy.dir}/synch 213 # synch - service 214 org.bedework.synch.uri=/synchws/ 215 org.bedework.synch.service=http://localhost:8080/pubcaldav${org.bedework.synch.uri} 216 216 217 217 org.bedework.calws.wsdl.deploy.dir=${org.bedework.wsdl.deploy.dir}/calws-soap … … 752 752 # -------------------------------------------------------------------- 753 753 # 754 # Exchange synchronization Service - callback web server755 # 756 org.bedework.app. exsynchwcb.project=exsynch757 org.bedework.app. exsynchwcb.sou.dir=server758 759 org.bedework.app. exsynchwcb.web.xml=war/WEB-INF/web.xml760 org.bedework.app. exsynchwcb.war.name=exsynch761 org.bedework.app. exsynchwcb.context.root=/exsynch754 # Synchronization Service - callback web server. 755 # 756 org.bedework.app.synchwcb.project=synch 757 org.bedework.app.synchwcb.sou.dir=server 758 759 org.bedework.app.synchwcb.web.xml=war/WEB-INF/web.xml 760 org.bedework.app.synchwcb.war.name=synch 761 org.bedework.app.synchwcb.context.root=/synch 762 762 # Set for jboss 763 763 #org.bedework.app.usercarddav.virtual.host=events.rpi.edu 764 764 765 org.bedework.app. exsynchwcb.description=Bedework exsynch callback server.766 org.bedework.app. exsynchwcb.display.name=Bedework exsynch callback server767 org.bedework.app. exsynchwcb.name=Demoexsynchw768 #org.bedework.app. exsynchwcb.deploy.dir=${org.bedework.appserver.deploy.dir}769 org.bedework.app. exsynchwcb.wsdl,deploy.dir=/wsdl/exsynch770 org.bedework.app. exsynchwcb.logprefix=exsynch771 772 765 org.bedework.app.synchwcb.description=Bedework synch callback server. 766 org.bedework.app.synchwcb.display.name=Bedework synch callback server 767 org.bedework.app.synchwcb.name=Demosynchw 768 #org.bedework.app.synchwcb.deploy.dir=${org.bedework.appserver.deploy.dir} 769 org.bedework.app.synchwcb.wsdl,deploy.dir=/wsdl/synch 770 org.bedework.app.synchwcb.logprefix=synch 771 772 trunk/config/bwbuild/jboss-postgresql/synch-config.xml
r3306 r3307 4 4 xsi:schemaLocation="http://www.springframework.org/schema/beans 5 5 http://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> 6 7 <!-- ===================================================================== 8 Synch engine configuration 9 ===================================================================== --> 10 <bean id="synchConfig" 11 class="org.bedework.synch.SynchConfig"> 12 <!-- callback. Comment out for no service. MUST end in "/" --> 13 <property name="callbackURI" 14 value="http://128.113.124.225:8080/synch/" /> 15 16 <!-- Path to keystore - comment out to use default --> 17 <property name="keystore" 18 value="@APPSERVER-DATA-DIR@/synchcerts" /> 19 20 <property name="connectors"> 21 <map> 22 <entry key="exdemo" 23 value="org.bedework.synch.cnctrs.exchange.ExchangeConnector" /> 24 <entry key="bwdemo" 25 value="org.bedework.synch.cnctrs.bedework.BedeworkConnector" /> 26 </map> 27 </property> 28 </bean> 29 6 30 <!-- The connector "exdemo" will load the following config - 7 31 the suffix "ExchangeConfig" is appended to the connector id --> trunk/deployment/bw-core-appjars.xml
r3286 r3307 31 31 <getJar lib="${org.bedework.temp.extrajars.dir}" 32 32 libcache="${org.bedework.libcache.dir}" 33 name="bw- exsynchwsschema" version="${org.bedework.bwxml.version}"33 name="bw-synchwsschema" version="${org.bedework.bwxml.version}" 34 34 projecthome="${bw.project.home}/../bwxml" /> 35 35
