.NET remoting and Delphi win32 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T08:46:22Z http://stackoverflow.com/feeds/question/792598 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/792598/net-remoting-and-delphi-win32 1 .NET remoting and Delphi win32 Harriv 2009-04-27T08:07:22Z 2009-05-06T17:25:10Z <p>Hi,</p> <p>Is it possible (and feasible) to use .NET Remoting interface with Delphi win32 application?</p> <p>I need communication between .NET application and Delphi win32 application, so .NET remoting would be native for other end of the pipe.</p> <p>Any other solutions, as close to native as possible, for both ends without 3rd party libraries? Applications will be running each on a separate Windows machine.</p> http://stackoverflow.com/questions/792598/net-remoting-and-delphi-win32/792605#792605 2 Answer by Stijn Sanders for .NET remoting and Delphi win32 Stijn Sanders 2009-04-27T08:10:58Z 2009-04-27T08:10:58Z <p>Both Delphi win23 and .Net have good support for COM objects. It's an option worth checking out.</p> http://stackoverflow.com/questions/792598/net-remoting-and-delphi-win32/792644#792644 2 Answer by Marc Gravell for .NET remoting and Delphi win32 Marc Gravell 2009-04-27T08:27:28Z 2009-04-27T08:27:28Z <p>Using remoting from a non-.NET Delphi exe would be very painful. If the .NET app isn't known to be running, then COM interop would be the easiest answer, since there are processes for COM activation etc. The fact that there are different machines complicates things, but DCOM exists and works (I haven't tested it with .NET and Delphi endpoints, though).</p> <p>If the .NET app <em>is</em> known to be running (perhaps as a service), you could consider a range of alternatives:</p> <ul> <li>sockets</li> <li>http (perhaps POX over http, using <code>HttpListener</code> at the .NET server)</li> <li>SOAP (perhaps using WCF via <code>ServiceHost</code> at the .NET end)</li> <li>file based (network share, presumably)</li> </ul> http://stackoverflow.com/questions/792598/net-remoting-and-delphi-win32/792793#792793 4 Answer by André Mussche for .NET remoting and Delphi win32 André Mussche 2009-04-27T09:18:35Z 2009-04-27T09:18:35Z <p>Because they are running on different machines, you should use a network communication. SOAP is a general communication format, which can be easely made for both .Net and Delphi win32. But SOAP = XML = slow. </p> <p>For my company we use the RemObjects SDK remoting framework: <a href="http://www.remobjectssdk.com/" rel="nofollow">http://www.remobjectssdk.com/</a></p> <p>Very easy to make an interface, generate code for .Net/Delphi/Php/c++/whatever, also supports SOAP but we use the binary format for speed (!).</p> http://stackoverflow.com/questions/792598/net-remoting-and-delphi-win32/830771#830771 0 Answer by Hugues Van Landeghem for .NET remoting and Delphi win32 Hugues Van Landeghem 2009-05-06T17:25:10Z 2009-05-06T17:25:10Z <p>You can also see <a href="http://www.atozed.com/CrossTalk/Blog/20090503.EN.aspx" rel="nofollow">Crosstalk</a></p>