how to link from one module to another using DXL in DOORs? -


i have link 2 modules: ex: have information in module 'a' , information in module 'b' similar module 'a' , module 'c' has same information. linking present between 'a' 'b' , 'b' 'c'. target link 'c' 'a'.

creating link doors object resides in different module not differ creating link objects of same module. have retrieve object handle module.

consider this:

object sourceobj = ... // have object handle object targetobj = null const string targetmodulename = "/my/doors/module"  // open module module mod = edit(targetmodulename, true, false) if (null(mod)) ack("error!")  // depends on how can identify target object targetobj in mod {     // example: if object identifier matches ...     if (... == identifier(targetobj)) {        sourceobj -> targetobj        break     } } 

additionally, have @ this question steve explains scenario well.


Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -