Window Service using c#

  • Thread starter Thread starter Berto
  • Start date Start date
B

Berto

Hi everyone,
how can I create a window service using c# for Windows Mobile 6 Stadard? I
want to create a service that starts when the system starts.
ideas?
Thx
Berto
 
You can't create a true "service" in managed code because hosting doesn't
exist in the CF. You can create an app that you put a shortcut to in
Startup, or you can create a service in native code that launches your
managed app.
 
Try using Sockets which listen's on the desired network adapter when your
Mobile Device starts up. This might be a GPRS/3G connection or Wi-Fi etc.
 
Back
Top