Jump to content

Write a Service in .net


Guest RobinV

Recommended Posts

Hello I am trying to write a Service Kind of program.

This program has NO-GUI and reads Config Files ( .mist files )

I was thinking about how to do this. And I came up with the old rundll32.exe that I noticed was also on the Smartphones.

So I executed rundll32.exe like this: "\WINDOWS\rundll32.exe \mist.dll,run"

But I noticed this didn't work.

I really need it to work without a GUI.. Does anyone know how to do this?

Thanks.

Robin

Link to comment
Share on other sites

  • 8 months later...
  • 1 month later...
Guest KP Admiral

There are services for Windows Mobile just like services for normal Windows. They run within context of the system under services.exe, as such care must be taken as to the stability of the app created.

Unfortunately you cannot create a "real" service using .NETCF as there are no classes for it...yet I suppose. Windows Mobile is limited as to how many background applications can be run, so running it in the background as a console app with no GUI will suck up one of these spots, and don't be surprised if your "service" becomes terminated by the OS in order to make room for a recently run app.

A quick web search will yield a project on Microsofts own CodePlex that emulates service behaviours with .netcf managed classes. Hopefully this can suffice for what you are creating.

http://www.codeplex.com/managedserviceswm

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.