I can open modules in DOORS by using the url to the module but haven't seen/found a reference for doing this programatically. Am I missing the search term? Can anyone provide a reference? Thank you. BruceLerner - Fri Jan 17 12:06:51 EST 2014 |
Re: Accessing DOORS Modulesby URI/URL from dxl From where are you trying ot open the module using URL? From within DOORS context, or from some other application? If it is from within DOORS, there's many other ways to open the module (use read perm, which will require full name of DOORS module as one parameter). If you need to use URL itself to open the module, then you can parse the URL to get the unique ID of the module (refer to perm decodeURL). Using this unique ID you can get the full name of the module using - fullName(itemFromID(<uniqueID>). Next, use the read/edit perms to open the module. If you are trying to use the URL from external context, it is similar to pasting the URL into "Run" window and hitting on go, or pasting the URL into a browser. So you need to do equivalent of that. This will trigger the protocol handler of DOORS to open the module. |