2014-04-21 3 views
1

Windows Mobile 응용 프로그램의 인증서를받는 방법을 아는 사람이 있습니까? Windows Mobile 기기에 응용 프로그램을 설치하기 위해 테스트 인증서를 사용하고 있지만 응용 프로그램을 게시하려고하므로 응용 프로그램 인증 프로그램 인 M2M 프로그램이 인증서를 얻지 못합니다. 더 이상 존재하지 않습니다. 아이디어 나 제안이 있으십니까?Windows Mobile에서 스마트 장치 응용 프로그램의 인증서를 얻으려면 어떻게합니까?

답변

0

Verisign에 전화를 걸어 PFX를 구입할 수 있다고 가정합니다. 하지만, 자기가 인증서에 서명해도 괜찮다면, 스스로 인증서를 만들 수 있습니다.

은 다음을 참조하십시오

  1. http://www.codeproject.com/Articles/12460/Sign-Code
  2. http://blogs.msdn.com/b/windowsmobile/archive/2006/01/28/making-a-root-cert-cab-file.aspx

그런 다음,이 같은 프로젝트의 빌드 후 단계 설정 : 이제

"$(SolutionDir)Installer\signtool.EXE" sign /f "$(SolutionDir)certificates\my_company.pfx" /t http://timestamp.verisign.com/scripts/timstamp.dll "$(ProjectDir)obj\$(ConfigurationName)\*.exe" 
"$(SolutionDir)Installer\cabwiz.exe" "$(SolutionDir)Installer\my_company.$(ConfigurationName).inf" /prexml "$(SolutionDir)certificates\my_company.prexml.xml" /cpu arm 

당신이있을 것이다 자기 서명 인증서와 자기 서명 된 전자 메일을 설치할 cab 파일 설치 프로그램 xecutable (s).

관련 문제