Hi all. I´m using Hivemind1. Is it possible configure hivemodule.xml with a property file?
I would like to have a hivemodule.properties like this:
--------------------------------
urlService=
http://myservice.comurlService2=
http://myservice2.com--------------------------------
And in the hivemodule xml do this:
------------------------------------
<service-point id="....." interface=".......">
<invoke-factory model="threaded">
<construct class="my.package.myService">
<string>${urlService}</string>
</construct>
</invoke-factory>
</service-point>
------------------------------------
I would like to do something like that, it is posible in with hivemind do that ???
Thanks in advance.