I have a web application built on ASP.NET MVC framework which requires a service payment module. For the given service payment provider, I have to create a module that listens to a specific port (different from 80) at a specific url. What is the best way to achieve this? Should I create a separate Http Server application which would listen to those connections? Is there a way to create an HttpHandler in the context of the main web application that would process the request for a given port?
Share
I know of two options do this:
Requestobject to determine the URLPersonally I prefer the first choice.