Questions tagged [rapi]

RAPI (Remote API) is an official library that enables applications running on a Windows-based desktop to perform actions on a remote Windows Mobile device.

See also

41 questions
5
votes
1 answer

Registering RAPI program with ActiveSync?

I'm trying to write a program which will run when a Windows Mobile device is connected, according to Microsofts documentation to do that we have to: If you want your RAPI application to automatically execute when a Windows Mobile device connects…
meds
  • 21,699
  • 37
  • 163
  • 314
4
votes
2 answers

Copy Files with Windows Mobile Device/Windows 7

I have written a very simple Inventory Tracking application for a Motorola MC3190 Mobile Device. I need to transfer data to and from the device and a Windows 7 PC. I have scoured the internet for options on how to do this but so far nothing has…
Leonard M.
  • 179
  • 3
  • 17
2
votes
1 answer

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 all files in a directory via (RAPI) CeFindFirstFile…
user1164244
  • 31
  • 1
  • 2
2
votes
3 answers

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 mainly Delphi. Please no links to commercial…
stevenvh
  • 2,971
  • 9
  • 41
  • 54
2
votes
1 answer

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: http://blog.opennetcf.com/ncowburn/2007/07/27/HOWTORetrieveTheDeviceIDFromTheDesktop.aspx You can…
Adam Haile
  • 30,705
  • 58
  • 191
  • 286
2
votes
1 answer

Killing a WinCE device process from a desktop app

I'm copying files from the desktop to a WinCE device (via the RAPI API), and if the main WinCE program is running, I need to kill it, update and restart it again. So far, I manage to copy the files and start the main program with no problem, but I…
PabloG
  • 25,761
  • 10
  • 46
  • 59
2
votes
1 answer

Reading the content of a PDA directory while sync with ActiveSync

I have a project in which I would need to copy files found within a PDA (in my case, it's a MC3000 if that makes any difference). I have ActiveSync installed and it create the syncronisation folder for me just fine. However, I would like to be able…
David Brunelle
  • 6,528
  • 11
  • 64
  • 104
1
vote
1 answer

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 "connecting to device" dialog with a cancel button.…
cdonner
  • 37,019
  • 22
  • 105
  • 153
1
vote
1 answer

C++/MFC How to copy multiple files from PC to WinCE (Mobile Device)?

I am trying to copy entire directory including all the files and subdirectories inside from PC into WinCE (Mobile Device). I am aware of the RAPI.DLL to control files within WinCE, but I doesn't seem to work between PC and WinCE. Neither the Win32…
DynamicScope
  • 695
  • 9
  • 26
1
vote
0 answers

C# Trouble with event handlers on dieing threads

First of all my Main is STAThread and i am not able to change this without facing problems with the rest of my code. So, I am currently using Rapi2 To pull and push files between my Pda and Computer. Now since there is quite a bit of number…
Black Lotus
  • 2,377
  • 3
  • 14
  • 18
1
vote
1 answer

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 process that is already running to debug a loaded…
Adam Haile
  • 30,705
  • 58
  • 191
  • 286
1
vote
1 answer

Pushing DataBase to PDA results in empty database with RAPI2

I have a WorkAboutPro 4 and on this i run an application. This application uses an SQLlite database. Now i also run a computer program along side it, in here i use RAPI2 to work with my handheld device. As soon i connect my device a function…
Black Lotus
  • 2,377
  • 3
  • 14
  • 18
1
vote
1 answer

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 certificate on the mobile device.
kmalmur
  • 2,809
  • 3
  • 29
  • 37
1
vote
3 answers

RAPI copy file using OpenNETCF.Desktop.Communication.dll

I’m currently using the OpenNETCF.Desktop.Communication.dll to copy files from my desktop to a CE device, but I keep getting an error: ‘Could not create remote file’ My development environment is VS2005 (VB.NET) My…
Triss
  • 847
  • 2
  • 8
  • 11
1
vote
1 answer

Only 14 RAPI events are available on Xeon Phi. Why so few?

I'm trying to use RAPI to monitor the performance of my Xeon Phi code. I just compiled and installed a native version of RAPI follwoing the documentation. And the following list is what I get when I execute "rapi_avail" on my Xeon Phi which shall…
thierry
  • 217
  • 2
  • 12
1
2 3