Pergunta

Eu estou trabalhando em versões múltiplas do SharePoint.
Um dos meus clientes está pedindo uma atualização de sharepoint 2010 (Foundation) para 2013 .
Eu gostaria de saber o abaixo:

    .
  1. etapas para atualizar o SharePoint 2010 a 2013.
  2. Impacto no sistema existente que pode afetar as soluções.
    1. Sandbox Solutions
    2. soluções agrícolas
    3. ootb soluções

      os mais importantes são os meus fluxos de trabalho que estão sendo executados para aprovação e há páginas de aplicativos , receptores de eventos e pesquisa que pode ser afetado.
      Qual poderia ser o procedimento correto para lidar com tudo isso.

      update (17 de fevereiro de 2014):
      Eu tenho fluxos de trabalho do SPD e também fluxos de trabalho do Visual Studio.
      Eu tenho páginas de aplicação desenvolvidas no Visual Studio.
      Eu tenho formulários SPD (páginas personalizadas desenvolvidas no SPD 2010).
      Eu tenho trabalhos de temporizador e receptores de eventos desenvolvidos no Visual Studio 2010.

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top