I've attempted to export a DOORS module to HTML, to include all of the links and the modules, and I keep receiving this DXL error. |
Re: DOORS export to HTML using 9.1 I'm running v9.2.0.1, what are you? That file is not encrypted so you can edit it and take a look. My line numbers match up pretty closely so I can see what its doing. c:\Program Files\IBM\Rational\DOORS\9.2\lib\dxl\utils\libhtml.dxl function fillLinkListForModule() therein looks suspicious. The code in question is at the end of the function, for me line 1782.
The module handle "nxtModule" is null going into function fillLinkListForModule() and then into getNameWithVersion(), which presumes a non-null handle. The solution seems to move these three lines
starting at about 1615, up to be the 2nd thing this function does, instead of the 3rd. However, function fillLinkListForModule() has several "delete(modVersion)" commands that frankly do NOT look right. I surely must be wrong, but that command appears to be deleting an actual module, not just deleting some construct to free memory (like delete(Skip)). As for you and after just browsing this code, I wonder if perhaps you have links from deleted modules or baselines that this piece of <Disallowed Contect Detected> code cannot deal with. Not much help, sorry.
|