473,385 Members | 1,930 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Team Development

I have just finished reading the "Team Development with Visual Studio .NET
and Visual SourceSafe" patterns & practices white paper. I just wanted to
get a good feel from others if what they suggest here is really the best
implementation for team development. My company only has a handful of
developers (2 currently, as many as 5 possibly in the future) that need to
work on the same ASP.NET projects. All of our existing apps are in classic
ASP and we do not even use source control since there is only two of us and
we communicate well ;). We simply use InterDev to connect to the web site
and edit the files necessary as long as we know the other isn't working on
it as well. This white paper suggest setting up Visual SourceSafe in such a
way that all code will be executed on the developer's actual workstation,
which is a big concern for me.

Following are a few things in this white paper I do not understand:

1. Since all code is executed on the developer's workstation, and not on the
development web server, how will images, external javascript files, etc. be
referenced? Will the ENTIRE site be copied to EACH developer's workstation?
Our sites are rather huge and this may not be a good idea. We also do not
want to put the entire web site in Visual SourceSafe -- only the .NET/HTML
code. In other words -- no images, flash files, etc. in VSS.

2. How can we be sure our development server is updated upon files being
checked in? I'd like our development server to always be running the latest
version of the software available (meaning a rebuild would be necessary
everytime code changes). How can we implement this on a development server?
This is required for our QA department to always be able to test the latest
version of our sites.

I know I'll think of some other scenario's as well, but these are just a few
of my first concerns. Is there an easier way to work on ASP.NET projects
with other developers withOUT using VSS and making things this complicated?

Thanks!

Shawn
Nov 19 '05 #1
5 2039
Shawn:
That guide is gold. Everything they say is on the ball and totally worth
following. To answer some of your questions:

"all code will be executed on the developer's actual workstation"

When developers debug an application it locks the IIS process.. If you
develop on a shared server you'll have serious problems because of this.
Also, you don't want one developer's broken build to break all other builds.

1 - You should go all in, not partially else youl'l run into these problems.

2 - That guide talks about the "build process" and through the build process
and continuous integration (via CruiseControl.Net) you can easily keep a
server up to date..

It seems to me that you haven't fully bought into the benefits of source
control. Until you're there, I wouldn't bother and I'd stick with the "good
communication" approach. .

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"Shawn Berg" <sh***@saeweb.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
I have just finished reading the "Team Development with Visual Studio .NET
and Visual SourceSafe" patterns & practices white paper. I just wanted to
get a good feel from others if what they suggest here is really the best
implementation for team development. My company only has a handful of
developers (2 currently, as many as 5 possibly in the future) that need to
work on the same ASP.NET projects. All of our existing apps are in classic
ASP and we do not even use source control since there is only two of us
and
we communicate well ;). We simply use InterDev to connect to the web site
and edit the files necessary as long as we know the other isn't working on
it as well. This white paper suggest setting up Visual SourceSafe in such
a
way that all code will be executed on the developer's actual workstation,
which is a big concern for me.

Following are a few things in this white paper I do not understand:

1. Since all code is executed on the developer's workstation, and not on
the
development web server, how will images, external javascript files, etc.
be
referenced? Will the ENTIRE site be copied to EACH developer's
workstation?
Our sites are rather huge and this may not be a good idea. We also do not
want to put the entire web site in Visual SourceSafe -- only the .NET/HTML
code. In other words -- no images, flash files, etc. in VSS.

2. How can we be sure our development server is updated upon files being
checked in? I'd like our development server to always be running the
latest
version of the software available (meaning a rebuild would be necessary
everytime code changes). How can we implement this on a development
server?
This is required for our QA department to always be able to test the
latest
version of our sites.

I know I'll think of some other scenario's as well, but these are just a
few
of my first concerns. Is there an easier way to work on ASP.NET projects
with other developers withOUT using VSS and making things this
complicated?

Thanks!

Shawn

