Tuesday, November 10, 2009

The Diagram

Hi,

Let's Discuss the SharePoint 2010 as per the new diagram -








Sites : Work across firewall, to engage people in effective manner .

Communities : To find people across the network easily.

Content : Manage complete life cycle of content. which means , creation, review , publishing and disposal of the content.

Search : wow, new Fast search is waiting for you :) ..but separate licensee is needed to get FAST search..

Insights : Using Information in more effective manner as per business Need, next generation of Dashboard.

Composites : Creating business solution using OOB features of SharePoint





By the way..I came across most awaited feature in SharePoint -

When you change the site title , the new version even give you option to change the URL as per new title ..cool right !!

keep watching more stories are coming out .............

Tuesday, October 27, 2009

Ban is over to talk about sps2010 !!

VERY good morning with great news :)
Now it is legal to talk about sharepoint 2010 ..
I am trying to list very basic changes / enhancements..in very brief

(It works only on 64bit OS)
  1. The New logo..
  2. The New diagram .. of course..new represenation with new diagram..a pie chart with dark blue back ground . 




Some addition on Licensing Model


The New features..we will talk about in coming weeks are -

Business Connectivity Services (BDC)


Enterprise Content Management (ECM)


Enterprise Search


Performance Point Services


Excel Services


User Profile and Social Data

I will talk about these in coming post..till then..bye


Tuesday, September 22, 2009

External List

Good Morning--
The Normal sharepoint but it gets data from Line of Business Object..confusing right?
This is new feature of Sps2010 where the sharepoint list can import all data from any external system using 'Business Connectivity System' [BDC in MOSS]
The cool feature is after getting all data from external system, the developer can play with it like normal sharepoint list, can add column, data into column etc.

Wednesday, September 16, 2009

Excel Services and soap

Excel Services and Soap call.

javascript enabled web services can be used to get client side activites in Excel services.
Below is the code snippet for getRangeA1 -

request = new ActiveXObject("Microsoft.XMLHTTP");
var url = "http://localhost/_vti_bin/excelservice.asmx";
var envelope = "<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">"+
"<soap:Body>"+
"<getcella1 "+
"xmlns=\'http://schemas.microsoft.com/office/excel/server/webservices\'>"+
"<sessionid>"+ EwaGetSessionId('WebPartWPQ3') +"</sessionId>"+
"<sheetname>"+"Sheet1" +"</sheetName>"+
"<rangename>"+"B3"+"</rangeName>"+
"</GetCellA1></soap:Body></soap:Envelope>";

alert(envelope);
request.open("Post",url,false);
request.setRequestHeader("Content-Type","text/xml");
request.send(envelope);
alert(request.statusText);