Bugs item #1485940, was opened at 2006-05-10 13:44 Message generated for change (Comment added) made by derekc You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1485940&group_id=105970
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: heat Group: v3.0 >Status: Closed >Resolution: Duplicate Priority: 5 Submitted By: James Carter (carterja) Assigned to: Derek (derekc) Summary: Heat throws "System.Exception" if file ids go beyond 999 Initial Comment: When using the directory harvester of heat.exe 3.0.1621.0 against a directory that contains more than 999 files (as specified on line 125 of MutatorExtension.cs) an exception of type "System.Exception" is thrown. The source line specified above corresponds to the "GetIdentifer" method of the "MutatorExtension.IdentifierGenerator" class. Excerpt from wix fragment generated by heat: <ComponentRef Id="File_999" /> In order to get the following: <ComponentRef Id="File_1000" /> I had to patch the line: "for (int i = 0; i < 999; i++)" with "for (int i = 0; i < 9999; i++)" just to verify the problem. Not sure why 999 was chosen as the upper limit for this loop. Perhaps due to the limit on the Id column of the File table? -James ---------------------------------------------------------------------- >Comment By: Derek (derekc) Date: 2006-05-11 00:20 Message: Logged In: YES user_id=518766 Looks like a dupe. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1485940&group_id=105970 ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ WiX-devs mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wix-devs
