I have a web service where i do different things according to where ones IP is from. I have a simple test application where i open a WebClient and makes it call the web service. I would like to be able to change the IP on the test application so that it “seems” that it comes from different countries (this will help me test goals in google analytics too) – is this possible – to change/simulate that my application is located in another country (France, Germany, Belgium, England, US, etc…)
Share
The other answers more accurately provide a solution, but you could always fake it. Utilise your own small private network and provide a facade to handle IP locationing for DEBUG vs. PRODUCTION mode. All of this of course wouldn’t trick Google 😉 but it would help solidify your application.
Sorry for possibly being redundant.