Nov 19 '05 #2
Shawn Berg wrote:
we do not even use source control since there is only two of us and
we communicate well ;). We simply use InterDev to connect to the web site and edit the files necessary as long as we know the other isn't working on it as well.
First off, Yikes! You have a SINGLE copy of your code living in a
SINGLE place? As in, one errent delete away from oblivion? And no way
to track down changes that may be causing bugs?

Following are a few things in this white paper I do not understand:

1. Since all code is executed on the developer's workstation, and not on the development web server, how will images, external javascript files, etc. be referenced? Will the ENTIRE site be copied to EACH developer's workstation?

Yes. All the code is on your box. A 200GB hard drive costs $200. Are
you saying you can't fit your Huge site on one of those?

And Yes, ALL the code is in source control. Even the images and .SWFs.

2. How can we be sure our development server is updated upon files being checked in?
Build & deploy from VSS. You can do that. No, really you can!

Is there an easier way to work on ASP.NET projects
with other developers withOUT using VSS and making things this

complicated?

I think you will soon discover the true meaning of "complicated" if you
continue with your current process. Everybody screws up from time to
time. Personally, when I need to roll back a whole day's worth of
changes that inadvertently broke something, I'd rather not have to do
it by hand.

Good luck!
Jason
http://www.expatsoftware.com/

Nov 19 '05 #3
Hi Shawn,

We followed that guide almost to the letter in a small team of 4-5
developers for an ASP.NET project and it was very good. The worst problem
was with VSS which sometimes got corrupted and had to be repaired.

The key to working that way is to have a rule that no one can check in a
page if it doesn't build without error. It doesn't have to be complete, it
just has to compile. If there are errors and you "get latest", you're stuck
with bad code on your machine.

When we thought we had a build to send to QC, we'd get the latest and test
it locally. Then, someone would compile the project and post the relevant
files to the development server. After a test there, we'd label the build in
VSS and tell QC to go get it.

Ken
Microsoft MVP [ASP.NET]

"Shawn Berg" <sh***@saeweb.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
I have just finished reading the "Team Development with Visual Studio .NET
and Visual SourceSafe" patterns & practices white paper. I just wanted to
get a good feel from others if what they suggest here is really the best
implementation for team development. My company only has a handful of
developers (2 currently, as many as 5 possibly in the future) that need to
work on the same ASP.NET projects. All of our existing apps are in classic
ASP and we do not even use source control since there is only two of us
and
we communicate well ;). We simply use InterDev to connect to the web site
and edit the files necessary as long as we know the other isn't working on
it as well. This white paper suggest setting up Visual SourceSafe in such
a
way that all code will be executed on the developer's actual workstation,
which is a big concern for me.

Following are a few things in this white paper I do not understand:

1. Since all code is executed on the developer's workstation, and not on
the
development web server, how will images, external javascript files, etc.
be
referenced? Will the ENTIRE site be copied to EACH developer's
workstation?
Our sites are rather huge and this may not be a good idea. We also do not
want to put the entire web site in Visual SourceSafe -- only the .NET/HTML
code. In other words -- no images, flash files, etc. in VSS.

2. How can we be sure our development server is updated upon files being
checked in? I'd like our development server to always be running the
latest
version of the software available (meaning a rebuild would be necessary
everytime code changes). How can we implement this on a development
server?
This is required for our QA department to always be able to test the
latest
version of our sites.

I know I'll think of some other scenario's as well, but these are just a
few
of my first concerns. Is there an easier way to work on ASP.NET projects
with other developers withOUT using VSS and making things this
complicated?

Thanks!

Shawn


Nov 19 '05 #4
Ken,

Thanks for your informative and encouraging response. After the brief
convincing here, I am definitely moving forward to put this environment into
place.

The reason I originally asked about the web site existing on each developers
workstation as well is because we have some virtual directories that hold
hundreds of gigabytes of videos and image files, and there is absolutely no
reason to keep these under source control, and to push them to each
developers machine. The problem posed, however, is that some of the code on
the ASP.NET web sites we will be placing in VSS will need to access the
files in these subdirectories programatically. Is it possible to test that
without copying hundreds of GBs of data to each developer's workstation?
This data is also updated frequently and will cause a network bandwidth
nightmare if it will have to be updated on each developer's machine. Maybe
somebody could explain a little better exactly how this works?

