Microsoft MVP성태의 닷넷 이야기
글쓴 사람
light
홈페이지
첨부 파일
 
부모글 보이기/감추기

현재 생성된 부분의 Thread 와 사용하는 스레드가 틀리므로, 어드레스 값은 같고 있지만, 실제적으로 호출이 안됨...

그러므로 , 처음에 생성한 com object을 global 쪽에 놓고 사용함.    


//----------------------------------------------------------------------------------------
#ifndef _RCCOMMARSHAL_H_
#define _RCCOMMARSHAL_H_
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------
#include <vector>
using namespace std;
#include <windows.h>
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------
class CRCComMarshal
{
    typedef struct
    {        
        IID m_iid;
        DWORD m_dwCookie;
    }SIIDCOOKIE;

public:
    CRCComMarshal();
    virtual ~CRCComMarshal();
    static CRCComMarshal * Instance();
    bool Register(IUnknown *pUnk, REFIID riid);
    bool UnRegister(REFIID riid);
    bool GetInterfacePointer(REFIID riid, void **ppInterface, int nInd=1);
protected:
private:
    bool Init();
    bool CheckIfAlreadyRegistered(REFIID riid);

    LPGLOBALINTERFACETABLE m_pGIT;
    typedef vector<SIIDCOOKIE*> COOKIEVEC;
    COOKIEVEC m_vecCookies;
    CRITICAL_SECTION m_CS;
};
//----------------------------------------------------------------------------------------
#endif //_RCCOMMARSHAL_H_
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------



//----------------------------------------------------------------------------------------
// Contructor
/////////////////
CRCComMarshal::CRCComMarshal()
{
    m_pGIT = NULL;
    InitializeCriticalSection(&m_CS);
    Init();
}
//----------------------------------------------------------------------------------------

///////////////////////////////////////////////////////////////
CRCComMarshal::~CRCComMarshal()
{
    int nSize = m_vecCookies.size();
    if (nSize > 0)
    {
        SIIDCOOKIE *psiid = NULL;
        HRESULT hr = S_OK;
        for (int nIndex=0 ; nIndex<nSize ; nIndex++)
        {
            psiid = NULL;
            psiid = m_vecCookies[nIndex];
            if (NULL != psiid)
            {
                if (NULL != psiid)
                {
                    hr = S_OK;
                    hr = m_pGIT->RevokeInterfaceFromGlobal(psiid->m_dwCookie);
                }
                delete psiid;
            }
        }

        m_vecCookies.clear();
    }
}
//----------------------------------------------------------------------------------------

////////////////////////////////////////////////////////////////////
bool CRCComMarshal::Init()
{
    bool bRet = true;
    
    HRESULT hr = CoCreateInstance(CLSID_StdGlobalInterfaceTable, NULL, CLSCTX_SERVER,
        IID_IGlobalInterfaceTable, (void**)&m_pGIT);

    if (FAILED(hr))
        bRet = false;

    return bRet;
}


////////////////////////////////////////////////////////////////////
//----------------------------------------------------------------------------------------
bool CRCComMarshal::Register(IUnknown *pUnk, REFIID riid)
{
    CRCCriticalSectionLock Lock(&m_CS);

    bool bRet = true;
    HRESULT hr = S_OK;
    DWORD dwCookie=0;


    //////////////////////////////////////////
//    if (true == CheckIfAlreadyRegistered(riid))
//    {
//        return true;
//    }
    

    ///////////////////////////////////////////////////////////////
    hr = m_pGIT->RegisterInterfaceInGlobal(pUnk, riid, &dwCookie);

    // Exit if register not successfull
    //////////////////////////////////////
    if ((FAILED(hr)) || (0 == dwCookie))
    {
        bRet = false;
        return bRet;
    }

    // Insert the cookie into the vector
    ////////////////////////////////////
    SIIDCOOKIE *psiid = new SIIDCOOKIE;
    psiid->m_iid = riid;
    psiid->m_dwCookie = dwCookie;
    m_vecCookies.push_back(psiid);


    return bRet;
}

