<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Need API Of DWG Compare App and for Tracking Drawing Changes in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6596084#M34355</link>
    <description>&lt;P&gt;Yes, you understood correctly my point of view...&lt;/P&gt;&lt;P&gt;Let me elaborate, maybe we can get to new solutions...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume here we start from a version of a drawing and you want to keep track of changes on that drawing&amp;nbsp;across public releases or even simple saves.&lt;/P&gt;&lt;P&gt;We can easily track changes, but s&lt;SPAN&gt;ince AutoCAD DWG do not support versioning,&amp;nbsp;&lt;/SPAN&gt;how can we keep information about original entities that have been changed or deleted?&lt;/P&gt;&lt;P&gt;Can we clone the object modified or deleted and store it somewhere in the same DWG? Probably yes, we'd provide a storage mechanism that do not interfere with AutoCAD and maybe store even related information, like layers, styles, etc. that risk to be removed from a simple purge.&lt;/P&gt;&lt;P&gt;You can also disable purge altogether, so deleted information would be retained.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But thinking to a standard document management, you must observe that you may be interested in tracking changes between document release (I mean when you check, approve and publish a document to be sent outside) and not between every single save.&lt;/P&gt;&lt;P&gt;For me, that I have already a document management in place, it's easy to think to keep a copy of released documents, while advancing revisions. This because I believe is more efficient to retrieve a datum version, without the need to be rebuilt if using a journal or a single file storage...&lt;/P&gt;&lt;P&gt;Also every revision can support purge and keep file weight at its minimum.&lt;/P&gt;&lt;P&gt;In this case we can use previous file versions to retrieve previous version of entities.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far, we can even simply check every entities using their handles, that are persistent across sessions. Simply traverse a file, get each handle, find same handle in second file and see if exists&amp;nbsp;or not. If it doesn't exist the entity has been created or deleted, depending if the first file you traverse is a subsequent or previous version (I wouldn't trust file dates to sequence the changes...).&lt;/P&gt;&lt;P&gt;If the handle exists, you know that the entity is still there, but is it changed? This is a whole problem by itself, because you should provide a entity compare for every type of entity... lengthy, but possible.&lt;/P&gt;&lt;P&gt;I think this is the way the Autodesk Plugin 'DWG Compare' works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As an optimization I say: wouldn't be a lot easier if we know from start which handles have been changed, added or deleted?&lt;/P&gt;&lt;P&gt;This is when a journal would be helpful. We can easily attach event handlers to database and keep track of those handles and we can record those handles in a journal (an external file? a database? something stored inside the same DWG? Watch out for journal dimensions!).&lt;/P&gt;&lt;P&gt;Of course you can always track every changes, but save the journal portion only if saving the DWG.&lt;/P&gt;&lt;P&gt;An external journal file or database has the advantage o be accessed by multiple applications, so you can also add records when documents are checked, published, transmitted or revised.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, when you want to show what's changed in a datum version from previous one or even multiple previous versions, you can read the journal and highlight changed or new entities. Loading in memory previous versions' DWG you can retrieve deleted entities and show them too, or retrieve different versions of the same entity and highlight them for compares!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This way should be quite fast while running and easy enough to implement...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any more idea?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 01 Oct 2016 07:08:16 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-10-01T07:08:16Z</dc:date>
    <item>
      <title>Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6594540#M34352</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I am developing a .net application for auto cad in that i want the functionality like compare two drawings and keep track of drawing changes which can be accept, reject. So is their any api's available for that or is their any other way through which i can achieve this functionality. Please let me know if possible by any way.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Many thanks in Advance.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2016 13:41:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6594540#M34352</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-30T13:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6594633#M34353</link>
      <description>&lt;P&gt;Would be a nice request for a new standard feature... I mean some sort of Journaled&amp;nbsp;DWG file format...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I had to do this I'd implement a journal feature, attaching&amp;nbsp;event handlers to Database objects Added, Modified or Deleted, and recording handles of corresponding objects, maybe marking the journal also with revision and publishing events.&lt;/P&gt;&lt;P&gt;This way you may quickly list changes between any released version, but you still need to keep previous versions as separate drawings, since you may want to retrieve deleted or modified objects from previous versions and check/show real differences.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Journal may be an advantage, but missing that nobody prevent you to check differences between each objects using handles (supposing you have an original file and a revision of it), but it'd require a lot of machine power to check each entity for actual changes (while it would be easy to check added or deleted objects...).&lt;/P&gt;&lt;P&gt;It may be easier attaching a TIMESTAMP value on each modified entity, maybe you can use XDATA to attach such value and quickly check for modified entities... still lengthy on large drawing, but manageable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just a few ideas... but I'm really interested since I've developed a document management application for DWG and this feature (quickly check changes between revisions) would be much appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2016 14:12:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6594633#M34353</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-30T14:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6596067#M34354</link>
      <description>&lt;P&gt;Thank you for your reply,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; As per my understanding you are trying to say that we have to maintain original and&amp;nbsp;new version of the file&amp;nbsp;as well as we have to&amp;nbsp;keep record into database when objects or entities&amp;nbsp;are created,&amp;nbsp;modified or deleted in respective events, so that we can compare them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Please correct me if I am wrong, because I am unable&amp;nbsp;to understand that from where I have to start.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Oct 2016 06:14:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6596067#M34354</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-01T06:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6596084#M34355</link>
      <description>&lt;P&gt;Yes, you understood correctly my point of view...&lt;/P&gt;&lt;P&gt;Let me elaborate, maybe we can get to new solutions...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume here we start from a version of a drawing and you want to keep track of changes on that drawing&amp;nbsp;across public releases or even simple saves.&lt;/P&gt;&lt;P&gt;We can easily track changes, but s&lt;SPAN&gt;ince AutoCAD DWG do not support versioning,&amp;nbsp;&lt;/SPAN&gt;how can we keep information about original entities that have been changed or deleted?&lt;/P&gt;&lt;P&gt;Can we clone the object modified or deleted and store it somewhere in the same DWG? Probably yes, we'd provide a storage mechanism that do not interfere with AutoCAD and maybe store even related information, like layers, styles, etc. that risk to be removed from a simple purge.&lt;/P&gt;&lt;P&gt;You can also disable purge altogether, so deleted information would be retained.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But thinking to a standard document management, you must observe that you may be interested in tracking changes between document release (I mean when you check, approve and publish a document to be sent outside) and not between every single save.&lt;/P&gt;&lt;P&gt;For me, that I have already a document management in place, it's easy to think to keep a copy of released documents, while advancing revisions. This because I believe is more efficient to retrieve a datum version, without the need to be rebuilt if using a journal or a single file storage...&lt;/P&gt;&lt;P&gt;Also every revision can support purge and keep file weight at its minimum.&lt;/P&gt;&lt;P&gt;In this case we can use previous file versions to retrieve previous version of entities.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far, we can even simply check every entities using their handles, that are persistent across sessions. Simply traverse a file, get each handle, find same handle in second file and see if exists&amp;nbsp;or not. If it doesn't exist the entity has been created or deleted, depending if the first file you traverse is a subsequent or previous version (I wouldn't trust file dates to sequence the changes...).&lt;/P&gt;&lt;P&gt;If the handle exists, you know that the entity is still there, but is it changed? This is a whole problem by itself, because you should provide a entity compare for every type of entity... lengthy, but possible.&lt;/P&gt;&lt;P&gt;I think this is the way the Autodesk Plugin 'DWG Compare' works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As an optimization I say: wouldn't be a lot easier if we know from start which handles have been changed, added or deleted?&lt;/P&gt;&lt;P&gt;This is when a journal would be helpful. We can easily attach event handlers to database and keep track of those handles and we can record those handles in a journal (an external file? a database? something stored inside the same DWG? Watch out for journal dimensions!).&lt;/P&gt;&lt;P&gt;Of course you can always track every changes, but save the journal portion only if saving the DWG.&lt;/P&gt;&lt;P&gt;An external journal file or database has the advantage o be accessed by multiple applications, so you can also add records when documents are checked, published, transmitted or revised.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, when you want to show what's changed in a datum version from previous one or even multiple previous versions, you can read the journal and highlight changed or new entities. Loading in memory previous versions' DWG you can retrieve deleted entities and show them too, or retrieve different versions of the same entity and highlight them for compares!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This way should be quite fast while running and easy enough to implement...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any more idea?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Oct 2016 07:08:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6596084#M34355</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-01T07:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6602019#M34356</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Your post is very helpful, I am also working on same functionality like Tracking Changes of Drawing. Here i am storing object id and its properties which are modified in my database, so that i can identify on which object what changes are done. But object Id of that entity is unique only for that session or that instance, so i am unable to find out which object was modified last time when i open my drawing again. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Is their any solution for this so that i can identify which object was modified and what changes are done last time when i close and reopen same drawing&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2016 05:24:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6602019#M34356</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-05T05:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6602382#M34357</link>
      <description>&lt;P&gt;Simple, use Handles.&lt;/P&gt;