Also, I planned on putting VSS and it's databases on a server separate from
our development Web server. This seems standard, but not exactly clear in
the white-paper. Is this common?

Shawn
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:#L**************@tk2msftngp13.phx.gbl...
Hi Shawn,

We followed that guide almost to the letter in a small team of 4-5
developers for an ASP.NET project and it was very good. The worst problem
was with VSS which sometimes got corrupted and had to be repaired.

The key to working that way is to have a rule that no one can check in a
page if it doesn't build without error. It doesn't have to be complete, it
just has to compile. If there are errors and you "get latest", you're stuck with bad code on your machine.

When we thought we had a build to send to QC, we'd get the latest and test
it locally. Then, someone would compile the project and post the relevant
files to the development server. After a test there, we'd label the build in VSS and tell QC to go get it.

Ken
Microsoft MVP [ASP.NET]

"Shawn Berg" <sh***@saeweb.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
I have just finished reading the "Team Development with Visual Studio ..NET and Visual SourceSafe" patterns & practices white paper. I just wanted to get a good feel from others if what they suggest here is really the best
implementation for team development. My company only has a handful of
developers (2 currently, as many as 5 possibly in the future) that need to work on the same ASP.NET projects. All of our existing apps are in classic ASP and we do not even use source control since there is only two of us
and
we communicate well ;). We simply use InterDev to connect to the web site and edit the files necessary as long as we know the other isn't working on it as well. This white paper suggest setting up Visual SourceSafe in such a
way that all code will be executed on the developer's actual workstation, which is a big concern for me.

Following are a few things in this white paper I do not understand:

1. Since all code is executed on the developer's workstation, and not on
the
development web server, how will images, external javascript files, etc.
be
referenced? Will the ENTIRE site be copied to EACH developer's
workstation?
Our sites are rather huge and this may not be a good idea. We also do not want to put the entire web site in Visual SourceSafe -- only the ..NET/HTML code. In other words -- no images, flash files, etc. in VSS.

2. How can we be sure our development server is updated upon files being
checked in? I'd like our development server to always be running the
latest
version of the software available (meaning a rebuild would be necessary
everytime code changes). How can we implement this on a development
server?
This is required for our QA department to always be able to test the
latest
version of our sites.

I know I'll think of some other scenario's as well, but these are just a
few
of my first concerns. Is there an easier way to work on ASP.NET projects
with other developers withOUT using VSS and making things this
complicated?

Thanks!

Shawn

Nov 19 '05 #5
Hi Shawn,

We had a similar situation where we had thousands of PDF files on the file
system that were triggered by and linked from our Web application and a
backend database process. On everyone's machine, we set up a virtual
directory in IIS that pointed to a common mapped drive on another file
server. That's where the PDFs were stored. I can't recall the detail now but
it seemed to work very well except when we had to change the passwords that
IIS kept for the remote server. That caused a fair amount of confusion for a
while because the app would break without explanation.

Of course the files we were creating and referencing were demo files. We
used the web.config and a little code to detect whether the PDFs were to
come from the development remote server, the QC remote server or the
production remote server.

So, you shouldn't need to copy anything more than the updated source code
files and a few images that are part of the Visual Studio project that you
are checking out from VSS.

Ken
"Shawn Berg" <sh***@saeweb.com> wrote in message
news:u0**************@TK2MSFTNGP15.phx.gbl...
Ken,

Thanks for your informative and encouraging response. After the brief
convincing here, I am definitely moving forward to put this environment
into
place.

The reason I originally asked about the web site existing on each
developers
workstation as well is because we have some virtual directories that hold
hundreds of gigabytes of videos and image files, and there is absolutely
no
reason to keep these under source control, and to push them to each
developers machine. The problem posed, however, is that some of the code
on
the ASP.NET web sites we will be placing in VSS will need to access the
files in these subdirectories programatically. Is it possible to test that
without copying hundreds of GBs of data to each developer's workstation?
This data is also updated frequently and will cause a network bandwidth
nightmare if it will have to be updated on each developer's machine. Maybe
somebody could explain a little better exactly how this works?

