Reputation: 45801
I am developing on SharePoint Service 3.0/SharePoint Server 2007. I always read document says create an application or create a site (collection). The term application and site always make me confused. Could anyone help to clarify what is the relationship between a SharePoint application and a site (collection)?
For example, here is one of the case when I am confused,
http://weblog.vb-tech.com/nick/archive/2006/06/14/1617.aspx
"1, Create a new site – go to Office Server Central Administration -> Application Management -> Create or Extend Web Application -> Create a new Web Application Enter the settings to create a new SharePoint site." -- mixing site and application make me confused.
"Once the Application has been created choose to ‘Create a new Windows SharePoint Services site collection’." -- seems application has 1:1 relationship with site collection?
thanks in advance, George
Upvotes: 0
Views: 278
Reputation: 20560
Yes, that's a bit confusing. In the first instance he is using the term "site" to mean preparing the SharePoint installation to serve content, basically enabling it to become a web site; in the second instance he is talking about creating actual sites within SharePoint.
There are basically four different levels to think about in SharePoint:
If you find that confusing, wait until you program against it where you'll find a site is called SPWeb and a site collection is SPSite...
Upvotes: 2
Reputation: 81342
In real development terms - A SharePoint Application is an IIS site with nothing configured, while the site collection is the initial base configuration of the IIS App, sites in the site collections can be thought of as virtual directories.
This is not entirely accurate, but its a good way to generate a mental picture.
And you're right to be confused, welcome to the world of MOSS! Its gets even better.
Upvotes: 1