stimms
stimms

Reputation: 44094

Opening ASP.net development server to world

I'm using the built in web server in Visual Studio to test some pags but I wanted to be able to connect to it from other machines to test out browsers on different platforms. I was wondering if it was possible to configure that server to listen to an external interface or if I have to throw this over to IIS. I've turned off the windows firewall so that shouldn't be an issue.

Upvotes: 1

Views: 252

Answers (2)

RoboDev
RoboDev

Reputation: 4157

I would use SVN and setup a test server to automatically have the SVN updated on the tested server.

What I have done in the past is setup a SVN repository and add my sites into it. And on the test server setup a running copy of the repository and have a scheduled task automatically update it every 5mins. This works great since I dont have to worry about ftping or any thing. Works great since I use VisualSVN and Commenting my changes is easy.

Upvotes: 1

Sean Bright
Sean Bright

Reputation: 120704

Not with the default ASP.NET Development Web Server. You could probably use Cassini if you don't want to use IIS.

Upvotes: 2

Related Questions