Skip to main content

Some facts on Sharepoint 2010

By following Lee Richardson's blog, I came to know about few good and few shocking news about Sharepoint 2010. Lets start with some good news:

(i) Sharepoint 2010 will have inline list editing with AJAX Support.
(ii) Workflows created using Sharepoint designer can be resued by the same way what Visual Studio does
(iii) Sharepoint 2010 will support ASP.NET Data Services API.
(iv) BDC will also insert or update the data.
(v) You can edit Sharepoint Solutions without touching XML! Whooo!!!

To me, shocking news is related to the requirement part:
(i) Windows Server 2008 will be needed. So what will happen to me if I have Windows 2003?
(ii) 64 bit SQL Server 2005/2008 is needed.
(iii) There will be no support for Sharepoint 2010 in IE6. I am not sure whether it is because of AJAX or not.

Comments

  1. hello sir,
    i have pursued b.e computer, i am from india.i have knowledge of .net technology as a beginer in asp 2.0 with c#. i want to get professional knowldge with projects in .net with wcf,web services, linq. i dont know what is currently used in making projects(websites) plz i guide me all through , from where i can start and how? i have good understanding of programing.
    shah.darshan86@gmail.com

    ReplyDelete
  2. Darshan,
    I am extremely sorry for the late reply. By this time, I guess you are on your way. Well the technologies that you mentioned are widely used now-a-days. These are specially known as Microsoft Web Technologies. Just concentrate on basics first then move to the advanced part. All the best.

    ReplyDelete

Post a Comment

Popular posts from this blog

10 Powerful features for Sharepoint

Windows Sharepoint Services 3.0 and Microsoft Office Sharepoint Server 2007 provide very powerful and wide range of feature riched applicationd which can be very useful for Social Networking and daily computing in any bussiness environment. In this post, I am going to list down 10 very powerful features freely available at codeplex: Podcasting Kit for SharePoint (PKS): Podcasting Kit for Sharepoint (PKS) helps to save time and money for an organization to deliver the next generation knowledgement management solution using social media. Any podcast enabled device along with the general web users can access this highly user interactive sharepoint feature. It is built with Silverlight 2.0 and Microsoft Expression Encoder 2.0 to provide the podcasting solution. To view more and to download the February 2009 beta edition, just go to http://pks.codeplex.com/ . Community Kit for SharePoint(CKS): Community Kit for Sharepoint (CKS) is a bouquet of rich features which make existing features in

Programmatically Playing With SSRS Subscriptions

SQL Server Reporting Services offers programmatically handling various report subscriptions. You can read the specific subscriptions and change those in code-behind as required. I assume that you are already aware about the subscription mechanism in reporting services. For some of you who are not aware about this, I would like to write that subscription in reporting services is nothing but a automated service (sql server job) defined and set by you to deliver reports at specific time or in specific events. You also define in which format the report will be presented to the user. Now whatever subscription properties you have set, everything will be stored in the ReportServer database. Schedule, Subscriptions and ReportSchedule tables contain alll those informations. Now create a Windows or Web Application. Add a Web Reference towords ReportingService2006. If SSRS is isntalled on your system then you can easily find the ReportService2006.asmx in the following url: http://servername

Changing IIS Emulation Modes

In 64 bit Windows 2003, you may need to change the emulation mode of IIS depending upon the cases and conditions. To change the IIS emulation mode to 32 bit to 64 bit and vice versa, do the followings: Open command promp and run the following command cd C:\Inetpub\Adminscripts (I am assuming that C is your windows drive) cscript adsutil.vbs set w3svc/AppPools/Enable32bitAppOnWin64 1 (to make it 32 bit) cscript adsutil.vbs set w3svc/AppPools/Enable32bitAppOnWin64 0 (to make it 64 bit) iisreset