Hi, Cydrick.
Thank you much for the positive feedback. We're really happy when our little web server helps others.
Regarding netstats, UWS does not show up on the list because instead of opening TCP sockets in the process, it uses kernel-level http.sys driver - just like IIS 7.x. Http.sys is handling socket connections, which prevents all processes using http.sys from showing up on netstats. Using http.sys allows UWS share ports with other processes - you know how it's possible to share an http port between web applications as long as they specify different hostnames? UWS can do that just like IIS 7. In fact, same port can be shared by both IIS 7 and UWS. The problem begins when sockets are opened in exclusive modes in-process, which most programs do. Then such ports cannot be shared. UWS does not make any assumptions regarding port 80 being open and does not require it. UWS uses only port 7756 for its purposes.
When applications are registered, UWS
highly recommends doing so in a way that does not assume any specific port the application should be put on. UWS provides redirector app on port 7756, which will redirect to your registered application by application ID, using the port application was registered on.
Please let us know if this information was helpful.
Best regards,
UltiDev Team.
Please donate at
http://www.ultidev.com/products/Donate.aspx to help us improve our products.