bool CRCComMarshal::GetInterfacePointer(REFIID riid, void **ppInterface, int nInd)
{
    CRCCriticalSectionLock Lock(&m_CS);

    bool bRet = true;
    HRESULT hr = S_OK;
    DWORD dwCookie=0;

    if (NULL == ppInterface)
    {
        bRet = false;
        return bRet;
    }

    *ppInterface = NULL;

    // Get the interface's Cookie from the vector
    /////////////////////////////////////////////
    int nSize = m_vecCookies.size();
    SIIDCOOKIE *psiid = NULL;
    bool bFound = false;
    int nCount=nInd;
    if (nCount < 1)
        nCount = 1;
    for (int nIndex=0 ; nIndex<nSize ; nIndex++)
    {
        psiid = NULL;
        psiid = m_vecCookies[nIndex];
        if (NULL != psiid)
        {
            if (riid == psiid->m_iid)
            {
                nCount--;
                if (0 == nCount)
                {
                    bFound = true;
                    dwCookie = psiid->m_dwCookie;
                    break;
                }
            }
        }

    }

    if (true != bFound)
    {
        return false;
    }

    // Retrieve the interface pointer from Glabal interface table
    ///////////////////////////////////////////////////////////////
    hr = m_pGIT->GetInterfaceFromGlobal(dwCookie, riid, ppInterface);
    if ((FAILED(hr)) || (NULL == *ppInterface))
    {
        bRet = false;
        return bRet;
    }

    return bRet;
}

/////////////////////////////////////////////////////////////////////
bool CRCComMarshal::CheckIfAlreadyRegistered(REFIID riid)
{
    int nSize = m_vecCookies.size();
    bool bFound = false;
    SIIDCOOKIE *psiid = NULL;
    for (int nIndex=0 ; nIndex<nSize ; nIndex++)
    {
        psiid = NULL;
        psiid = m_vecCookies[nIndex];
        if (NULL != psiid)
        {
            if (riid == psiid->m_iid)
            {
                bFound = true;
                break;
            }
        }

    }

    return bFound;
}
//----------------------------------------------------------------------------------------

////////////////////////////////////////////////////////////////////
bool CRCComMarshal::UnRegister(REFIID riid)
{
    CRCCriticalSectionLock Lock(&m_CS);

    int nSize = m_vecCookies.size();
    bool bFound = false;
    SIIDCOOKIE *psiid = NULL;
    for (int nIndex=0 ; nIndex<nSize ; nIndex++)
    {
        psiid = NULL;
        psiid = m_vecCookies[nIndex];
        if (NULL != psiid)
        {
            if (riid == psiid->m_iid)
            {
                bFound = true;
                break;
            }
        }
    }

    HRESULT hr = S_OK;
    if ((NULL != psiid) && (true == bFound))
    {
        hr = m_pGIT->RevokeInterfaceFromGlobal(psiid->m_dwCookie);
        m_vecCookies.erase(m_vecCookies.begin() + nIndex);
        if (FAILED(hr))
        {
            return false;
        }
    }

    return true;
}
저는 이렇게 사용했습니다...

전에 SSL질문을 했는데, 잘알려줘서, 제가 아는 범위로 답변했습니다.
그댄 아직 해결 못했어요...ㅠㅠ.환경설정을 잘 못하겠네요








