473,395 Members | 1,937 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Calling unmanaged code from managed MFC worker thread

Hi,

I have an existing VC 6 MFC application which communicates asynchronly with
a VC 2005 managed code dll.
I use an unmanaged base class with virtual functions to access methods in
the MFC application.
Furthermore, I use a pointer to an unmanaged function to jump back into the
managed dll.

The managed part is basically a remoting enhancement which asynchronly
initiates a call from the remoting thread to the MFC application. The
information is collected within the main thread of the MFC application. The
managed code dll is invoked via a function pointer. From the managed code
additional calls to the unmanaged MFC application will be done via a pointer
to an object in the MFC. When this code is executed within the main thread
of the MFC application everything works fine.

However, if I switch to a MFC worker thread, calls via the base class
pointer results in System.AccessViolationException!

Scenario, which works:
1. Remoting thread imvoked
2. Managed DLL -MFC App asynchron, no result
3. Switch thread to App main thread
4. MFC App -Managed DLL
5. Managed DLL -MFC App (synchron)

Scenario, which does not work:
1. Remoting thread imvoked
2. Managed DLL -MFC App (asynchron, no result)
3. Switch thread to MFC worker thread!!!
4. MFC App -Managed DLL
5. Managed DLL -MFC App (synchron): System.AccessViolationException !!

How can I access pointer to unmanaged classes from managed code within a
worker thread?

Best regards,
Klaus
Aug 1 '07 #1
3 4673
On Aug 1, 12:34 pm, "Klaus" <Kl...@nowhere.invalidwrote:
Hi,

I have an existing VC 6 MFC application which communicates asynchronly with
a VC 2005 managed code dll.
I use an unmanaged base class with virtual functions to access methods in
the MFC application.
Furthermore, I use a pointer to an unmanaged function to jump back into the
managed dll.

The managed part is basically a remoting enhancement which asynchronly
initiates a call from the remoting thread to the MFC application. The
information is collected within the main thread of the MFC application. The
managed code dll is invoked via a function pointer. From the managed code
additional calls to the unmanaged MFC application will be done via a pointer
to an object in the MFC. When this code is executed within the main thread
of the MFC application everything works fine.

However, if I switch to a MFC worker thread, calls via the base class
pointer results in System.AccessViolationException!

Scenario, which works:
1. Remoting thread imvoked
2. Managed DLL -MFC App asynchron, no result
3. Switch thread to App main thread
4. MFC App -Managed DLL
5. Managed DLL -MFC App (synchron)

Scenario, which does not work:
1. Remoting thread imvoked
2. Managed DLL -MFC App (asynchron, no result)
3. Switch thread to MFC worker thread!!!
4. MFC App -Managed DLL
5. Managed DLL -MFC App (synchron): System.AccessViolationException !!

How can I access pointer to unmanaged classes from managed code within a
worker thread?

Best regards,
Klaus

Hi, Klaus,

I assume you are already using delegates, and marshaling of delegate
method pointers to access unmanaged functions from managed code,
correct?

http://msdn2.microsoft.com/en-us/library/bfeyhsdy.aspx


Aug 1 '07 #2
Thanks for your help!

Here is the code:
myHeader.h, shared in both projects, MFC 6.0 App and VC 2005 DLL:
class CMyBase
{
public:
CMyBase() {};
virtual ~CMyBase() {};
virtual bool MyExample() = 0;
};

In MFC App this class will be derived:
class CMyBaseDerived : public CMyBase
{
public:
CMyBaseDerived();
virtual ~CMyBaseDerived();
virtual bool MyExample();
};

In VC2005, I have a pointer to the instance of CMyBaseDerived:
CMyBase *PMyBase;
This pointer will be initialized by calling a function in the DLL from the
App:
void MyInit(CMyBase *p)
{
PMyBase = p;
}

When I use this pointer in the DLL from the MFC worker thread an
AccessViolationException will be thrown:
PMyBase->MyExample();

Using this pointer within the main thread no problem occurs.

Best regards,
Klaus
"Pixel.to.life" <pi***********@gmail.comwrote in message
news:11**********************@i38g2000prf.googlegr oups.com...
On Aug 1, 12:34 pm, "Klaus" <Kl...@nowhere.invalidwrote:
>Hi,

I have an existing VC 6 MFC application which communicates asynchronly
with
a VC 2005 managed code dll.
I use an unmanaged base class with virtual functions to access methods in
the MFC application.
Furthermore, I use a pointer to an unmanaged function to jump back into
the
managed dll.

The managed part is basically a remoting enhancement which asynchronly
initiates a call from the remoting thread to the MFC application. The
information is collected within the main thread of the MFC application.
The
managed code dll is invoked via a function pointer. From the managed code
additional calls to the unmanaged MFC application will be done via a
pointer
to an object in the MFC. When this code is executed within the main
thread
of the MFC application everything works fine.

However, if I switch to a MFC worker thread, calls via the base class
pointer results in System.AccessViolationException!

Scenario, which works:
1. Remoting thread imvoked
2. Managed DLL -MFC App asynchron, no result
3. Switch thread to App main thread
4. MFC App -Managed DLL
5. Managed DLL -MFC App (synchron)

Scenario, which does not work:
1. Remoting thread imvoked
2. Managed DLL -MFC App (asynchron, no result)
3. Switch thread to MFC worker thread!!!
4. MFC App -Managed DLL
5. Managed DLL -MFC App (synchron): System.AccessViolationException !!

How can I access pointer to unmanaged classes from managed code within a
worker thread?

Best regards,
Klaus


Hi, Klaus,

I assume you are already using delegates, and marshaling of delegate
method pointers to access unmanaged functions from managed code,
correct?

