How can we work with VB6 dll called from a multithreaded c# windows service application? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T22:53:12Zhttp://stackoverflow.com/feeds/question/1080759http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080759/how-can-we-work-with-vb6-dll-called-from-a-multithreaded-c-windows-service-appli6How can we work with VB6 dll called from a multithreaded c# windows service application?Eduardo Xavier2009-07-03T20:40:35Z2009-07-04T01:57:16Z
<p>I'm running a multithreaded windows service that need to call a VB6 dll. There's no documentation about this VB6 dll and this legacy system supports a very critical business process.</p>
<p>At first time (1º thread), this dll performs well. As other threads need access, it start provide wrong results.</p>
<p>I read one guys saying:</p>
<p>"Just be careful of one thing if you are using VB6. Your threading model
is going to have to change to support apartments if you are running a multithreaded
service. VB only supports multiple single-threaded apartments, but .NET
runs fully free threaded normally. The thread that calls into the VB6 DLL
needs to be compatible with the DLL."</p>
<p>Another guy from team gave me the idea to put this ddl in a separated application domain. But I'm not sure.</p>
<p>How can we work with VB6 dll called from a multithreaded c# windows service application?</p>
http://stackoverflow.com/questions/1080759/how-can-we-work-with-vb6-dll-called-from-a-multithreaded-c-windows-service-appli/1080789#10807890Answer by Robert Harvey for How can we work with VB6 dll called from a multithreaded c# windows service application?Robert Harvey2009-07-03T20:52:56Z2009-07-03T20:58:35Z<p><a href="http://msdn.microsoft.com/en-us/library/aa716228%28VS.60%29.aspx" rel="nofollow">This article on multithreading Visual Basic 6 DLL's</a> provides some insight. It says:</p>
<blockquote>
<p>To make an ActiveX DLL project
multithreaded, select the desired
threading options on the General tab
of the Project Properties dialog box.</p>
</blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/aa733534%28VS.60%29.aspx" rel="nofollow">This article</a> says there are three possible models to choose from:</p>
<pre><code>One thread of execution
Thread pool with round-robin thread assignment
Every externally created object is on its own thread
</code></pre>
<p>I assume that the default is <code>one thread of execution</code>, and that one of the other two options needs to be selected.</p>
http://stackoverflow.com/questions/1080759/how-can-we-work-with-vb6-dll-called-from-a-multithreaded-c-windows-service-appli/1080826#10808260Answer by unknown (google) for How can we work with VB6 dll called from a multithreaded c# windows service application?unknown (google)2009-07-03T21:05:37Z2009-07-03T21:05:37Z<p>You might want to take a look at this: <a href="http://bytes.com/groups/net/49348-multithreading-concurrency-interop" rel="nofollow">linky</a></p>
<p>And here is a snippet that caught my attention:</p>
<blockquote>
<p>VB6 COM objects are STA objects, that means they must run on an STA thread.
You did create two instances of the object from two MTA threads, but the object itself will run on a single (COM (OLE) created) STA
thread, and access from the two MTA threads will be marshaled and synchronized.
So what you should do is, initialize the threads as STA so that each objects runs on his own STA thread without marshaling and you
will be fine.</p>
<p>Anyway, VB style COM objects are always STA. Now in order to prevent apartment marshaling and thread switching you need to create
instances in STA initialized apartments.
Note also that when you set the [MTAThread] attribute on Main, you effectively initialize the main thread as MTA, when you create
instances of STA objects from MTA threads COM will create a separate (unmanaged) thread and initialize it as STA (this is called the
default STA), all calls to STA objects from MTA threads will be marshaled (and incur thread switches), in some cases Idispatch calls
will fail due to IP marshaling failures.
So the advise is use STA (and therefore VB6) objects from compatible apartments only.</p>
</blockquote>
http://stackoverflow.com/questions/1080759/how-can-we-work-with-vb6-dll-called-from-a-multithreaded-c-windows-service-appli/1080973#10809732Answer by Steve Cooper for How can we work with VB6 dll called from a multithreaded c# windows service application?Steve Cooper2009-07-03T21:55:14Z2009-07-03T21:55:14Z<p>When the threads come in, are you saving objects and reusing them later on new threads? If you can, create the objects fresh for every thread. We have a situation like this with a data layer dll we use. If you create a connection on one thread, it can't be used from another. If you create a new connection on each thread, it works fine.</p>
<p>If it's slow to create your objects, look at the ThreadPool class and the ThreadStatic attribute. Threadpools recycle the same set of threads over and over to do work, and ThreadStatic lets you create an object that exists for one thread only. eg</p>
<pre><code>[ThreadStatic]
public static LegacyComObject myObject;
</code></pre>
<p>As a request comes in, turn it into a job and queue it in your thread pool. When the job starts, check if the static object is initialised;</p>
<pre><code>void DoWork()
{
if (myObject == null)
{
// slow intialisation process
myObject = New ...
}
// now do the work against myObject
myObject.DoGreatStuff();
}
</code></pre>
http://stackoverflow.com/questions/1080759/how-can-we-work-with-vb6-dll-called-from-a-multithreaded-c-windows-service-appli/1081314#10813141Answer by John Saunders for How can we work with VB6 dll called from a multithreaded c# windows service application?John Saunders2009-07-04T01:57:16Z2009-07-04T01:57:16Z<p>You say</p>
<blockquote>
<p>I'm running a multithreaded windows
service that need to call a VB6 dll.
There's no documentation about this
VB6 dll and this legacy system
supports a very critical business
process.</p>
</blockquote>
<p>and at the same time you say</p>
<blockquote>
<p>At first time (1º thread), this dll
performs well. As other threads need
access, it start provide wrong
results.</p>
</blockquote>
<p>I'd make very certain that Management is aware of the failure you're seeing because the code supporting the critical business process is old and undocumented, and is being used in a way it was never intended to be used, and was never tested to be used. I bet it's also never been tested to be used from .NET before, has it?</p>
<p>Here's my suggestion, and this is similar to something I've actually implemented:</p>
<p>The VB6 DLL expects to be called on a single thread. <strong><em>Do not disappoint it!</em></strong> When your service starts, have it start up a thread of the appropriate type (I can't say, since I've deliberately forgotten all that STA/MTA stuff). Queue up requests to that thread for access to the VB6 DLL. Have all such access go through the single thread.</p>
<p>That way, as far as the VB6 DLL is concerned, it's running exactly as it was tested to run.</p>
<p><hr /></p>
<p>BTW, this is slightly different from what I've implemented. I had a web service, not a Windows Service. I had a C DLL, not VB6, and it wasn't COM. I just refactored all access to the thing into a single class, then put lock statements around each of the public methods.</p>