exchange-server,activesync,wbxml
In my case i was passing different DeviceId for foldersync & sync request. It was my mistake.
registry,windows-mobile-6,activesync,registrykey
The GuestOnly registry setting is for supressing the Setup Partnership Wizard that will come up for newly connected Windows CE based devices. If set, there will be no PartnerShip Wizard, if not set, the Partnership Wizard comes up. This setting is not to enable/disable any syncing options in ActiveSync/WMDC. If...
usb,motorola,activesync,handheld,handhelddevice
For me, anyway, this is how the settings need to look: Note that the "Allow data connections on device when connected to PC" tickbox is not even visible...?!?...
I ended up by using third party c++ library to covert data from/to wbxml.
I finally solved the issue. It was due to in mime data. we need to add \n(new line) for each parameter we are passing.
c#,powershell,exchange-server-2007,activesync
I don't have much experience with C# and PowerShell or the Exchange PS cmdlets for that matter, so I might be wrong here. AFAIK your sample would equal: Set-CASMailbox -Identity 'User1' -ActiveSyncAllowedDeviceIDs "BLOCKED" | Set-CASMailbox -Identity 'User1' -ActiveSyncEnabled $false You're not using the object (if any) that the first cmdlet...
Okay finally i found the answer. I used cocoa pods and libxml libraries as mentioned in http://cocoapods.org/?q=libwbxml
Actually, when you call Sync, you get a new Sync key. So the next Sync should use the Sync key returned by the previous Sync. If you re-use the same Sync key over again, you should get the same messages back every time.
ios,iphone,microsoft,activesync
Finally i used library from https://github.com/jasenhuang/ASWBXml-c which solve my problem. :)