[최초 등록일: ]
[최종 수정일: 10/30/2006]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 181  182  183  184  185  186  187  188  189  190  191  192  193  [194]  195  ...
NoWriterDateCnt.TitleFile(s)
86정성태1/23/200522953.NET Framework: 21. Code Snippet - Enum과 관련된 다양한 형변환 [1]
85정성태1/23/200521142스크립트: 4. Windows 2003에서 BHO(Browser Helper Objects) 동작 안하는 현상 [1]
83정성태1/18/200526269.NET Framework: 20. System.AccessViolationException 예외가 발생한 한 예.
82정성태1/3/200519746VS.NET IDE: 17. Windows 운영 - 특정 사용자 또는 그룹에 대해서 파일 공유 접근 금지
79정성태1/20/200527680기타: 8. DELL Latitude D800 노트북 컴퓨터의 PC Beep 소음(!) 문제.
78정성태12/27/200420050VS.NET IDE: 16. MS 제품 관련 사용되는 TCP/IP 포트 열거파일 다운로드1
77정성태12/27/200420315VS.NET IDE: 15. Virtual CD-ROM Control Panel - ISO 이미지를 CD-ROM 드라이브처럼 접근하게 해주는 EXE 프로그램 [1]파일 다운로드1
76정성태12/27/200421358VS.NET IDE: 14. VPN 접속시 IP를 고정적으로 할당받는 방법 [1]
75정성태12/27/200417587VS.NET IDE: 13. VS.NET 2005 Beta 1 - Portfolio Explorer 에 등록된 Team Server 항목 삭제 방법
84정성태1/19/200518408    답변글 VS.NET IDE: 13.1. VS.NET 2005 Beta 1 : Team Server 에 등록된 포트폴리오 프로젝트 삭제 방법
74정성태12/26/200419009VS.NET IDE: 12. [시나리오] VS.NET 2005 Team Foundation Server을 Virtual Server에 설치 [1]
80정성태12/31/200418343    답변글 VS.NET IDE: 12.1. Client Tier, 즉 VS.NET 2005가 설치된 컴퓨터도 ActiveDirectory에 참여를 해야 합니다.
81정성태12/31/200420230    답변글 VS.NET IDE: 12.2. Tier 컴퓨터를 모두 영문으로 재구성
109정성태3/4/200515491    답변글 VS.NET IDE: 12.3. [보완] MS 공식 아티클 - Installing the December CTP Release of Visual Studio Team System
73정성태11/14/200517323.NET Framework: 19. VS.NET 2005 Team Foundation Server 설치오류 - 26204 예외
72정성태12/26/200418764.NET Framework: 18. .NET Framework 2.0 Beta 설치 후에 Windows SharePoint Service 오류 [1]
136정성태3/31/200518634    답변글 .NET Framework: 18.1. Windows Sharepoint Services 를 설치한 이후 ASP.NET 오류 문제
71정성태12/26/200416984VS.NET IDE: 11. SQL Server 2005 Beta 2 를 네트워크 드라이브로부터 설치시 오류
70정성태12/26/200419813VS.NET IDE: 10. WSS 설치 후 localhost 접근 보안 오류
69정성태12/5/200416899VS.NET IDE: 9. 다른 컴퓨터(방화벽 설치)에 설치된 SQL Server에 통합 인증을 할 때 필요한 포트
68정성태10/31/200421868.NET Framework: 17. Win32_NTLogEvent를 c#에서 wmi 쿼리할 때..에러..
67정성태10/22/200419037COM 개체 관련: 12. Microsoft.XMLHTTP 개체에서 Microsoft.XMLDOM 개체를 전송할 때 charset 지정 문제?
66정성태10/16/200420209.NET Framework: 16. [닷넷 리모팅] 프록시가 죽은 것을 원격 개체가 알 수 있는 방법은?
65정성태10/16/200419176VS.NET IDE: 8. Windows 가상 메모리 사용 해제
64정성태10/3/200422867.NET Framework: 15. ASP.NET에서 .NET COM+ 개체 등록 시 "Local System"이어야 하는 이유.
63정성태10/3/200422986.NET Framework: 14. Response.Cookies.Clear는 기존 설정된 Cookie 헤더를 삭제하는 것이 아닙니다.
... 181  182  183  184  185  186  187  188  189  190  191  192  193  [194]  195  ...