<?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: RealDWG AcDbDatabase initialization AccessViolationException error in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11320009#M2458</link>
    <description>&lt;P&gt;Indeed I missed setting Host Application Services. And once, I set Host Application Services like done by moogalm, it works fine for me. I have accepted his answer as a solution.&lt;/P&gt;</description>
    <pubDate>Tue, 26 Jul 2022 06:42:54 GMT</pubDate>
    <dc:creator>muaslam</dc:creator>
    <dc:date>2022-07-26T06:42:54Z</dc:date>
    <item>
      <title>RealDWG AcDbDatabase initialization AccessViolationException error</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11245873#M2451</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am facing an error while initializing an instance of AcDbDatabase class. I have tried creating a pointer instance as well but even that fails with the same exception (AccessViolationException)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to read AcDbDatabaseSummaryInfo using acdbGetSummaryInfo method. That requires database as a parameter. If there's some other method to get SummaryInfo of the file?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;void ReadProperties(std::wstring filename)&lt;BR /&gt;{&lt;BR /&gt;std::wcout &amp;lt;&amp;lt; "Starting to read database info" &amp;lt;&amp;lt; std::endl;&lt;BR /&gt;AcDbDatabase database(Adesk::kFalse);&lt;BR /&gt;std::wcout &amp;lt;&amp;lt; "empty database cretaed" &amp;lt;&amp;lt; std::endl;&lt;BR /&gt;std::wcout &amp;lt;&amp;lt; L"Method call end" &amp;lt;&amp;lt; std::endl;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Following is the detailed exception,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unhandled Exception: System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.&lt;BR /&gt;at AcDbDatabase.{ctor}(AcDbDatabase* , Boolean , Boolean )&lt;BR /&gt;at Bentley.RealDwgWrapperDotNet.RDwgExtractor.ReadProperties(basic_string&amp;lt;wchar_t\,std::char_traits&amp;lt;wchar_t&amp;gt;\,std::allocator&amp;lt;wchar_t&amp;gt; &amp;gt;* filename) in C:\Users\umar.aslam\Documents\Visual Studio 2022\Projects\RealDWGWrapper\RealDWGWrapper\RDwgExtractor.cpp:line 81&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help in this regard?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Umar&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 10:17:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11245873#M2451</guid>
      <dc:creator>muaslam</dc:creator>
      <dc:date>2022-06-20T10:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: RealDWG AcDbDatabase initialization AccessViolationException error</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11261019#M2452</link>
      <description>&lt;P&gt;You should not create an &lt;FONT face="courier new,courier"&gt;AcDbDatabase&lt;/FONT&gt; object on the stack. Always use &lt;FONT face="courier new,courier"&gt;new&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;delete&lt;/FONT&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;void ReadProperties(std::wstring filename)
{
  std::wcout &amp;lt;&amp;lt; "Starting to read database info" &amp;lt;&amp;lt; std::endl;
  AcDbDatabase *database = new AcDbDatabase(Adesk::kFalse);
  std::wcout &amp;lt;&amp;lt; "empty database cretaed" &amp;lt;&amp;lt; std::endl;
  std::wcout &amp;lt;&amp;lt; L"Method call end" &amp;lt;&amp;lt; std::endl;
  delete database;
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 13:47:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11261019#M2452</guid>
      <dc:creator>tbrammer</dc:creator>
      <dc:date>2022-06-27T13:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: RealDWG AcDbDatabase initialization AccessViolationException error</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11261294#M2453</link>
      <description>&lt;P&gt;I don't see any reason why db object shouldn't be created on stack.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;int _tmain(int argc, TCHAR* argv[])
{
    acdbSetHostApplicationServices(&amp;amp;gCreatentHostApp);
    acdbValidateSetup(AcLocale(L"en", L"us"));    
    AcDbDatabase db(Adesk::kFalse);
    db.readDwgFile(L"D:\\Temp\\oneRing.dwg");
    acdbHostApplicationServices()-&amp;gt;setWorkingDatabase(&amp;amp;db);
    AcDbDatabaseSummaryInfo* info = nullptr;
    acdbGetSummaryInfo(&amp;amp;db, info);
    ACHAR* pPropertyString = NULL;   
    if (info != nullptr) {
        info-&amp;gt;getTitle(pPropertyString);       
        std::wcout &amp;lt;&amp;lt; L"Title:"&amp;lt;&amp;lt;pPropertyString&amp;lt;&amp;lt; std::endl;
    }
    acdbCleanUp();
    return 0;
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Some more beautification -&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;template&amp;lt;typename ...Args&amp;gt;
void log(Args &amp;amp;&amp;amp; ...args)
{
	(std::wcout &amp;lt;&amp;lt; ... &amp;lt;&amp;lt; args);
}

#define GET_SUMMINFO_STRING(PROPERTY_NAME,strProp) {                                                                    \
      AcDbDatabaseSummaryInfo* pSummaryInfo = nullptr;                                                                   \
    if (!eOkVerify(acdbGetSummaryInfo(acdbHostApplicationServices()-&amp;gt;workingDatabase(), pSummaryInfo)))                   \
         return -1;                                                                                                        \
    ACHAR* pPropertyString = nullptr;                                                                                       \
    if (!eOkVerify(pSummaryInfo-&amp;gt;get##PROPERTY_NAME(pPropertyString)))                                                       \
         return -1;                                                                                                           \
    if (pPropertyString != nullptr) {                                                                                          \
        strProp = pPropertyString;                                                                                              \
        log(#PROPERTY_NAME,L"-------------------------", strProp, L"\n");                                                        \
        delete pPropertyString;                                                                                                   \
    }                                                                                                                              \
}




int _tmain(int argc, TCHAR* argv[])
{
    acdbSetHostApplicationServices(&amp;amp;gCreatentHostApp);
    acdbValidateSetup(AcLocale(L"en", L"us"));    
    AcDbDatabase db(Adesk::kFalse);
    db.readDwgFile(L"D:\\Temp\\oneRing.dwg");
    acdbHostApplicationServices()-&amp;gt;setWorkingDatabase(&amp;amp;db);
    std::wstring strProp;
    GET_SUMMINFO_STRING(Title, strProp);
    GET_SUMMINFO_STRING(Subject, strProp);
    GET_SUMMINFO_STRING(Comments, strProp);
    GET_SUMMINFO_STRING(Author, strProp);
    GET_SUMMINFO_STRING(Keywords, strProp);
    GET_SUMMINFO_STRING(LastSavedBy, strProp);
    GET_SUMMINFO_STRING(RevisionNumber, strProp);
	GET_SUMMINFO_STRING(HyperlinkBase, strProp);    
    acdbCleanUp();
    return 0;
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="moogalm_0-1656345012515.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1084665i8F154748F4B88CA8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="moogalm_0-1656345012515.png" alt="moogalm_0-1656345012515.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 15:50:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11261294#M2453</guid>
      <dc:creator>moogalm</dc:creator>
      <dc:date>2022-06-27T15:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: RealDWG AcDbDatabase initialization AccessViolationException error</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11261410#M2454</link>
      <description>&lt;P&gt;I can't give you a profound explanation &lt;EM&gt;why&lt;/EM&gt; you shouldn't create an &lt;FONT face="courier new,courier"&gt;AcDbDatabase&lt;/FONT&gt; on stack. &lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;AcDbDatabase&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;AcDbObject&lt;/FONT&gt; are both derived from &lt;FONT face="courier new,courier"&gt;&lt;SPAN class="Element146"&gt;AcHeapOperators&lt;/SPAN&gt;&lt;/FONT&gt;. This is what the ARX docs say:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="areascroll" class="Element720" style="overflow: auto; height: 1255px; width: 1012px; top: 0px; padding-right: 20px;"&gt;
&lt;DIV class="Element721"&gt;
&lt;DIV class="Element58"&gt;
&lt;DIV class="Element11"&gt;
&lt;DIV class="Element10"&gt;
&lt;P class="Element10 lia-indent-padding-left-30px"&gt;&lt;EM&gt;"Objects that inherit from &lt;SPAN class="Element146"&gt;AcHeapOperators&lt;/SPAN&gt; are guaranteed to be allocated on the AcDb heap. &lt;SPAN class="Element146"&gt;AcHeapOperators&lt;/SPAN&gt; resolves memory allocation conflicts for objects in applications that are built with a version of the C runtime library that differs from the one used by AutoCAD's memory manager. "&lt;/EM&gt;&lt;/P&gt;
&lt;P class="Element10"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="Element10"&gt;A second argument might be that I haven't ever seen any ARX sample that created an&amp;nbsp;&lt;FONT face="courier new,courier"&gt;AcDbDatabase&lt;/FONT&gt; on stack.&lt;/P&gt;
&lt;P class="Element10"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="Element10"&gt;I assume that it leads to problems if you create any &lt;FONT face="courier new,courier"&gt;&lt;SPAN class="Element146"&gt;AcHeapOperators&lt;/SPAN&gt;&lt;/FONT&gt;-derived object on the stack while it's memory is allocated on the AcDb heap. I would suggest that you simply try to use &lt;FONT face="courier new,courier"&gt;new&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;delete&lt;/FONT&gt; and see if it helps.&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 27 Jun 2022 15:56:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11261410#M2454</guid>
      <dc:creator>tbrammer</dc:creator>
      <dc:date>2022-06-27T15:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: RealDWG AcDbDatabase initialization AccessViolationException error</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11262544#M2455</link>
      <description>&lt;P&gt;Well, the quote from the ARX doc is true in the past but doesn’t hold good anymore.&lt;/P&gt;
&lt;P&gt;I had quick chat with one of Sr architects of AutoCAD what was the rationale behind the doc –&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/845950"&gt;@tbrammer&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I can't give you a profound explanation &lt;EM&gt;why&lt;/EM&gt; you shouldn't create an &lt;FONT face="courier new,courier"&gt;AcDbDatabase&lt;/FONT&gt; on stack. &lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;AcDbDatabase&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;AcDbObject&lt;/FONT&gt; are both derived from &lt;FONT face="courier new,courier"&gt;&lt;SPAN class="Element146"&gt;AcHeapOperators&lt;/SPAN&gt;&lt;/FONT&gt;. This is what the ARX docs say:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM style="font-family: inherit;"&gt;"Objects that inherit from &lt;SPAN class="Element146"&gt;AcHeapOperators&lt;/SPAN&gt; are guaranteed to be allocated on the AcDb heap. &lt;SPAN class="Element146"&gt;AcHeapOperators&lt;/SPAN&gt; resolves memory allocation conflicts for objects in applications that are built with a version of the C runtime library that differs from the one used by AutoCAD's memory manager. "&lt;/EM&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;In the past, we had issues with different compiler (really runtime) versions in ARX apps vs. AutoCAD. Using the AcHeapOperator made sure that allocation and deletion get to the same runtime.&lt;/P&gt;
&lt;P&gt;but nowadays, &lt;STRONG&gt;we require that the ARX app is built with the same VC++ release as AutoCAD, so there is no longer any reason at all for that AcHeapOperators.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You need to create AcDbObjects on the heap if you want to hand their control over to AutoCAD for proper deallocation - that is, if your created AcDbObject's lifetime&amp;nbsp;extends the lifetime of your stack.&lt;/P&gt;
&lt;P&gt;I.E. if you return from your function, but the AcDbObject you created stays alive (for example, if you added it to the current drawing). Then, of course, you need to allocate it on the heap.&lt;/P&gt;
&lt;P&gt;but for code like I have given in the post, the AcDb object's lifetime ends with the lifetime of the stack/function. In this case, it is valid&amp;nbsp;and preferable&amp;nbsp;to use the stack.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The AcHeapOperator made sure that&amp;nbsp;if&amp;nbsp;you create an AcDb object on the heap, it goes to the right memory pool. But it&amp;nbsp;never&amp;nbsp;was required for the AcDb object to be allocated on the heap. They could always be created on the stack.&lt;/P&gt;
&lt;P&gt;And these days (the latest couple of AutoCAD releases), the AcHeapOperator just calls the CRT malloc() function - the same happens for objects that are not derived from AcHeapOperator. So there is no reason any longer for that AcHeapOperator. We just left it in the public API for compatibility reasons.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 03:17:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11262544#M2455</guid>
      <dc:creator>moogalm</dc:creator>
      <dc:date>2022-06-28T03:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: RealDWG AcDbDatabase initialization AccessViolationException error</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11263143#M2456</link>
      <description>&lt;P&gt;Thanks for the explanation, &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1937895"&gt;@moogalm&lt;/a&gt;.&amp;nbsp;So you say that it is ok to create an &lt;FONT face="courier new,courier"&gt;AcDbDatabase&lt;/FONT&gt; on the stack?&lt;/P&gt;
&lt;P&gt;In fact I tried&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4537899"&gt;@muaslam&lt;/a&gt;'s code in my own RealDWG project and it ran smooth.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have other ideas for the exception reported from&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4537899"&gt;@muaslam&lt;/a&gt;&amp;nbsp;that seems to arise from the &lt;FONT face="courier new,courier"&gt;AcDbDatabase&lt;/FONT&gt; constructor?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;Unhandled Exception: System.AccessViolationException: Attempted to read or write protected memory. &lt;FONT color="#FF0000"&gt;This is often an indication that other memory is corrupt&lt;/FONT&gt;.&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;at AcDbDatabase.{ctor}(AcDbDatabase* , Boolean , Boolean )&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;at Bentley.RealDwgWrapperDotNet.RDwgExtractor.ReadProperties(basic_string&amp;lt;wchar_t\,std::char_traits&amp;lt;wchar_t&amp;gt;\,std::allocator&amp;lt;wchar_t&amp;gt; &amp;gt;* filename) in C:\Users\umar.aslam\Documents\Visual Studio 2022\Projects\RealDWGWrapper\RealDWGWrapper\RDwgExtractor.cpp:line 81&lt;/EM&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We are talking about a RealDWG project here. It looks as if you are using&amp;nbsp;&lt;A href="https://bentley-v8i-autodesk-realdwg.software.informer.com/" target="_blank" rel="noopener"&gt;RealDWG for MicroStation&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4537899"&gt;@muaslam&lt;/a&gt;&amp;nbsp;are you developing&amp;nbsp;&lt;EM&gt;Bentley.RealDwgWrapperDotNet&amp;nbsp;&amp;nbsp;&lt;/EM&gt;yourself or do you use it as 3rd party product?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Maybe the provider Bentley can support you then.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 08:35:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11263143#M2456</guid>
      <dc:creator>tbrammer</dc:creator>
      <dc:date>2022-06-28T08:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: RealDWG AcDbDatabase initialization AccessViolationException error</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11263216#M2457</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/845950"&gt;@tbrammer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, &lt;SPAN&gt;if you would call new&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG data-stringify-type="bold"&gt;and&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;delete on a given object in the same function, then don't use it at all, creating object on stack is more elegant.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I don't see enough information to comment on the exception,&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4537899"&gt;@muaslam&lt;/a&gt;&amp;nbsp;if you can provide simple project that would be great to understand.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;AccessViolationException are imposibble in managed code, this occurs only when a managed code is interacting with unmanaged c++ code, looks like this what is happening at your end.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 08:59:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11263216#M2457</guid>
      <dc:creator>moogalm</dc:creator>
      <dc:date>2022-06-28T08:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: RealDWG AcDbDatabase initialization AccessViolationException error</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11320009#M2458</link>
      <description>&lt;P&gt;Indeed I missed setting Host Application Services. And once, I set Host Application Services like done by moogalm, it works fine for me. I have accepted his answer as a solution.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2022 06:42:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/realdwg-acdbdatabase-initialization-accessviolationexception/m-p/11320009#M2458</guid>
      <dc:creator>muaslam</dc:creator>
      <dc:date>2022-07-26T06:42:54Z</dc:date>
    </item>
  </channel>
</rss>

