Its easy to get currently loggedin user name in clientObject Model. below is the code used in silverlight application.
private string GetLoggedUserName()
{
string name = string.Empty;
try
{
ClientContext cnt = new ClientContext("serverUrl");
if (cnt != null)
{
user = cnt.Site.RootWeb.CurrentUser;
cnt.Load(user);
cnt.ExecuteQueryAsync(loginNameSuccess, loginNameFailure);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message + " Inner Exception:" + ex.InnerException.Message);
}
return name;
}
private void loginNameSuccess(object sender, ClientRequestSucceededEventArgs e)
{
this.Dispatcher.BeginInvoke(delegate()
{
MessageBox.Show(user.LoginName);
});
}
Thursday, December 31, 2009
Monday, December 21, 2009
Add Excel Web Renderer Webpart From SilverLight ObjectModel
Hi,
First in How To's :)
To add a Excel Webpart from Silverlight oject Model -
ClientContext cnt = new Microsoft.SharePoint.Client.ClientContext("http://hydhtc130180d:3333/");
if (cnt == null)
{
throw new Exception("connection failed");
}
else
{
string ewaWebpart = "<?xml version='1.0' encoding='utf-8'?><webParts><webPart xmlns='http://schemas.microsoft.com/WebPart/v3'><metaData>";
ewaWebpart +="<type name='Microsoft.Office.Excel.WebUI.ExcelWebRenderer, Microsoft.Office.Excel.WebUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' />";
ewaWebpart +="<importErrorMessage>Cannot import this Web Part.</importErrorMessage>";
ewaWebpart +="</metaData>";
ewaWebpart +="<data>";
ewaWebpart += "<properties>";
ewaWebpart += "<property name='Title' type='string'>ExcelWebRenderer</property>";
ewaWebpart += "</properties>";
ewaWebpart +="</data></webPart></webParts>";
LimitedWebPartManager limitedWebPart = cnt.Web.GetFileByServerRelativeUrl("/SitePages/mypage.aspx").GetLimitedWebPartManager(PersonalizationScope.Shared);
WebPartDefinition ewaWebPartDef = limitedWebPart.ImportWebPart(ewaWebpart);
limitedWebPart.AddWebPart(ewaWebPartDef.WebPart,"Left",1);
cnt.ExecuteQueryAsync(s1, f1);
First in How To's :)
To add a Excel Webpart from Silverlight oject Model -
ClientContext cnt = new Microsoft.SharePoint.Client.ClientContext("http://hydhtc130180d:3333/");
if (cnt == null)
{
throw new Exception("connection failed");
}
else
{
string ewaWebpart = "<?xml version='1.0' encoding='utf-8'?><webParts><webPart xmlns='http://schemas.microsoft.com/WebPart/v3'><metaData>";
ewaWebpart +="<type name='Microsoft.Office.Excel.WebUI.ExcelWebRenderer, Microsoft.Office.Excel.WebUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' />";
ewaWebpart +="<importErrorMessage>Cannot import this Web Part.</importErrorMessage>";
ewaWebpart +="</metaData>";
ewaWebpart +="<data>";
ewaWebpart += "<properties>";
ewaWebpart += "<property name='Title' type='string'>ExcelWebRenderer</property>";
ewaWebpart += "</properties>";
ewaWebpart +="</data></webPart></webParts>";
LimitedWebPartManager limitedWebPart = cnt.Web.GetFileByServerRelativeUrl("/SitePages/mypage.aspx").GetLimitedWebPartManager(PersonalizationScope.Shared);
WebPartDefinition ewaWebPartDef = limitedWebPart.ImportWebPart(ewaWebpart);
limitedWebPart.AddWebPart(ewaWebPartDef.WebPart,"Left",1);
cnt.ExecuteQueryAsync(s1, f1);
Friday, December 18, 2009
Developer's Attraction for Sharepoint 2010
In previous post I tried to expalain some of the new terms with respect to SharePoint 2010, which business is asking since last version. This post is devoted to developers with same vision in mind.
- Windows PowerShell Administration : This is really powerfull tool which is there to replace stsadm. stsadm is there to maintain backward compatibiltiy but goign forward cmdlet will rule the sharepoint world. These are command line option which can take result of previous command and can produce objects. This eventually helps is getting small items in working just in few line without wirtting console application for the same, like getting webID. they even can be used in back up restore with vast improvements in performance.
- Visual Studo2010 : Lets user to do F5 for sharepoint project, allows user to create visual webpart, deploy the solution over sandbox, lets developer to create BCS project, content Type and list schema etc.
- LINQ to SharePoint - This is news to developers...let's learn LINQ, this is new coding style.
- ClientObject Model - Marvoul point, the team introduced Object Model for javascript,Silverlight and managed code. dev can use the dlls like Microsoft.Sharepoint.Client.Silverlight to work at client side. [will post some how'to very soon]
- SharePoint Designer2010: allows developer to create new list, new Fom, new content Type and many activties from Designer interface.
Labels:
MOSS 2010,
MOSS2010,
Sharepoint 2010,
Sharepoint2010,
sps 2010,
sps2010
Business Attraction for sps2010 / SharePoint 2010
Hi,
Sorry for not being able to post for a long time. In this Post I will try to describe some of new functionalities which can be described as selling point for the business.
b. list control - provides a way to limit the number of rows returned by a list. Alhtough the maximum number of items has increased upto 50 million items.
Sorry for not being able to post for a long time. In this Post I will try to describe some of new functionalities which can be described as selling point for the business.
- Claim Based Authentication - Authentication can be done against - Active Directory, LDAP,application specefic database,user centric model like LiveID.It is based on 'GENEVA' technology, which it self is comibination of Geneva Server, geneva CardSpace and Geneva FrameWork. In one line - Identity is kept in token, token cotains one or more information about user.
- BCS - Business Connectivity Services- New generation BDC, open scope for external list though which data can be inserted into LOB system.
- High Availability-
- FAST Search [Need extra licensing]-As of now fast search has been integrated as it is in the product.
- Remote Blob Storage- It is possible to have BLOB and customised pages in the database stored in out side database such as file system.
- Performance Control [thorttling]- Two options avaiable
b. list control - provides a way to limit the number of rows returned by a list. Alhtough the maximum number of items has increased upto 50 million items.
- Backup and Restore- list level backup is possible though UI.
- SharePoint Online and Multi tanancy- Service architecture gives support for better design in case of SharePoint online. the tenants are managed by subscriotion ID, and each tenatnt can subscribe to its needed service.
- WorkOffline - workspace2010- Gives support for to bussiness user to work offline to sharepoint Libraries, where he becomes online, the library gets synchronised.
Labels:
MOSS 2010,
MOSS2010,
Sharepoint 2010,
Sharepoint2010,
sps 2010,
sps2010
Subscribe to:
Posts (Atom)