.NET에서 CDOEXM.dll을 참조하지 못해 메일박스 관련 코드를 만들 수 없던 문제가 있었습니다. 문제는 다음과 같은 방법으로 해결 가능합니다.
1.
Copy CDOEX.DLL off your exchange server to the workstation that has exchange management and .Net Development on it "C:\Program Files\Common Files\Microsoft Shared\CDO\"
2.
Register the DLL
Command Line: REGSVR32 "C:\Program Files\Common Files\Microsoft Shared\CDO\CDOEX.DLL"
Add reference in .Net for CDOEX.DLL
3.
Now add reference for CDOEXM.DLL
You may need to remove all references first and then re-add them in this order
"C:\Program Files\Exchsrvr\bin\CDO.DLL"
"C:\Program Files\Common Files\Microsoft Shared\CDO\CDOEX.DLL"
"C:\Program Files\Exchsrvr\bin\CDOEXM.DLL"
Or Clear the "Interop.*.dll" files out of the following folders
"C:\Documents and Settings\UserName\My Documents\Visual Studio Projects\ProjectName\obj"
and
"C:\Documents and Settings\UserName\My Documents\Visual Studio Projects\ProjectName\bin"
And then Remove and re-add the CDO References.
I suspect it works for a few of you that have .Net Dev on a full exchange server because CDOEX.DLL exists on that machine
'Tech: > .NET·C#' 카테고리의 다른 글
Visual Studio 2005의 400가지 차이점 (0) | 2008.06.26 |
---|---|
1.1버전과 2.0버전이 동시에 깔린 경우 Smart Client 실행 문제 (0) | 2008.06.26 |
PleaseWaitButton 컨트롤 (0) | 2008.06.26 |
MSN 스타일의 팝업창을 웹 브라우저에서... (0) | 2008.06.26 |
.NET CF에서 지원하지 않는 XML 관련 기능들 (0) | 2008.06.26 |