Pages

Thursday, October 31, 2013

The Web application at "" could not be found in WCF with SharePoint server object model

Problem Background

I was creating a WCF in Visual Studio 2012 using C# as the programming language and when I call SharePoint server object model in the WCF there was an exception saying The Web application at "" could not be found.


Solution Background

Its because IIS hosted WCF sites use ApplicationPoolIdentity as its user. This is not authorized to SharePoint farm. So we have to give farm administrators credential in order to access SharePoint server.

Solution

  • Open IIS 
  • Go to "Application Pools" 
  • Click on your WCF Service site 
  • Click on "Advanced Setting"




  • Click the corner "Identity" under Process Model in order to change the identity

  • Select "Custom account" and click "Set"



  • There give your farm administrator user name and password.

Tuesday, October 1, 2013

Disable the option for creating a new folder in sharepoint 2010

Problem Background

Some of clients want the users nolt to create New Folder in a document library.

Solution

  • Open the specified document library. 
  • Go to "Library Setting"
  • Click "Advanced Setting"

  • Go to "Folders" section and "No" option for "Make New Folder command available"


    Conclusion

    Now the "New Folder" option is disabled.




    But still users can create folders through Explorer Mode. ;)

    Thursday, August 22, 2013

    Create "Shared with Everyone" folder in Sky Drive Pro / Documents library - SharePoint 2013

    Introduction

    As I mentioned in my previous post our team faced issues in document migration from SharePoint 2010 to SharePoint 2013. The actions were not as expected.

    Problem Background

    In some profile we couldn't find "Shared with Everyone" which folder is having "Read" permission to "All Authenticated Users". So we created a console application which will create "Shared with Everyone" folder and set the permission as we needed.

    Solution

    Please pass your personal site (spWeb) to the method.

       
     public static void CreateSharedFolder(SPWeb web)
     {
    
        SPList list = (SPDocumentLibrary)web.Lists["Documents"];
        //Get the folders inside Documents library
        SPFolderCollection folders = web.GetFolder(list.RootFolder.Url).SubFolders;
        List<string> folderList = new List<string>();
        //Add the SPFolderCollection to a generic list
        foreach (SPFolder folder in folders)
        {
            folderList.Add(folder.Name);
        }
        //Check whether folder list has shared with everyone folder
        if (!folderList.Contains("Shared with Everyone"))
        {
    
           //Create folder inside Documents library 
           folders.Add("Shared with Everyone");
    
           //Greate users
           SPUser allUser = web.EnsureUser("NT AUTHORITY\\authenticated users");
           //Get folder
           SPListItem item = list.Folders[0];
           if (!item.HasUniqueRoleAssignments)
               item.BreakRoleInheritance(true);
    
           SPRoleAssignment roleAssignment = new SPRoleAssignment(allUser);
           SPRoleDefinition roleDefination = web.RoleDefinitions["Read"];
                    //Add role assignment
           roleAssignment.RoleDefinitionBindings.Add(roleDefination);
           item.RoleAssignments.Add(roleAssignment);
           web.AllowUnsafeUpdates = true;
           item.Update();
           web.AllowUnsafeUpdates = false;
    
        }
    
    }
     
     


    Conclution
    Now you can see "Shared with Everyone" folder inside SkyDrive pro.

    Thursday, August 15, 2013

    Move (Personal) Documents into SkyDrive Pro after migrating from SharePoint 2010 to SharePoint 2013

    Introduction

    If you have working on migrating SharePoint 2010 personal sites to SharePoint 2013 personal sites;  documents migration may become a headache. The expectation of the action is
    "The Personal and Shared document libraries in SharePoint Server 2010 are combined into the SkyDrive Pro document library on the user's My Site in SharePoint Server 2013. Items from the Shared folder are stored in the Shared with Everyone folder in SharePoint Server 2013. Items from the Personal folder are stored at the root of the SkyDrive Pro document library and only shared with the owner of the My Site." - MicroSoft

    Problem Background

    But in our case, the documents didn't shift under SkyDrive but they were seen under site contents as another document library.

    So I wrote a console application to move all the documents to SkyDrive. Here I'm presenting a simple code snippet which you have to modify to use other document library and sub folders under document library. 

    Solution 

    private static void MovePersonalDocuments(SPWeb web)
    {
     SPFolder folder = web.GetFolder("Personal Documents");
     SPFileCollection collFile = folder.Files;
     ///*Copy the files to a generic List of type SPFile*/
     List listFiles = new List(collFile.Count);
     foreach (SPFile oFile in collFile)
     {
      listFiles.Add(oFile);
     }
     SPList list = (SPDocumentLibrary)web.Lists["Documents"];
     for (int i = 0; i &lt; listFiles.Count; i++)
     {
        SPFile movefile = collFile[0];
        Console.WriteLine("Moving File: " + movefile.Name);
               web.AllowUnsafeUpdates = true;
        byte[] fileBytes = movefile.OpenBinary();
        string destUrl = list.RootFolder.Url + "/" + movefile.Name;
        movefile.MoveTo(destUrl, true);
               web.AllowUnsafeUpdates = false;
       Console.WriteLine("Success");
     }
    }

    Conclusion 

    • Please note that I have only considered moving Personal Documents.
    • The code will help to move Shared Documents and Sub folders as well. 

    Sunday, August 4, 2013

    "MissingAssembly" Error after Migrating from SharePoint 2010 to SharePoint 2013

    Introduction

    As I mentioned in a earlier post; I started working on Migration from SharePoint 2010 to SharePoint 2013 and power shell scripting.

    Problem Background


    After the migration we TEST-SPContentDatabase -Name "Name of the Content Database" -WebApplication "Name of the WebApplication"  > C:\test.txt in order to test the migrated database. 

    In the text file we were able to find some migrated issues. One of that is MissingAssembly. So here I'm going to show how to solve it. 

    Solution 

    Please note that I used Phil Childs post in order to achieve this. http://get-spscripts.com/2011/08/diagnose-missingwebpart-and.html. I have automated by getting the missing assembly details to a text file and then getting the necessary details from the text file and removing the Event receiver, For more information please read Phil's post. 

    Here is the code. 

    You have to change the lines which are bold and italic, according to your data. 
    Add-PSSnapin Microsoft.SharePoint.PowerShell
    function Run-SQLQuery ($SqlServer, $SqlDatabase, $SqlQuery)
    {
       $SqlConnection = New-Object System.Data.SqlClient.SqlConnection
       $SqlConnection.ConnectionString = "Server =" + $SqlServer + "; Database =" + $SqlDatabase + "; Integrated Security = True"
       $SqlCmd = New-Object System.Data.SqlClient.SqlCommand
       $SqlCmd.CommandText = $SqlQuery
       $SqlCmd.Connection = $SqlConnection
       $SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter
       $SqlAdapter.SelectCommand = $SqlCmd
       $DataSet = New-Object System.Data.DataSet
       $SqlAdapter.Fill($DataSet)
       $SqlConnection.Close()
       $DataSet.Tables[0]
    }
    
    Run-SQLQuery -SqlServer "Name of the SQL Server" -SqlDatabase "Name of the Content DB" -SqlQuery "SELECT * from EventReceivers where Assembly = 'Virtusa.Vplus.Leaderboards.EventReceivers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=c3202aa47f1aa64d'" | select Id, Name, SiteId, WebId, HostId, HostType | Format-List | out-file -filepath "C:\Data.txt" 
    
    
    $textData = Get-Content C:\Data.txt
    
    for($i=0; $i -le $textData.Length - 1; $i++)
    {
       $test = $textData.Get($i)
       if($test.StartsWith("Id"))
       {
           $test -match "Id       : (?.*)"
           $Id = $matches['id']
           Write-Host "Id: $Id"
        }
        if($test.Contains("SiteId"))
        {
          $test -match "SiteId   : (?.*)"
          $SiteId = $matches['SiteId']
          Write-Host "SiteId: $SiteId"
        }
        if($test.Contains("WebId    : "))
        {
           $test -match "WebId    : (?.*)"
           $WebId = $matches['WebId']
           Write-Host "WebId: $WebId"
        }
        if($test.Contains("HostId   : "))
        {
           $test -match "HostId   : (?.*)"
           $HostId = $matches['HostId']
           Write-Host "HostId: $HostId"
           try
           {
            $site = Get-SPSite -Limit all | where {$_.Id -eq $SiteId}
            $web = $site | Get-SPWeb -Limit all | where {$_.Id -eq $WebId}
            write-Host "Web Url:" $web.Url
            write-Host "Site Url:" $site.Url
            $list = $web.Lists | where {$_.Id -eq $HostId}
            write-Host "List Name:" $list.Title
    
            $er = $list.EventReceivers | where {$_.Id -eq $Id}
            $er.Delete()
            write-Host "Deleted Successfully"
    
            }
            catch
            {
             Write-Host "Cannot Delete"
            }
       }
         
    }
    

    Conclusion

    • Running this script will take a long time. So please schedule the time frame before start running the script. 

    Monday, July 29, 2013

    Outlook | Hotmail app for Android doesn't sync or work

    Introduction

    I primary email Id is hotmail and usually I use my android phone to check mail while travelling. Earlier Microsoft had a hotmail application to check mails and later their upgraded to outlook application. Once it is updated to outlook application it stopped working. 
    The issue with the APN setting in the phone. When I changed it it worked perfectly. Please give a try if you are facing the same issue. 

    Solution

    Do the below change and it would work for you. 
    1. Go to "Access Point Names" (In Samsung S2 (Jelly Beans OS) Setting -> More Setting -> Mobile Networks -> Access Point Name)
    2. There give the below setting as APN setting
      • Name: WEB
      • APN: XXXXXX (Your APN Name)
      • Proxy: Not Set
      • User Name: Not Set
      • Password: Not Set
      • Server: Not Set
      • MMSC: Not Set
      • MMS Proxy: Not Set
      • MMS Port: Not Set
      • MCC: 413
      • MNC: 01
      • Authentication type: None
      • APN Type: default, supl
      • APN Protocol: IPv4
      • Enable/disable APN: APN enabled
      • Bearer: Unspecified
    3. Save and restart your phone.

    Conclusion

    Now your outlook application should work and sync the data with the online version.  

    Wednesday, July 24, 2013

    Install PowerShell ISE in Windows Server 2008 R2

    Introduction

    I was assigned to write some PowerShell Scripting for our SP2010 to SP2013 migration. But I couldn't find any tool to write the script by default. My Tech Lead showed me how to install  PowerShell ISE  in my machine. I'm presenting you that. 

    Solution 

    Here are the simple steps to install PowerShell ISE. This can be achieved my enabling the feature in Windows Server 2008 R2. 


    • Open Server Manager (Start -> Administrative Tools -> Server Manager)
    • Click on "Features" at the left
    • Click on "Add Features" on right hand side.
    • Then you will prompt to select some options. 
    • There check (select) "Windows PowerShell Integrated Scripting"

    • Click Next and you will find PwerShell ISE ready on All Programs. 

    Conclusion

    • Happy Scripting :)