I am building a Push notification system, for Android.
I have an ASP.NET web application, hosted on a commercial hosting provider. I have one page that almost always is in an infinite loop waiting for an event to occur.
One host (Android device) loads this page, and remains connected on a persistent connection, till that event occurs. When it occurs, it serves it, and goes back to waiting for it to occur again.
Now, my question is, Is this page being in a perpetual loop, and always connected to a client going to affect the performance of the rest of the web application?
(I think it should not, because servers handle loads of client connections anyway. Am I correct in assuming this?)
Should I deploy this on a different application pool on the server? Also, is there a better way of doing Push notifications, using persistent connections?
Thanks in advance...