Function: |
A resource adapter is added to the configuration. You must pass the properties of the resource adapter to the MC-CLI in a dictionary. |
Parameters: |
Name des BeanConnect resource adapter that is to be added to the configuration.
Proxy or proxy cluster to which the resource adapter is to be assigned.
Dictionary with the key-value pairs for the properties that are to be assigned to the resource adapter. You can find the possible values for key in Properties of a resource adapter. The property |
Return: | ( The resource adapter added to the configuration. |
Exceptions: |
|
Note: | The specification of a |
Example: | ...
import BcAdminRA
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
creProps ={"host":"xyz","port-inbound":"1234","desc": "created",\
"ta-logging": BcDef.TA_LOGGING_NONE}
newRA=BcAdminRA.create("test-RA",proxy_obj,creProps)
...
|