Microsoft MVP성태의 닷넷 이야기
글쓴 사람
쿠리마 (coolfh at empal.com)
홈페이지
첨부 파일
[code.zip]    

안녕하세요. 고수님들께 도움을 받기 위해 질문 올립니다.

C# COM Server 코드는 아래와 같습니다.

using System;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.ComTypes;
using System.Windows.Forms;
using System.Reflection;

namespace MyInterop
{
    [Guid("3E0E2EB2-CC13-40fb-9346-34809CB2418C")]
    public interface IMyDotNetInterface
    {
        void ShowDialog(out tagUnitEx[] pArrUnit);
    }

    [ClassInterface(ClassInterfaceType.None)]
    [Guid("3A13EB34-3930-4e06-A3EB-10724CCC2F4B")]
    public class MyDotNetClass : IMyDotNetInterface
    {
        public MyDotNetClass() {}

        public void ShowDialog(out tagUnitEx[] pArrUnit)
        {
            tagUnitEx[] arrIndex;
            arrIndex = new tagUnitEx[3];

            arrIndex[0].strName = "coolfh";
            arrIndex[0].nIndex = 11;
            arrIndex[1].strName = "ssim";
            arrIndex[1].nIndex = 21;
            arrIndex[2].strName = "mist93";
            arrIndex[2].nIndex = 31;
            
            pArrUnit = arrIndex;
        }
    }

    public struct tagUnitEx
    {
        public string strName;
        public long nIndex;
    }
}

코드에서 처럼 tagUnitEx란 구조체에 string 및 long type의 맴버를 선언했고, Client쪽에서 pArrUnit을 요청하면 COM Server에서 배열의 크기(코드에서는 3)를 할당하고 값을 채워서 넘겨주는 방식입니다.

tagUnitEx 맴버로 long type만 선언했을 경우에는 잘 동작하는데요. string type 맴버를 추가했더니 에러가 발생합니다. (아래 코드 참조)

다음은 C++ Client 코드입니다.

m_pMyComp = IMyDotNetInterfacePtr(__uuidof(MyDotNetClass));

if(m_pMyComp)
{
            tagSAFEARRAY* psArrIndex = NULL;
        
            try
    {
        m_pMyComp->ShowDialog(&psArrIndex);
    }
    catch(_com_error &e)
    {
        CString strDescription = (LPCSTR)(e.Description());
        return TRUE;
    }

    tagUnitEx* pSaBuffer = NULL;
    ::SafeArrayAccessData(psArrIndex, reinterpret_cast<void HUGEP**>(&pSaBuffer));
    ::SafeArrayUnaccessData(psArrIndex);

             return TRUE;
}


위의 코드에서 m_pMyComp->ShowDialog(&psArrIndex); 여기서 에러가 발생하며, error description에는 "이전 형식이거나 잘못된 형식 라이브러리입니다." 라고 보여집니다.

구조체 맴버에 스트링이 없으면 잘 동작하는 코드인데요.

어떤 방법이던 간에 스트링을 포함한 구조체 배열을 C# 컴포넌트에서 C++ Client로 out(또는 ref)로 넘길 수만 있으면 됩니다.

코드를 첨부합니다.

고수님들의 조언 부탁드립니다.

좋은 하루 되세요.








[최초 등록일: ]
[최종 수정일: 9/29/2006]


비밀번호

댓글 작성자
 




... 61  62  63  64  65  66  67  68  [69]  70  71  72  73  74  75  ...
NoWriterDateCnt.TitleFile(s)
864장근배2/1/201017912    답변글 [답변]: AppPolId를 알 수 있는 방법이 있는지요?
858생초보1/26/201018343안녕하세요.. 파일 생성 처리 문제로 .... [2]
857꼭지1/22/201024822How to support Basic + Windows authentication mode in WCF(RESTful service) [4]파일 다운로드2
856질의자1/13/201022066vcredist_x86 배포 관련 여쭙습니다. [1]
855임동찬1/13/201020810이벤트 핸들러와 쓰레드의 관계 2 [4]파일 다운로드2
854임동찬1/12/201020741이벤트 핸들러와 쓰레드의 관계 [1]
853장근배1/12/201019853압축 프로그램,, [1]
852임동찬1/6/201017137base.OnStart(agrs) [1]
851한귀순1/6/201022613oracle & transaction 질문 [5]
850박한주12/31/200919741COM과 C#간 권한 문제에 관해 여쭤봅니다. [5]
848날쌘돌이12/22/200920715C#으로 개발하는 ActiveX 디버깅 문제 [5]
847최승문12/16/200919491winform에서 웹서비스를 이용할때, 객체가 전송안되는 문제... [2]
846이강구12/14/200918458ATL COM 제작 문의 [3]
845김재영12/9/200921272ClickOnce에서 WinForm을 배포시 변동되는 Args값을 넘길 수 있나요? [3]파일 다운로드1
843김재영12/2/200918847Hyper-V 사용에 대해여 질문이 있습니다. [2]
842한귀순12/1/200921643Attempted to read or write protected memory [2]
841장근배11/30/200923452첨부 파일 Download시 한글 Name [2]
844장근배12/3/200917920    답변글 [답변]: 첨부 파일 Download시 한글 Name파일 다운로드1
840박영민11/20/200917837웹 애플리케이션 질문입니다. [1]
837left...10/21/200918525아래 게시글 관련하여 추가 질문 [3]
836left...10/19/200919512ActiveX 상에서 암시적 dll 로드 [1]
832김우진10/15/200916010C# 에서 swa + security 구현 방법이 없을까요?
833정성태10/15/200920413    답변글 [답변]: C#에서 swa + security 구현 방법이 없을까요? [1]
834김우진10/15/200916287        답변글 예제 메시지 올려드릴께요. [2]파일 다운로드1
838이영우10/30/200916200            답변글 국세청 전자세금계선서에 관하여 문의드립니다.
831채승수10/13/200918213스마트 클라이언트 GAC 등록 문제 여쭤봅니다... [2]
... 61  62  63  64  65  66  67  68  [69]  70  71  72  73  74  75  ...