Friday, November 21, 2008

WSS 3.0 vs MOSS 2007

WSS 3.0

  • Windows SharePoint Services (WSS3.0) comes free with Windows Server 2003.
  • WSS 3.0 offers all the standard site templates to build team sites, document workspaces, blank sites, blogs, wikis, and meeting workspaces.
  • WSS 3.0 can be used to create people and group lists.
  • You can integrate WSS 3.0 sites with Access 2007, Excel 2007, Outlook 2007, Word 2007 and PowerPoint 2007.
  • It also serves as a platform for application development. Including such IT resources as portals, team workspaces, e-mail, presence awareness, and Web based conferencing, Windows SharePoint Services enables users to locate distributed information quickly and efficiently, as well as connect to and work with others more productively.
  • Create Site Collection: Select template will give minimum options it's like Collaboration and Meetings.

MOSS 2007

  • MOSS is not free and it is installed on top of WSS 3.0.MOSS has both a server cost and a client access license (CAL) cost.
  • MOSS 2007 offers business intelligence features that allow you to track key performance indicators and build BI dashboards into your team site.
  • Moss is used as a super powerful content management system, which aims to provide content management, enterprise content services and enterprise search.
  • Workflow can also be integrated into MOSS 2007.
  • Moss also offers My Sites, which are individual mini-sites that can be set up to show who in your company you're connected to, what your tasks and skills are, your contact information, and more.MOSS 2007 is the portal system, comparable to SharePoint Portal Server 2003. It brings a wealth of built-in functionality and interoperability to a company's intranet over and above the functions of WSS 3.0.
  • Create Site Collection:Select template will give more options it's like Collaboration, Meetings, Enterprise, Custom and Publishing Only WSS 3.0

Advantages MOSS 2007 has over WSS 3.0:

  • Support User Profiles: Users could store profile information.
  • Site Manager: Provided with Drag and Drop functionality to manage navigation and other web parts.
  • Enterprise Search Tools: Tools to search SharePoint sites and portals across entire enterprise.
  • Business Data Catalog (BDC): Enabling access and interaction with external data from business application.
  • Data Search: Search data information from your business application using BDC.
  • Data Web Parts: One could view the list and related information could be retrieve through BDC.
  • Business Document Workflow Support: Using workflow applications document review, approval, signature collection, and tracking could be automated.
  • Retention and Auditing Policies: Allows customized information management policy to control retention period and auditing.
  • Spreadsheet Publishing: Allows user to share information with others and interact with published Spreadsheets.
  • Managing Spreadsheets: Access to spreadsheet data and analysis. Could protect data information in spreadsheets.
  • Excel Services for Web-based BI: Interactive, data-bound spreadsheets including charts, pivot-tables, tables could be shared easily.
  • Report Management: Reports, spreadsheets, and data could be managed consistently.
  • Key Performance Indicators: KPI web part could connect to analysis services, Spreadsheets, SharePoint lists and manually entered data.
  • Email Notifications: Users could be notified by emails, for improved triggering and filtering.
  • Single Sign On: User could sign on to multiple applications with single user id and password.
  • Support to Personal Website: User could create personal web sites.
  • Content Syndication: Use of RSS feeds to syndicate content managed in portal site.

Sunday, November 16, 2008

Sunday at Office

Hi Friends,
I am not a good Blog Writer but still 100% trying to bore you. This is not my first time to work on sunday in the office. And of course it's not a surprise in software industry to work on sunday.One side of my office usually where i used to sit a bit lighting and the rest part is a bit dark Since there was heavy workload i did not get much time to analyse the day but it was a good experience to work on. I was not getting too much bored since my Team Leader with me. But i find a bit difficult to work in the second half, since i was feeling a bit sleepy at that time, As i had a dream to sleep on the whole Sunday. But i get attention after 3 to finish the work and go out and enjoy the rest of the day.

I was determined to work on Sunday and of course this is the perfect time to learn something.And this is really really an important work(i can not disclose the work as an employee of the company)and i knew i will definitely get handsome amount of knowledge from this work.So i do not mind coming to office on sunday. You can visit http://www.rapidsofttechnologies.com to know more about SNet a social networking product for which i was working.

And honestly there was no friend online in Gtalk neither in Skype, that's a bit helpful to me as well as a bit bore. But we(me and my Team Leader) are very much dedicated towards work and also we discussed about our work in the middle. I personally aimed to finish the work as soon as possible. Since that was all about to keep someone's faith and to prove your skills. I can not also write whether i was able to keep keep there faith or not but i am bit satisfied with the work.

As usual i have taken the same cup of tea. But one thing i can not avoid of thinking that "Am i the only person in the office who is neglecting in the work?", and that really gave me confidence to carry on. This was always reminding in my mind. And one interesting thing, When my Project Manager asked me whether you are still in office? I just say her yah i am still here but I will take one day leave after the release of this project. It was really satisfying when some one asked like this.Finally i left the office sharp at 6:30. Overall this was a good day.

Saturday, November 15, 2008

Generate Random password using C#.Net

Hi All,
I have seen a lot of code to create a random password using c#.Net. But i feel the following code is very simple to create. May be i am wrong but i got my solution with this.

public GenerateRandomPassword()
{
String strGuid=System.Guid.NewGuid().ToString();
strGuid=strGuid.Replace("-",string.Empty);
strGuid=strGuid.Substring(0,8); //Here 8 means the password contains 8 characters.
}

Thanks,
hope you will enjoy...