TIBCO Adapter SDK C++ Reference
|
A special node in the TIBCO Repository tree is the adapter instance description object, which stores all configuration information in one place, pointing to other locations in the TIBCO Repository for some of the object definitions. You can access this TIBCO Repository object by calling the MAppProperties::getConfigProperties() method.
Warning
Using settable MProperties incorrectly can cause serious problems that can cause adapters to stop functioning. TIBCO Software Inc. cannot guarantee that problem resulting form the incorrect use of MProperties class can be solved.
MProperties allows arbitrary editing of a resource whose structure is very strictly regulated. Even the slightest mistake, such as a typographical error, can render a configuration incorrect. Using settable properties is analagous to hand-editing database files and should be approached with similar caution. Use MProperties class to create/modify repository at your own risk.
/Object/AssocList|x/attribute
This means:
For example, consider the following custom objects and attributes that are defined using the TIBCO Designer software:
connection userName = username1 password = password1 import msgDefinition = msgDefinition1 subject = subject1 field tibName = tibName1 psftName = psftName1 field tibName = tibName2
To point to the tibName attribute of the second field association list, use this syntax:
/import/field|1/tibName
For compatibility reasons, it is also legal to use the syntax object|0.
See Also Factory methods for creating new MProperties instances: MPropertiesRegistry::newProperties(), MPropertiesRegistry::newSettableProperties()
class MProperties;
MProperties