I believe I came across this a couple months ago, but now I'm having trouble finding the answer. Perhaps someone can just point me to the right section in the documentation?
Using Sprint.NET, I'm combining remote XML files into a single application context where the engine objects are separate from the business rule objects. The problem is some of the business rules are values, not objects, which are needed by <property>
and <constructor-arg>
nodes in the engine xml:
<object name="Engine">
<constructor-arg index="0" value="business rule" />
</object>
Either referencing a property of another object (use expression
attribute instead of value
?) or perhaps some specialized name/value list (e.g. Spring's version of to <appsettings>
, whatever that is) would work.