Changes between Version 2 and Version 3 of BuildingAndInstalling


Ignore:
Timestamp:
Mar 1, 2007, 7:20:44 PM (18 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingAndInstalling

    v2 v3  
    1717E:\plugins\com.wilsonoi.core_1.0.0\plugin.xml and look for the extension point as below:   
    1818
     19{{{
     20#!xml
    1921<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" />
    2126
    2227  <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" />
     
    2429  <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" />
    2530  </extension>
     31}}}
    2632
    2733Look 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 ?