Socket binding failed with error code 10048

Hi

I try to load a for the Colibri board modified web server example (removed all references to the GPIO library, otherwise it stays the same), it now builds and deploys with VS2013. But then when I try to execute the program it fails with:

Socket binding failed with error code 10048

OS Windows CE 8… If somebody has any ideas then I would be glad to hear them.
Thanks
Andreas

The image already contains an HTTP server (the default one provided by windows CE) that runs on port 80. Your application tries to bind to the same port and this fails.
If you need to implement an HTML-based interface or a REST API I suggest to look into the ISAPI extensions:

rather than implementing the HTTP protocol in your own application.
That approach is ok if you have a very limited set of request you want to handle directly.