2 Replies Latest reply on Apr 25, 2011 1:41 PM by boy18nj

    Is it ok to create custom property file inside conf/props?

    boy18nj

      Can we have our own customer property file in the following location \jbossesb-server-4.3.GA\server\default\conf\props ?

       

      Example- We want to create a following property file-

       

      fedex.properties


      fedex.server.url.updateRate=http://localhost:23440/updateRate.drl

       

       

      Inside appliction, we have change-set.xml and we want to use the property there...

       

      <change-set xmlns='http://drools.org/drools-5.0/change-set'

          xmlns:xs='http://www.w3.org/2001/XMLSchema-instance'

          xs:schemaLocation='http://drools.org/drools-5.0/change-set

          drools-change-set-5.0.xsd' >

       

          <add>

              <resource source='${fedex.server.url.updateRate}' type='DRL' />

          </add>

       

      </change-set>