&lt;P&gt;Handles are persistent&amp;nbsp;&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://forums.autodesk.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2016 09:57:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6602382#M34357</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-05T09:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6603554#M34358</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;Simple, use Handles.&lt;/P&gt;
&lt;P&gt;Handles are persistent&amp;nbsp;&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://forums.autodesk.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;But only unique within any given drawing.&amp;nbsp; Different drawings may have identical handles for different entities.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2016 17:37:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6603554#M34358</guid>
      <dc:creator>dgorsman</dc:creator>
      <dc:date>2016-10-05T17:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6605098#M34359</link>
      <description>&lt;P&gt;Sure, but aren't you going to manage separate journal for each dwg?&lt;/P&gt;
&lt;P&gt;Also I guess the tracking system is going to run on multiple workstation, isn't it?&lt;/P&gt;
&lt;P&gt;So I guess you must use a longer composite key to access you journal or db...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use 'project + relative folder + file name' as a main document management key, since once inscribed to the management, publishing and revisions are handled by a wizard procedure, so I'm sure what files derive from. And there is limited possibility for published drawings... for us, once sent out you can open them only for reading, or start a new revision.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another idea may be to create a GUID just to mark uniquely the document and store inside the document itself, so you are free to move and rename your files. Just remember to update your db at every saveas...&lt;/P&gt;
&lt;P&gt;But you have also to layout how your management react for different actions.&lt;/P&gt;
&lt;P&gt;For example, a saveas for us means a new independent branch, maybe a piece very similar but with different story by itself... a rename would just rename the current document (if not published), but keeping all the history, and so on...&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2016 10:18:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6605098#M34359</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-06T10:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6605901#M34360</link>
      <description>&lt;P&gt;abhay.nawale mentioned a database, not an in-document journaling system.&amp;nbsp; Using handles that way can get you into trouble, even when drawing file name is used&amp;nbsp;ie. users can delete the original file and rename another to the first name, then *blammo*&amp;nbsp;that handle/drawing filename index&amp;nbsp;that used to refer to a line is now referring to a block reference, or text, or something else that's completely different.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2016 15:33:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6605901#M34360</guid>
      <dc:creator>dgorsman</dc:creator>
      <dc:date>2016-10-06T15:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6607270#M34361</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;&lt;P&gt;Simple, use Handles.&lt;/P&gt;&lt;P&gt;Handles are persistent&amp;nbsp;&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://forums.autodesk.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes, and no. If the user modifies a block, re-sorts attributes, deletes, adds etc then the Handle can change. If they replace blocks with new blocks representing the same information then the handles will change but the information may be essentially unchanged.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you use as your baseline and comparison criteria depends on your definition of constitutes a change.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;btw, have you seen&amp;nbsp;&lt;A href="https://apps.autodesk.com/en/Detail/Index?id=136068404068200943&amp;amp;appLang=en&amp;amp;os=Win32_64" target="_blank"&gt;https://apps.autodesk.com/en/Detail/Index?id=136068404068200943&amp;amp;appLang=en&amp;amp;os=Win32_64&lt;/A&gt; ?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2016 04:36:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6607270#M34361</guid>
      <dc:creator>CADbloke</dc:creator>
      <dc:date>2016-10-07T04:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6607282#M34362</link>
      <description>&lt;P&gt;Thank you very much for this valuable information, now i got the &amp;nbsp;idea that we can use handles but we need to check that whether blocks are removing modifying or adding in the drawing, if we are able to handle these things then we can achieve the target. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2016 04:55:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6607282#M34362</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-07T04:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6607350#M34363</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;What you use as your baseline and comparison criteria depends on your definition of constitutes a change.&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;btw, have you seen&amp;nbsp;&lt;A href="https://apps.autodesk.com/en/Detail/Index?id=136068404068200943&amp;amp;appLang=en&amp;amp;os=Win32_64" target="_blank"&gt;https://apps.autodesk.com/en/Detail/Index?id=136068404068200943&amp;amp;appLang=en&amp;amp;os=Win32_64&lt;/A&gt; ?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Exactly, a document management or a change tracker must define what are those criteria and act accordingly.... in the block example you made, I'd prefer to report the whole block change even if the block still remained the same... it will be maybe a false positive, but it'd be much difficult to really understand if something actually changed or not, or maybe changed, but graphically speaking remain the same (like a batch update of cleaned and purged blocks).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried DWG Compare and it's loaded in some machines just in case, but it's rarely used among my customers... firstly because it didn't give the expected results... at least in our cases...&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2016 06:03:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6607350#M34363</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-07T06:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Need API Of DWG Compare App and for Tracking Drawing Changes</title>
      <link>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6607362#M34364</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/253793"&gt;@dgorsman﻿&lt;/a&gt;&amp;nbsp;yes, you're right, apparently is almost impossible to control every action from users that wants to create troubles on purpose...&lt;/P&gt;
&lt;P&gt;Currently, we have such a risk, but even not thinking about users, if it will&amp;nbsp;be necessary to perform a partial file restore, we will going out of sync with database or viceversa...&lt;/P&gt;
&lt;P&gt;But here we generally speak of custom applications for very specialized needs, to a generic customer with all the ifs and whens I'd probably suggest to go Vault....&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2016 06:17:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/need-api-of-dwg-compare-app-and-for-tracking-drawing-changes/m-p/6607362#M34364</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-07T06:17:17Z</dc:date>
    </item>
  </channel>
</rss>

