Should we develop code on a local machine in a VLAN?
Posted
by red tiger
on Stack Overflow
See other posts from Stack Overflow
or by red tiger
Published on 2010-05-17T12:52:29Z
Indexed on
2010/05/17
13:00 UTC
Read the original article
Hit count: 162
Because of security reasons, we will not be able to use IIS on our local machines. I'm sure that many of you have faced the same problem, so how did you solve it? Here are the options that we're looking at:
Create a VLAN that is isolated from the network for development. This will allow us to use any software, including IIS, that we want. A disadvantage is testing Web services with external organizations, which can be overcome by using stubs.
Not use a VLAN and use only the ASP.NET Development Server that comes with Visual Studio, and then deploying that code to the development server. This has the disadvantage of not being able to replicate the production environment during local development. In addition, at least one developer needs IIS for GIS development, so he couldn't develop locally.
Thank you for comments or suggestions that you may have!
© Stack Overflow or respective owner