Changes between Version 2 and Version 3 of BuildingAndInstalling
- Timestamp:
- Mar 1, 2007, 7:20:44 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingAndInstalling
v2 v3 17 17 E:\plugins\com.wilsonoi.core_1.0.0\plugin.xml and look for the extension point as below: 18 18 19 {{{ 20 #!xml 19 21 <extension point="com.rpc.core.domain"> 20 <domain id="production" name="WilsonOI-Production" visible="false" db="MYSQL" driver="org.gjt.mm.mysql.Driver" url="jdbc:mysql://srv-atl-core1/ivanallen?user=root&password=root&zeroDateTimeBehavior=convertToNull" user="root" pwd="root" reportURL="http://srv-atl-core1:8080/rpc" /> 22 <domain id="production" name="WilsonOI-Production" visible="false" 23 db="MYSQL" driver="org.gjt.mm.mysql.Driver" 24 url="jdbc:mysql://srv-atl-core1/ivanallen?user=root&password=root&zeroDateTimeBehavior=convertToNull" 25 user="root" pwd="root" reportURL="http://srv-atl-core1:8080/rpc" /> 21 26 22 27 <domain id="qa" name="IvanAllen-QA" db="MYSQL" driver="org.gjt.mm.mysql.Driver" url="jdbc:mysql://srv-atl-core1/ivanallen?user=root&password=root&zeroDateTimeBehavior=convertToNull" user="root" pwd="root" reportURL="http://srv-atl-core1:8080/rpc" /> … … 24 29 <domain visible="false" id="local" name="WilsonOI-LOCALHOST" db="MYSQL" driver="org.gjt.mm.mysql.Driver" url="jdbc:mysql://localhost/wilson_oi?user=root&password=root&zeroDateTimeBehavior=convertToNull" user="root" pwd="root" reportURL="http://localhost:8080/rpc" /> 25 30 </extension> 31 }}} 26 32 27 33 Look for the new domain that is being “added”/configured for (not production and not local…but the one that is being newly configured. Note that the name will be what you log in as when the “service” is started and you then open up the domain’s reportURL ! (later!). Note that in this example the domain id is qa and that the xml is in com.wilsonoi.core which concatenating the two gives the parameter.9 in the conf file! Note if it is a new database that is being added, a similar block needs to be added to this xml file with the appropriate fields for the domain as well as (I presume) a whole subdir of plugins such as com.wilsonoi.core_1.0.0 ?