MOSS 2007 Pricing & Costing Info

I have consolidated few links from Microsoft for MOSS 2007 Product Costing.

Microsoft Office SharePoint Server 2007 and Related Technologies pricing

Microsoft Office SharePoint Server 2007 products comparison download

2007 Microsoft Office system pricing and upgrade information

MOSS 2007 Rename the Web Application Name

I want to share how to rename the web application name in command line administration of MOSS 2007 using STSADM Command.

Syntax: stsadm -o renameweb -url -newname

Example: Stsadm -o renameweb -url http://localhost/oldname -newname newname

The above command will rename the web application from oldname to the newname.

Commerce Server 2007 Integration with MOSS 2007

MOSS has many inbuilt features. The scope of this POC is to integrate Commerce Server 2007 with MOSS 2007 to provide Portal Integrated e-Commerce Application

Configuring MOSS 2007 to Use the Commerce Server Membership Provider As The Basis For User Authentication

The primary tasks are to make the Central Administration and Portal sites hand-shake […]

Content Approval Workflow in MOSS 2007

In MOSS 2007 Approval workflow is available in out of the box itself. Just we need to configure only few steps then we are ready with the approval process.

If the approval workflow is configured the document will be visible only to the contributor and to the approver.

Steps to Configure Content approval workflow

Open […]

Tree View Document Library in MOSS 2007

Hi Moss Devs, Are you looking for Treeview webpart to display the document library in tree view. There is no out of the box webpart available to display the document library in Treeview.

I started googling it when started working on this task. I got few webparts which is using java script to load the […]

MOSS 2007 & WSS 3.0 Service Pack 1

Today Microsoft Released the Service Pack 1 for Microsoft Office SharePoint Server 2007 & Windows SharePoint Services 3.0

Get It here for WSS 3.0 SP1 Get it here for MOSS 2007 SP1

Turn Off UnExpected Error Occurred in MOSS 2007 To Display Exception Detail

MOSS 2007 by default will display the custom error page for all errors occurred in page

In Development phase it will be difficult for the developers to understand the exact error. Change the following Modifications with the web.config of the web application. Then it will display the exception details in the error page.

Turn […]

Programmatically Read List & View Content in SharePoint

I got a task to work on developing the windows application which will fetch the List View data from sharepoint and process the data in win forms app.

Previously i used to fetch the data using Lists.asmx,views.asmx.

Now i came to know there is other way to fetch the data from List View.

Syntax: https://myserver.com/_vti_bin/owssvr.dll?Cmd=Display&List={list […]

Free SharePoint Web Parts

Hi SharePoint Dev’s, Mark Kruger has given the list of free sharepoint webparts

http://www.sharepointblogs.com/mkruger/archive/2007/06/26/free-sharepoint-web-parts-3rd-party.aspx

Check it.

Programmatically Update List Content in SharePoint

Hi Devs,

The Below is the Sample Code to update the Sharepoint list content programmatically by using SharePoint Object Model.

SPSite Site = new SPSite(“http://localhost:21000”); SPWeb Web = Site.OpenWeb(); SPList List = Web.Lists[“Address Book”]; SPListItem ListItem = List.GetItemById(0);

string FullName = string.Empty;

FullName = ListItem[“FirstName”].ToString() + ListItem[“LastName”].ToString(); SPListItem[“FullName”] = FullName; ListItem.Update();