Domanda

Sto lavorando alle versioni multiple di SharePoint.
Uno dei miei clienti richiede un aggiornamento da SharePoint 2010 (Fondazione) al 2013 .
Mi piacerebbe sapere il seguente:

    .
  1. Passi per aggiornare SharePoint 2010 al 2013.
  2. Impatto sul sistema esistente che potrebbe influire sulle soluzioni.
    1. Soluzioni Sandbox
    2. soluzioni agricole
    3. soluzioni OOTB

      I più importanti sono i miei flussi di lavoro in esecuzione per l'approvazione e ci sono Pagine applicative , Ricevitori di eventi e Ricerca che potrebbe essere influenzato.
      Cosa potrebbe essere la procedura corretta per gestire tutti questi.

      Aggiornamento (17 feb 2014):
      Ho flussi di lavoro SPD e anche flussi di lavoro Visual Studio.
      Ho pagine applicative sviluppate in Visual Studio.
      Ho moduli SPD (pagine personalizzate sviluppate in SPD 2010).
      Ho lavoratori timer e ricevitori di eventi sviluppati in Visual Studio 2010.

È stato utile?

Soluzione

Steps to Upgrade from SP 2010 to SP 2013: Make the site in SP 2010 readonly. Using SQL Management Studio, perform the backup of Content database and service database in SP 2010. Restore the databases in SP 2013 SQL server. Attach the content database to a site collection in SP 2013. Similarly, attach the service databse to the corresponding service in SP 2013. For more info please refer: http://sharepointnadeem.blogspot.com/2013/12/sharepoint-2013-upgrade-from-sharepoint.html

UPDATE

SharePoint 2010 workflows are supported in SP 2013 also. The only issue I faced while doing migration of SP 2010 site having workflows was about workflow activities:

The type or namespace name 'AssemblyName' could not be found (are you missing a using directive or an assembly reference?)". at Microsoft.SharePoint.Workflow.SPNoCodeXomlCompiler.LoadXomlAssembly(SPWorkflowAssociation association, SPWeb web) at Microsoft.SharePoint.Workflow.SPWinOeHostServices.LoadDeclarativeAssembly(SPWorkflowAssociation association, Boolean fallback) at Microsoft.SharePoint.Workflow.SPWinOeHostServices.CreateInstance(SPWorkflow workflow) at Microsoft.SharePoint.Workflow.SPWinOeEngine.RunWorkflow(SPWorkflowHostService host, SPWorkflow workflow, Collection`1 events, TimeSpan timeOut)
at Microsoft.SharePoint.Workflow.SPWorkflowManager.RunWorkflowElev(SPWorkflow workflo...

Opening the workflows associated with these lists from SharePoint Designer resulted in the error: Could not deserialize object. The type could not be resolved.

Resolution: Web.config files needs to be modified. For SharePoint 2010 custom activities to work in SharePoint 2013, the “authorizedType” node needs to be defined in a new sub-section “targetFx” under the “authorizedTypes” section.

I also had plenty of event recievers and they all worked very well.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top