如何使用 RAPI 和 ActiveSync 在 Windows CE 上远程安装证书
我正在创建使用 Active Sync 连接到 WindowsCE 设备的 .NET 应用程序。我正在使用 OpenNETCF.Desktop.Communication.dll 库通过 RAPI 进行连接,但我没有找到任何在移动设备上安装证书的方法。
I'm creating .NET application which connects to WindowsCE device using Active Sync. I'm using OpenNETCF.Desktop.Communication.dll library to connect via RAPI but I didn't find any way to install the certificate on the mobile device.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RAPI 没有安装证书的固有规定。但是,它确实能够使用您自己的自定义 RAPI 方法 您可以调用。您可以推送证书并使用自定义 RAPI DLL(您也推送该证书)来进行安装。
您还可以滚动证书信息放入 CSP 中,然后将其放入您部署和执行的 CAB 中。这样做的优点是您不需要自定义 RAPI DLL。
RAPI has no inherent previsions for installing certificates. it does, however, have the ability to use your own custom RAPI methods that you can Invoke. You could push the cert down and use a custom RAPI DLL (that you also push down) to do the install.
You could also roll the cert info into a CSP and then put that in a CAB that you deploy and execute. The advantage there is that you don't need a custom RAPI DLL.