Using .Net classes through COM Objects in Delphi sometimes hangs - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T14:59:17Zhttp://stackoverflow.com/feeds/question/460486http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/460486/using-net-classes-through-com-objects-in-delphi-sometimes-hangs2Using .Net classes through COM Objects in Delphi sometimes hangsThe Alchemist2009-01-20T08:41:56Z2009-02-23T07:56:48Z
<p>I have a set of libraries written in Delphi.NET (.NET 1.1) which I want to use in my Win32 (Delphi) application. For performance related issues, I've decided to follow the COM route. </p>
<p>Sometimes, after rebuilding the DLL, when I try to instantiate the objects exposed through COM the win32 application hangs at the CreateComObject call--how can I solve this problem?</p>
<p>To expose the Delphi.NET libraries through COM, I add the following attributes above each class deceleration: </p>
<p>[Comvisible(true)]
[Guid('some guid')]
[ClassInterface(ClassInterfaceType.AutoDual)] </p>
<p>After compiling the DLL, I generate a *TLB.pas file, this file contains definition for all public and COM visible classes and interfaces in DLL, this file allows me to more easily use the COM objects in my Delphi Win32 application. Finally, I register the dll and the .tlb flie using regasm.</p>
<p>I've tried unregistering and running the win32 app. which references the DLLS; I expected to receive a run-time error but the application once again hung at the CreateComObject call.</p>
<p>I've also tried unregistering and registering the dll without any luck.</p>
<p>Thanks.</p>
<p>p.s. I am using BDS2006</p>
http://stackoverflow.com/questions/460486/using-net-classes-through-com-objects-in-delphi-sometimes-hangs/460566#4605660Answer by mj2008 for Using .Net classes through COM Objects in Delphi sometimes hangsmj20082009-01-20T09:24:34Z2009-01-20T09:24:34Z<p>Be sure that you shut down the code in a proper manner, and do not just stop it in the debugger. I've found that killing inter-process applications using the debugger can cause all sorts of problems, usually needing a reboot to clear them away. It takes discipline to do this as normally you can do it without problem.</p>
http://stackoverflow.com/questions/460486/using-net-classes-through-com-objects-in-delphi-sometimes-hangs/481009#4810091Answer by Jeroen Pluimers for Using .Net classes through COM Objects in Delphi sometimes hangsJeroen Pluimers2009-01-26T19:26:10Z2009-01-26T19:26:10Z<p>I have mixed experiences with COM; COM can sometimes be a real pain to get stable, so if not needed, I often take anoter route.</p>
<p>In this case, you could try to go around COM by using inverse P/Invoke.</p>
<p>Here are a few articles that can help you on this:</p>
<p><a href="http://blogs.codegear.com/timjarvis/2006/11/10/29270" rel="nofollow">http://blogs.codegear.com/timjarvis/2006/11/10/29270</a>
<a href="http://www.blong.com/Conferences/BorConUK2002/Interop1/Win32AndDotNetInterop.htm" rel="nofollow">http://www.blong.com/Conferences/BorConUK2002/Interop1/Win32AndDotNetInterop.htm</a>
<a href="http://www.blong.com/Conferences/BorCon2004/Interop1/Win32AndDotNetInterop.htm" rel="nofollow">http://www.blong.com/Conferences/BorCon2004/Interop1/Win32AndDotNetInterop.htm</a></p>
<p>You can gets more hits when you google on <a href="http://www.google.nl/search?q=delphi+inverse+pinvoke" rel="nofollow">"Delphi Inverse PInvoke"</a> but the above ones are the best articles.</p>
<p>Kind regards,</p>
<p>Jeroen Pluimers</p>
http://stackoverflow.com/questions/460486/using-net-classes-through-com-objects-in-delphi-sometimes-hangs/576835#5768350Answer by macropas for Using .Net classes through COM Objects in Delphi sometimes hangsmacropas2009-02-23T07:51:26Z2009-02-23T07:56:48Z<p>Using <a href="http://www.remobjects.com/hydra.aspx" rel="nofollow">RemObjects Hydra</a> is an easy way to mix managed and unmanaged Delphi code. But unfortunatly it's quite expensive - $499 :(</p>
<p>Update: try <a href="http://sourceforge.net/projects/delphinet" rel="nofollow">Delphi.Net</a> open source project. This project is inactive, but you can use it for Win32 -> dotNet1.1 assembly interaction. </p>