Also, I planned on putting VSS and it's databases on a server separate
from
our development Web server. This seems standard, but not exactly clear in
the white-paper. Is this common?

Shawn
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:#L**************@tk2msftngp13.phx.gbl...
Hi Shawn,

We followed that guide almost to the letter in a small team of 4-5
developers for an ASP.NET project and it was very good. The worst problem
was with VSS which sometimes got corrupted and had to be repaired.

The key to working that way is to have a rule that no one can check in a
page if it doesn't build without error. It doesn't have to be complete,
it
just has to compile. If there are errors and you "get latest", you're

stuck
with bad code on your machine.

When we thought we had a build to send to QC, we'd get the latest and
test
it locally. Then, someone would compile the project and post the relevant
files to the development server. After a test there, we'd label the build

in
VSS and tell QC to go get it.

Ken
Microsoft MVP [ASP.NET]

"Shawn Berg" <sh***@saeweb.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
>I have just finished reading the "Team Development with Visual Studio .NET > and Visual SourceSafe" patterns & practices white paper. I just wanted to > get a good feel from others if what they suggest here is really the
> best
> implementation for team development. My company only has a handful of
> developers (2 currently, as many as 5 possibly in the future) that need to > work on the same ASP.NET projects. All of our existing apps are in classic > ASP and we do not even use source control since there is only two of us
> and
> we communicate well ;). We simply use InterDev to connect to the web site > and edit the files necessary as long as we know the other isn't working on > it as well. This white paper suggest setting up Visual SourceSafe in such > a
> way that all code will be executed on the developer's actual workstation, > which is a big concern for me.
>
> Following are a few things in this white paper I do not understand:
>
> 1. Since all code is executed on the developer's workstation, and not
> on
> the
> development web server, how will images, external javascript files,
> etc.
> be
> referenced? Will the ENTIRE site be copied to EACH developer's
> workstation?
> Our sites are rather huge and this may not be a good idea. We also do not > want to put the entire web site in Visual SourceSafe -- only the .NET/HTML > code. In other words -- no images, flash files, etc. in VSS.
>
> 2. How can we be sure our development server is updated upon files
> being
> checked in? I'd like our development server to always be running the
> latest
> version of the software available (meaning a rebuild would be necessary
> everytime code changes). How can we implement this on a development
> server?
> This is required for our QA department to always be able to test the
> latest
> version of our sites.
>
> I know I'll think of some other scenario's as well, but these are just
> a
> few
> of my first concerns. Is there an easier way to work on ASP.NET
> projects
> with other developers withOUT using VSS and making things this
> complicated?
>
> Thanks!
>
> Shawn
>
>



Nov 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: codabill | last post by:
Can someone please refer me to books, articles, websites where I can obtain information on how to set up VS2003 for team development. I am a project manager for a non-trivial military software...
2
by: Sammy | last post by:
I have a development team working on a web application. I have a development server with VS 2003 installed. Each developer checks out a copy of the source code via source safe and...
10
by: Joe | last post by:
Based on what it says in the subscribers downloads for Team Suite I would think it would be there. Can it be downloaded separately or is it just the Workgroups one? Visual Studio Team System...
0
by: Martin | last post by:
Hello, We are in the process of putting together an A class C++ Development team(ecommerce / billing applications) for a project in the Bay Area. Reqt. details: ReqId : Req-3911 - C++ Senior...
1
by: bharathreddy | last post by:
This Article gives an introduction to VSTS Team Foundation & fundamental difference between Visual Source Safe (VSS) and VSTS Team Foundation. Team Foundation is a set of tools and technologies...
9
by: Smokey Grindel | last post by:
Ok this is making me want to rip my hair out trying to figure out the real price of this thing... we are trying to make up our 2008 budget... we have VS 2005 Pro right now... we like the team...
1
by: Joseph Geretz | last post by:
Our application consists of a suite of webservices. Depending upon application area, different methods are grouped into separate webservice projects, and are developed and maintained by separate...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.