activesync

Why is WMDC/ActiveSync so flaky?

和自甴很熟 提交于 2019-12-01 20:44:44
I'm developing a Windows Mobile app using the .NET Compact Framework 3.5 and VS2008, and for debugging using the Device Emulator V3, on Win7, and seem to have constant problems with Windows Mobile Device Centre (6.1) connecting. Using the Emulator Manager (9.0.21022.8) I cradle the device using DMA in WMDC. The problem is it's so flaky at actually connecting that it's becoming a pain. I find that when I turn my computer on, before I can get it to connect I have to open up WMDC, disable Connect over DMA, close WMDC down, reopen it again, and then it might cradle. Often I have to do this twice

How do I implement activesync protocol in iphone app?

微笑、不失礼 提交于 2019-11-30 16:00:19
问题 How do I implement activesync protocol in iphone app? Any advice, any docs and tutorials are well come. I have read the Exchange ActiveSync and iOS 4 Devices from apple. Is there any real docs for this? 回答1: It is hard, but not impossible to write an app which communicates via exchange active sync. The link to the Exchange Server Protocols in Jons answer contains a document named MS-ASWBXML. You have to write an encoder for wbxml on your own and the document describes clearly the needs.

How do I implement activesync protocol in iphone app?

可紊 提交于 2019-11-30 15:46:05
How do I implement activesync protocol in iphone app? Any advice, any docs and tutorials are well come. I have read the Exchange ActiveSync and iOS 4 Devices from apple. Is there any real docs for this? It is hard, but not impossible to write an app which communicates via exchange active sync. The link to the Exchange Server Protocols in Jons answer contains a document named MS-ASWBXML. You have to write an encoder for wbxml on your own and the document describes clearly the needs. Additionaly I recommend strongly this document: http://www.w3.org/TR/wbxml/ If the low level is working, you have

How to get Windows Mobile Device Center To Connect to the Emulator

大城市里の小女人 提交于 2019-11-30 06:44:07
I have recently installed Windows 7 and I have come to a conclusion. While Active Sync was old and did not work great, it did work. I could connect to my devices and emulators after the proper rituals and incantations. The other conclusion I have come to is that Windows Mobile Device Center is worse that Active Sync was. I cannot get it to reliably connect to my emulator (yes, I have set the connection type to DMA) despite how many times I cradle and uncradle. (The emulator connects to the Visual Studio Debugger just fine though.) With active sync I had to manually press the connect button in

Get ip address of host pc from windows mobile when connected via ActiveSync

為{幸葍}努か 提交于 2019-11-29 07:32:44
I have a .Net Compact app running on Windows Mobile, and I want to be able to connect to a webservice running on the 'host' machine (i.e. the desktop the PDA is plugged into) when connected via ActiveSync, but I don't know the ip address of the host. How can I find the ip of the desktop PC progromatically on the PDA? I've found a KB article How To Retrieve the IP Address of the Remote PPP Peer , which uses the host "PPP_Peer". So I tried: Dns.GetHostEntry("PPP_Peer").AddressList[0] And that does give me what I'm looking for (169.254.2.2 on the PC I'm using at the moment). Getting the address

Get ip address of host pc from windows mobile when connected via ActiveSync

一曲冷凌霜 提交于 2019-11-28 01:08:08
问题 I have a .Net Compact app running on Windows Mobile, and I want to be able to connect to a webservice running on the 'host' machine (i.e. the desktop the PDA is plugged into) when connected via ActiveSync, but I don't know the ip address of the host. How can I find the ip of the desktop PC progromatically on the PDA? 回答1: I've found a KB article How To Retrieve the IP Address of the Remote PPP Peer, which uses the host "PPP_Peer". So I tried: Dns.GetHostEntry("PPP_Peer").AddressList[0] And