I’m interessted in writing an application that is running on windows mobile. I’ve allready a winform application that is hosting an WCF service. I wan’t to port the application to windows mobile (6.0) and up. MSDN is hosting an article about WCF on Compact Framework, but it says hosting is not an option yet.
Do i have to write it all by my self over a TCP Listener?
Bye Marco
Basically, yes; you’d need to do a lot of this yourself using
TcpListener. EvenHttpListenerisn’t in Compact Framework, which is a shame (otherwise it would be easy).There may be pre-canned solutions available, however.
For interest, I have an open-source framework that is nearly there – it has all the serialization / dispatch / etc code, but I haven’t yet added raw
TcpListenersupport, which is a shame. But maybe soon.