http://msdn2.microsoft.com/en-us/library/bfeyhsdy.aspx


Aug 2 '07 #3
On Aug 2, 2:14 am, "Klaus" <Kl...@nowhere.invalidwrote:
Thanks for your help!

Here is the code:
myHeader.h, shared in both projects, MFC 6.0 App and VC 2005 DLL:
class CMyBase
{
public:
CMyBase() {};
virtual ~CMyBase() {};
virtual bool MyExample() = 0;

};

In MFC App this class will be derived:
class CMyBaseDerived : public CMyBase
{
public:
CMyBaseDerived();
virtual ~CMyBaseDerived();
virtual bool MyExample();

};

In VC2005, I have a pointer to the instance of CMyBaseDerived:
CMyBase *PMyBase;
This pointer will be initialized by calling a function in the DLL from the
App:
void MyInit(CMyBase *p)
{
PMyBase = p;

}

When I use this pointer in the DLL from the MFC worker thread an
AccessViolationException will be thrown:
PMyBase->MyExample();

Using this pointer within the main thread no problem occurs.

Best regards,
Klaus

"Pixel.to.life" <pixel.to.l...@gmail.comwrote in message

news:11**********************@i38g2000prf.googlegr oups.com...
On Aug 1, 12:34 pm, "Klaus" <Kl...@nowhere.invalidwrote:
Hi,
I have an existing VC 6 MFC application which communicates asynchronly
with
a VC 2005 managed code dll.
I use an unmanaged base class with virtual functions to access methods in
the MFC application.
Furthermore, I use a pointer to an unmanaged function to jump back into
the
managed dll.
The managed part is basically a remoting enhancement which asynchronly
initiates a call from the remoting thread to the MFC application. The
information is collected within the main thread of the MFC application.
The
managed code dll is invoked via a function pointer. From the managed code
additional calls to the unmanaged MFC application will be done via a
pointer
to an object in the MFC. When this code is executed within the main
thread
of the MFC application everything works fine.
However, if I switch to a MFC worker thread, calls via the base class
pointer results in System.AccessViolationException!
Scenario, which works:
1. Remoting thread imvoked
2. Managed DLL -MFC App asynchron, no result
3. Switch thread to App main thread
4. MFC App -Managed DLL
5. Managed DLL -MFC App (synchron)
Scenario, which does not work:
1. Remoting thread imvoked
2. Managed DLL -MFC App (asynchron, no result)
3. Switch thread to MFC worker thread!!!
4. MFC App -Managed DLL
5. Managed DLL -MFC App (synchron): System.AccessViolationException !!
How can I access pointer to unmanaged classes from managed code within a
worker thread?
Best regards,
Klaus
Hi, Klaus,
I assume you are already using delegates, and marshaling of delegate
method pointers to access unmanaged functions from managed code,
correct?
http://msdn2.microsoft.com/en-us/library/bfeyhsdy.aspx- Hide quoted text -

- Show quoted text -

Klaus,

First of all, it doesnt not seem like your MFC app is a managed
aplpication. Do you compile it with /clr command line option?
If you are using only MFC, why do you need to build a managed
application?

Secondly, do you have the method MyExample() overridden in
CMyBaseDerived?

Thirdly, assuming you have MyExample() overridden in CMyBaseDerived,
dont you have to cast PMyBase to a pointer to the derived object?
Virtual method references are resolved at run time, so unless the
machine knows the object is of derived type, it would look for the
method's definition ion the base class (
http://www.parashift.com/c++-faq-lit....html#faq-20.3
).. and if you dont have an implementation of MyExample() in the base
class, you will get an access violation.. no matter in managed/
unmanaged code.

Pardon me if I missed something.

Aug 3 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Ted Miller | last post by:
Hi folks, I originally posted this on microsoft.public.dotnet.framework.interop. Reposting to broaden the audience. I'm having an interop problem where my managed component is reentered from...
15
by: Bryan | last post by:
I have a multi-threaded C# console application that uses WMI (System.Management namespace) to make RPC calls to several servers (600+ ) and returns ScheduledJobs. The section of my code that...
1
by: Jesse McGrew | last post by:
Hi all, I'm trying to make a plugin DLL for a third-party application, using VC++ .NET 2003. This DLL acts as a bridge between the C++ plugin API of the application, and my actual plugin code...
4
by: William F. Kinsley | last post by:
My understanding is that when I re-compile a existing MFC application with the /clr switch, that the code generated is managed(with some exceptions) but that the data isn't, i.e. not garbage...
1
by: H.B. | last post by:
Hi, I need to make a function that can display data on my Managed C++ app and be called by an unmanaged C++ DLL. Something like : void Form1::Form1_Load(System::Object * sender,...
2
by: Marcus Kwok | last post by:
I have processing code (I'll call it the "model") written in native unmanaged pure C++, and I have put a GUI on top of it written using Windows Forms (.NET 1.1). The GUI is used to set the...
4
by: Benny | last post by:
I am creating a thread via "new Thread(new ThreadStart(p.ThreadProc))", is it safe for ThreadProc to use GetMessage/TranslateMessage/DispatchMessage instead of DoEvents? What I would like to do...
2
by: interX | last post by:
Hi, I have a little problem with managed/unmanaged in Visual Studio 2005 (Compiler setting /clr). I need to overhand several function pointers from managed to unmanaged. These function pointers...
7
by: =?Utf-8?B?UVNJRGV2ZWxvcGVy?= | last post by:
I have a C# logging assembly with a static constructor and methods that is called from another C# Assembly that is used as a COM interface for a VB6 Application. Ideally I need to build a file...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.