如何調(diào)試COM DLL
在“解決方案資源管理器”中,右擊組件項(xiàng)目并單擊快捷菜單上的“屬性”。<項(xiàng)目名稱>“屬性頁”對(duì)話框中,打開“配置屬性”文件夾并選定“調(diào)試”類別。在“命令”框中,鍵入如下內(nèi)容:dllhost.exe 在“命令參數(shù)”框中,鍵入?yún)?shù) /ProcessID,繼之以應(yīng)用程序 ID(library XXX)上的GUID。例如:/ProcessID:{3D14228C-FBE1-11D0-995D-0C04FD919C1} 單擊“確定”。這樣設(shè)置后就可以調(diào)試了。 如果客戶端是C#,再設(shè)置客戶端項(xiàng)目調(diào)試選項(xiàng)中可以調(diào)試非托管代碼。
總是出現(xiàn)"char * __stdcall _com_util::ConvertBSTRToString的錯(cuò)誤
只要在某個(gè)文件中添加對(duì)comdef.h的包含就可以,這個(gè)頭文件會(huì)鏈接庫,僅包含comutil.h并不會(huì)鏈接相應(yīng)的庫。
7-27日:
C# .net framework4.0 傳遞SAFEARRAY的問題。
I am able to call a COM interface method using SAFEARRAY(BSTR) as input. If I define instead a simple (containing only some BSTR-s fields) STRUCT to pass into the COM I get "[System.ArgumentException] = {"The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))"
The call to my COM server is not made because as it seems the arguments from client does not match the expected arguments on server: E_INVALIDARG
Here is my declaration in IDL:
typedef enum UserEntityType
{
User,
Group,
IPAddress
} UserEntityType;
[
uuid(4786F77E-BA5F-4806-B224-12AA8601A5B1)
]
typedef struct UserEntity
{
UserEntityType EntityType;
BSTR Value;
} UserEntity;
[id(9)] HRESULT SetUsers([in] SAFEARRAY(UserEntity) input);
The exception is thrown at run-time when a C# 4 client calls SetUsers().
solution:The problem was in the C# client that was using the exe COM server where
SetUsers([in] SAFEARRAY(UserEntity) input)
was defined. In order to fix this (at least for .NET 4.0) one has to change the following property of the imported COM server: Embed Interop Types = False