Tagged Questions

2
votes
1answer
30 views

Find/Copy All Files in a directory via RAPI on WinCE

I'd like to copy all files in a directory from my windows mobile device to PC. There's no API for that. Also there is no API to list all files in a directory of embedded device. I think I can list ...
2
votes
3answers
294 views

Archiving text messages (sms)

I want to archive the text messages on my WM phone to my PC, preferably as XML. Can I access them from a PC application, e.g. through RAPI? I have no experience in WM development, just PC, and then ...
1
vote
1answer
355 views

how to remotely install certificate on Windows CE using RAPI and ActiveSync

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 ...
1
vote
1answer
739 views

Rapi.dll / OpenNETCF slow issues on Visual Studio

I am referencing OpenNETCF.Desktop.Communication (Rapi.dll) in my project and have the following problem: When I for ex. "private RAPI mobjRapi = new RAPI();"... it takes about 5 minutes to execute ...
1
vote
1answer
386 views

CeRapiInit or CeRapiInitEx?

CeRapiInit() does not return until a device is connected and initialization is complete (synchronous). CeRapiInitEx() does, but requires a callback event handler (asynchronous). All I want is a ...
1
vote
1answer
698 views

Debugging DLL Called With CeRapiInvoke

I'm trying to debug into a C dll that is invoked on a Windows Mobile device using CeRapiInvoke() (Technically RAPI.Invoke() from OpenNETCF) from a Windows box. I'm very familiar with attaching to a ...
1
vote
1answer
411 views

IRAPIStream COM Interface in .NET

I'm trying to use the OpenNETCF RAPI class to interact with a windows mobile device using the RAPI.Invoke() method. According to the following article: ...
0
votes
1answer
155 views

CeGetSystemInfo doesn't fill the struct passed by reference

I'm trying to get information about a Windows Mobile device from a desktop application (written in C#). I searched the MSDN and found that the function I need is in rapi.dll: VOID CeGetSystemInfo ...
0
votes
1answer
412 views

Connecting multiple devices through RAPI2

The Microsoft RAPI2 interface is designed with the ability to talk to multiple devices. But, ActiveSync 4.5.0 allows only allows one device at a time to connect and only allows it over a USB ...
0
votes
3answers
1k views

Accessing a SQL Server CE database on a Windows Mobile 6 device

I have a mobile app that writes to a SQL Server CE database on the device. I want to write a desktop application that can read this data and export it in CSV format. I have been looking at RAPI ...