Skip to main content

Posts

SharePoint 2013 VM ( VMWare (.VMX) Player to run the image on Windows or Mac)

The good news for all the developer SharePoint 2013 VM now available for download.Thanks for the http://www.pilothouseconsulting.com team to provide the Virtual Image. Just Click the below link to download the SharePoint 2013 VM (Fill the simple form you will revived the download details by email) . http://www.pilothouseconsulting.com/sharepoint-products-cbt/sharepoint-2013-environment-setup-options.html#option2

SharePoint 2013 Client Object Model newly added DLL

Microsoft did a huge investment on SharePoint 2013 client object model to reduce the server side code.  CSOM : Client Side Object Model allow to run and build your code outside the SharePoint Server. By using CSOM. [Microsoft Definition] If you're building applications that run outside of the SharePoint Server, take advantage of the CSOM. The CSOM interacts with SharePoint via web service calls and has three types of client object models: one for .Net applications, one for Silverlight applications, and one for mobile applications. In addition to these APIs, there is also a JavaScript object model and new REST/OData endpoints which allow you to build several types of applications using your language and platform of choice. Following are the list of newly added CSOM Search User Profiles Taxonomies Publishing Feeds Sharing Workflow E-Discovery IRM Analytics BCS

SharePoint 2013 two new columns "GeoLocation and Related Items"

GeoLocation  Related Items (You will find this column in Task list) GeoLocation  Integrating location and map features SharePoint 2013 introducing new column type “geolocation”; New column GEO location added help to specify the location using BING map. By default this column not visible in the UI. You can add this column by code also available in MSDN link http://code.msdn.microsoft.com/office/SharePoint-2013-Add-a-d3fa8288/sourcecode?fileId=67748&pathId=1981093371 Above link shows how to create the geolocation using the Client object model.  private static void AddGeolocationField()         {             // change "http:// localhost" with your sharepoint server name             ClientContext context = new ClientContext(@"http://Mysite");             //Replace the <List Title> with valid list name.           ...

SharePoint: Application pool XXX has been disabled. Windows Process Activation Service (WAS) encountered a failure when it started a worker process to serve the application pool.

Web front end Error 503 Service Unavailable This error comes when your Password retention policy kicks in then services that running using service account stop working  or the password has been changed of one of your service account that currently running/used in SharePoint Application pool. You will see the following error message to your event logs. To read more about the service account . The solution of this problem you need to reconfigure the same identity pool account.. Following steps. Open IIS navigate to the server application pool. Select application pool .right click on it click to the advance settings option. Under process model group select identity click the   ... button. Choose custom account option select set. enter the username and password click OK

TechEd OSP309 Session bugs and fixes (CRM Connector bdcm)

I am working on the Enterprise Search so recently I got the requirement that I need to crawl the data from the CRM 2011. So for that I need to create the BDCM file. I goggled it and finally got the post on the MSDN “ Source Code from my TechEd OSP309 Session ” and start working on it. I did all the steps then I got the nasty error. Tried to degug the code the inner exception was “Error: An unsecured or incorrectly secured fault was received from the other party”. “An unsecured or incorrectly secured fault was received from the other party”.  To solve the error I did the following steps.  Download the latest CRM SDK from the MSDN.  Add the latest Reference of the following  microsoft.xrm.sdk.dll microsoft.crm.sdk.proxy.dll Change the code of the function “Util_CreateOrganizationService” having a file name EntityServices.cs (At the end of this post you will find the updated code). Project name”CRMEntityService”. Rebuild the code and redeploy the ...

PowerShell Utility Script Update WebPart Properties

This utility help you to update the webpart properties without modify the page manually. This script reads the data from the xml configuration and update page webpart property. To update the file we need the page name and webart id all this type of configuration store in the confg.xml file. Below is the updated code. Note: There is only one Manuel step that is you need to find the site pages as well as get the Ids of the webpart that need to modify the property. This current example only modifies the Title and Xsllink of the webpart. You will find the WebPartUtility.zip at the end of this post the zip folder contains the following two files 1. Config.xml : This file contains the all the configuration required for modify 2. PropertyChange.ps1 : This file contains all the logic. Silent feature: 1. More than one site can webpart can be modified by this script. 2. More than one page , webpart and webpart properties update at once. Config contains the IsUpd...

Content Editor Web part Html Not rendered Issue Solved

Problem: I am deploying the layout pages using the module. Inside the zones I am adding the default web parts. The problem is one of my content editor web part contains the CSS and HTML tags. When I am deploying it the web part comes properly but html not rendered properly.   I have tried the following method to solve the problem. 1.        I have placed the html in the web part then export the content editor web part and place inside the Element.xml file. The problem is still there content not rendered property.   (Not Worked) 2.        Place the html content inside the <![CDATA[]]. I am getting the red swing line. It shows that the xml not well formatted.   Please see the bellow image.   (Not Worked)   3.        Encode the Html then placed it inside the content. Now the html rendered inside the content editor web part. I used the Html Encode tool an...