Showing posts with label windows. Show all posts
Showing posts with label windows. Show all posts

Sunday, July 12, 2015

Enable remote access to IIS Express for debugging in Visual Studio 2013

In Visual Studio 2013 you can run or debug a project just clicking to the play button. But by default the project is reachable just from localhost and not reachable from any computer, phone or other device in local network. This is annoying when you want to test and debug using a mobile device. Here I show how to configure the environment to enable remote access to a local website running from VS2013.

Saturday, December 27, 2014

IIS Express not reached from local network

You created a website, running in IIS Express, and you can't reach this website from outside your computer, i.e. from another device in your local network. This is because the service is not allowed to be called from outside, until you explicitely configure that.
Here is how to solve.

Monday, September 8, 2014

How to set up a windows proxy to redirect traffic using netsh

Suppose you want to expose a service running at a specified address/port, to another address/port, configuring a windows machine for acting as a proxy server.
For instance, computer A exposes a service available only to computer B, computer C wants to consume the same service. It doesn't reach computer C but reaches computer B. You can create a windows proxy server to redirect the traffic from C to B.
(c) Copyright 2020 - MyTroubleshooting.com