Hi, I am a COM novice so please bear with me if information is incomplete/incorrect. I have a C++ application interacting with a .NET application through a COM. The C++ application is launched by the .NET application, which received events from the C++ application through COM interface using COleDispatchDriver.InvokeHelper method (described here - http://msdn.microsoft.com/en-us/library/zwx803ex(v=vs.80).aspx[^]. My question is - say my .NET application dies and my C++ application remains alive and tries to send an event to the .NET application through this COM interface, is there any way I can know that .NET application's gone. Please let me know if you need more information. Thanks, Anshuman
asr1122
Posts
-
question about COM event handler -
Exception during assignment operation to a COM object - "Attempted to read or write protected memory"Thanks for the suggestion. I couldn't make it work though. Decided to give up on this way of passing data. Looking at other simpler options. Thanks for the help.
-
Exception during assignment operation to a COM object - "Attempted to read or write protected memory"Trying to paste more information about the exception from the exception helper System.AccessViolationException was caught Message="Attempted to read or write protected memory. This is often an indication that other memory is corrupt." Source="WebAstra.Application.VoIP.UniversalCOMServer.Interop" StackTrace: at WebAstra.Application.VoIP.UniversalCOMServer.Interop._ICallInfo.set_CallId(Int32 pVal) at WebAstra.Application.VoIP.UniversalCOMServer.UCOMCallData.CreateCallInfo(ApplicationClass appRoot) Now the dispatch map for this in source is like:
BEGIN_DISPATCH_MAP(CCallInfo, CCmdTarget)
//There are many other entries as well
DISP_PROPERTY_ID(CCallInfo, "CallId", dispidCallId, m_nCallId, VT_I4)
END_DISPATCH_MAP()In the sources, I don't see any function of setting or getting values so I tried using DISP_PROPERTY_EX_ID instead of DISP_PROPERTY_ID with get and set functions but that didn't change anything. (my change which didn't change anything)
DISP_PROPERTY_EX_ID(CCallInfo, "CallId", dispidCallId, GetCallId, SetCallId, VT_I4)
Moreover in the interop, I do see the entry like this -
[DispId(1)]
int CallId { get; set; }Maybe that's because get and set methods have been declared in the IDL file (??). Thanks.
-
Exception during assignment operation to a COM object - "Attempted to read or write protected memory"Caught! I actually don't do that but I knew that there is no problem in creating the 'callInfo' object as I was checking that using the debugger (always reproducible if I don't use reflection to assign values). This is how the function looks like using reflection (which works without a hitch) -
public CallInfo CreateCallInfo(ApplicationClass appRoot)
{
CallInfo callInfo = null;//callInfo = new CallInfo(); appRoot.CreateCallInfo(out callInfo); try { Type typeCallInfo = typeof(CallInfo); Type typeUCOMCallData = typeof(UCOMCallData); object\[\] objValue = new object\[1\]; foreach (PropertyInfo pi in typeUCOMCallData.GetProperties()) { objValue\[0\] = typeUCOMCallData.GetProperty(pi.Name).GetValue(this, null); typeCallInfo.InvokeMember(pi.Name, BindingFlags.SetProperty, null, (CallInfo)callInfo, objValue); } } catch (Exception ex) { }
}
Trying without reflection -
public CallInfo CreateCallInfo(ApplicationClass appRoot)
{
CallInfo callInfo = null;//callInfo = new CallInfo(); appRoot.CreateCallInfo(out callInfo); try { //Type typeCallInfo = typeof(CallInfo); //Type typeUCOMCallData = typeof(UCOMCallData); //object\[\] objValue = new object\[1\]; //foreach (PropertyInfo pi in typeUCOMCallData.GetProperties()) //{ // objValue\[0\] = typeUCOMCallData.GetProperty(pi.Name).GetValue(this, null); // typeCallInfo.InvokeMember(pi.Name, // BindingFlags.SetProperty, // null, // (CallInfo)callInfo, // objValue); //} callInfo.CallId = nCallId; //private member variable } catch (Exception ex) { } return callInfo;
}
-
Exception during assignment operation to a COM object - "Attempted to read or write protected memory"Richard MacCutchan wrote: 1. What is the actual code for the following function? HRESULT CreateCallInfo([out]_ICallInfo** piResult); void CApplication::CreateCallInfo(IDispatch** piResult) { CCmdTarget* pTarget = new CCallInfo(); *piResult = pTarget->GetIDispatch(TRUE); } I am not sure if you need the source for CCallInfo class so skipping that. Richard MacCutchan wrote: 2. Why do you not check the result of your CreateCallInfo(out callInfo); call to see whether your object was actually created? Sorry about skipping that part. I actually do check for that and I am a 100% sure that 'callInfo' has been created successfully. The thing is we have been using 'Reflection' to copy data to 'callInfo' till date. Now we plan to remove that as we are finding it a bit heavy. Please do let me know if more information is required.
-
Exception during assignment operation to a COM object - "Attempted to read or write protected memory"Hi. I have a piece of code at client side which calls a method of a COM server to create and return an object. While trying to assign values to data members of this object, I get the following exception - "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." I don't have much exposure to COM so am quite clueless as to how to solve this. Parts of the source are pasted below. interface _ICallInfo: IDispatch { [ propget, id(1), helpstring("Call ID") ] HRESULT CallId([out, retval] LONG *pVal); [ propput, id(1), helpstring("Call ID") ] HRESULT CallId([in] LONG nCallId); [ propget, id(2), helpstring("Barge Call") ] HRESULT CallType([out, retval] LONG *nCallType); [ propput, id(2), helpstring("Call Type") ] HRESULT CallType([in] LONG nCallType); }; dispinterface _IApplication { [ id(3), helpstring("method CreateCallInfo") ] HRESULT CreateCallInfo([out]_ICallInfo** piResult); }; public void foo() { CallInfo callInfo = null; CreateCallInfo(out callInfo); try { callInfo.CallId = this.CallId; callInfo.CallType = (int)this.CallType; } catch (Exception ex) { //Exception here } } Any help will be appreciated. Thanks.