How to redirect external web request to localhost's testing server
- by Ivan Monteiro
Some web services calls my web application(www.myapplication.com/external_update_handler).
I need to test those requests locally, so I'd like to know your opinions about how can I "redirect" those requests to my localhost dev machine(that is outside of my web aplication domain) so I can debug.
Probably it's needed a service/server to get those external requests and a desktop application that sends it to localhost:5555/external_update_handler, but I have no idea where to start and simpler options.