Managed HttpListener vs C++ Network Lib - Requires admin rights?
Posted
by
Max
on Stack Overflow
See other posts from Stack Overflow
or by Max
Published on 2011-01-12T11:43:19Z
Indexed on
2011/01/12
18:54 UTC
Read the original article
Hit count: 195
So, I have noticed that starting an HttpListener is considered impolite according to Win 7. I cannot do so without administrative rights without adding myself to some URL reservation list. In theory, this is alright, but I'd like to make my program as little invasive as possible.
My main other alternative is something like the c++ Network Library, which utilizes boost. This is probably not as simple as a HttpListener though. Will this circumvent the admin rights requirement for listening to some HTTP url?
How does windows handle http listening? Right now I'm just listening to http://+:xxxx/url
, I guess it's fully possible to just create a Socket listening at port xxxx and provide my own/third party http implementation?
© Stack Overflow or respective owner