Mostrando entradas con la etiqueta Wiki. Mostrar todas las entradas
Mostrando entradas con la etiqueta Wiki. Mostrar todas las entradas

sábado, 8 de septiembre de 2012

Links útiles #49 Sharepoint 2010

1-SPUtility: librería de javascript para modificaciones sobre listas, usa la librería Prototype.

http://sputility.codeplex.com/

2-Problemas de usabilidad de Enterprise Wikis

http://sprider.org/2012/08/30/usability-problems-with-sharepoint-enterprise-wikis/

3-Problema con recursos con varios WFE de Sharepoint 2010

http://sadomovalex.blogspot.com.ar/2012/08/problem-with-resolving-resource-strings.html

4-Error The sandboxed code execution request was refused because the Sandboxed Code Host Service was too busy to handle the request

http://blogs.msdn.com/b/sharepointdev/archive/2011/02/08/error-the-sandboxed-code-execution-request-was-refused-because-the-sandboxed-code-host-service-was-too-busy-to-handle-the-request.aspx

http://spreflections.wordpress.com/2012/03/25/error-the-sandboxed-code-execution-request-was-refused-because-the-sandboxed-code-host-service-was-too-busy-to-handle-the-request/

http://sharepointinfoit.wordpress.com/2011/12/27/the-sandboxed-code-execution-request-was-refused-because-the-sandboxed-code-host-service-was-too-busy-to-handle-the-request/

http://www.tomvangaever.be/blog/comments.php?y=10&m=04&entry=entry100414-110019

5-Renombrar un server de sharepoint 2010

http://blog.walisystemsinc.com/2012/08/how-to-change-sharepoint-2010-server.html

6-Infopath: Retornar texto enriquecido de un servicio WCF

http://blogs.breeze.net/mickb/2012/08/30/InfoPathReturningRichTextFromAWCFServiceToAForm.aspx

7-Búsqueda de Sharepoint vía web services

http://www.fewlines4biju.com/2012/08/sharepoint-search-web-service.html

8-Topologías de Sharepoint 2013

http://download.microsoft.com/download/A/0/7/A07928F6-5153-4E19-B682-B8D28194095A/sps-2013-topology-model.pdf

9-Los resultados del search son devueltos de forma lenta en forma intermitente

http://support.microsoft.com/kb/2639348

10-Sharepoint y Oracle Virtual Directory

http://sharepointhero.wordpress.com/2012/09/08/integrating-microsoft-sharepoint-server-with-oracle-virtual-directory/

sábado, 23 de junio de 2012

Tips/Info #37 Sharepoint 2010

1-Mostrar el ONET.XML de un sitio de Sharepoint

Con agregar el siguiente texto /_vti_bin/owssvr.dll?Cmd=GetProjSchema a la url de un site, nos devuelve el archivo ONET.XML.

image

2-Soporte multidioma de un site mediante PowerShell

$spWebSite = Get-spWebSite http://sitio_url
$spWebSite.IsMultilingual = $true
$spWebSite.Update()
#Obtengo la configuracion regional actual usada por el server
$spRegionaSettings = New-Object Microsoft.SharePoint.SPRegionalSettings $spWebSite
$spRegionaSettings.InstalledLanguages
#agrego el lenguaje español (Argentina) debe estar previamente instaldo el language pack
$spWebSite.AddSupportedUICulture(11274)
$spWebSite.Update()
$spWebSite.Dispose()

3-No aparece la librería “Site Pages” y “Sites Assets”

Ir a Site Actions -> Site Settings –>Manage Site Features

Activar la feature Wiki Page Home Page

4-Error:  The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again.

Agrega a tu código la opción de AllowUnsafeUpdates a true.

Web.AllowUnsafeUpdates = true;
item["Title"]=”Sample”;
item.Update();

Otra manera es cambiar la opción Web Page Security Validation a Off

img1

5-xData.responseXML soporte multiplataforma en una consulta web services o spsservices al finalizar (complete)

Cambiar la siguiente sentencia:

$(xData.responseXML).find(“z\\:row”).each(function() {

por esto

$(xData.responseXML).find(“z\\:row, row”).each(function() {

z\\:row‘sólo trabaja de forma correcta en IE, y ‘row‘ trabajará en cada navegador.

lunes, 18 de junio de 2012

sábado, 26 de mayo de 2012

Links útiles #24 Sharepoint 2010

1-Obtener el número total de versiones de todos los items en una site collection

http://jshidell.com/2012/05/21/get-the-total-number-of-versions-for-all-items-in-a-site-collection-using-powershell/

2-Crear un custom action mediante Visual Studio

http://www.sharemuch.com/2011/11/12/adding-custom-actions-in-your-sharepoint-2010-list-item-context-menus/

http://weblogs.asp.net/jan/archive/2007/09/05/using-the-current-page-url-in-the-urlaction-of-a-sharepoint-feature.aspx

http://www.thorntontechnical.com/tech/sharepoint/sharepoint-2010-context-menu-item-with-custom-code

3-Iniciar todos los jobs habilitados

http://get-spscripts.com/2012/05/start-all-enabled-timer-jobs-on.html

4-Licencias de OFFICE WEB APPS (OWA)

http://levinwayne.wordpress.com/2012/05/15/office-web-app-licensing-quick-guide/

5-Saber a qué instancia de w3wp atachar cuando debugeamos con Visual Studio

http://ybbest.wordpress.com/2012/03/22/how-to-find-which-w3wp-exe-to-attach-when-debugging-your-sharepiont2010-project/

6-Convertir a pdf archivos word mediante word services

http://msdn.microsoft.com/en-us/library/ff181518.aspx

7-Disparar un event handler si la ribbon cambia

http://spmonkeypoint.wordpress.com/2012/05/16/trigger-an-event-whenever-the-sharepoint-2010-ribbon-changes/

8-Eliminar un site collection huérfano

http://0ut0ftheb0x.wordpress.com/2012/05/17/orphanedsitecollectio/

9-Administración de content databases con powershell

http://www.mssqltips.com/sqlservertip/2608/managing-sharepoint-content-databases-with-powershell/

10-Remover el host de mysite con client object y powershell

http://www.c-sharpcorner.com/UploadFile/anavijai/remove-my-site-host-location-url-in-sharepoint-2010/

11-Conectar web parts con Visual Studio 2010

http://www.fewlines4biju.com/2011/09/connected-web-part-in-sharepoint-2010.html

12-Multiple dropdown con Infopath 2010

https://www.nothingbutsharepoint.com/sites/eusp/Pages/SharePoint-How-to-Create-Multiple-Cascade-drop-downs-using-InfoPath-2010.aspx

13-Implementar una wiki empresarial

http://www.denisstadler.com/sharepoint-2010/ecm-collaboration/step-by-step-how-to-implement-an-enterprise-wiki/

14-Crear una opción para el panel de refinamiento

http://purunep.wordpress.com/2012/05/25/building-custom-search-refiners-in-sharepoint-2010-server/

15-Custom ADFS Login (forms)

http://blog.helloitsliam.com/Lists/Posts/Post.aspx?List=e10cb685-6b5c-4b6c-aaf4-e1d122d57174&ID=76&Web=8fe3252e-9495-44f1-b2e4-dbd7b201440b

16-Warm-up para autentificación via formularios

http://peterheibrink.wordpress.com/2012/05/06/warm-up-script-for-form-based-authentication-fba-sharepoint-sites/

miércoles, 18 de abril de 2012

Link útiles #16–Sharepoint 2010

1-SharePoint Server 2010 Virtual Labs

2-Algunas herramientas para Sharepoint 2010

http://www.harepoint.com/Default.aspx

http://www.idera.com/Content/Home.aspx

http://www.metalogix.com/Home.aspx

3-Política de governance interna de Microsoft

http://www.balestra.be/2012/04/how-microsoft-does-sharepoint-governance-for-their-internal-platform.html

4-Migrar desde Sharepoint 2003 a Sharepoint 2007, y desde Sharepoint 2007 a 2010

http://mysplist.blogspot.com.ar/2009/07/sharepoint-2003-to-moss-2007-migration.html

http://mysplist.blogspot.com.ar/2012/04/migrating-sharepoint-2007-site-to.html

5-Instalando Reporting Services 2012 para Sharepoint 2010

http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?List=56f96349-3bb6-4087-94f4-7f95ff4ca81f&ID=324&Web=48e6fdd1-17db-4543-b2f9-6fc7185484fc

6-Procesamiento batch en las consultas hacia Sharepoint

http://vintentou.wordpress.com/2012/03/07/delete-all-items-in-sharepoint-list-using-batch-delete-command/
http://blog.dynatrace.com/2009/01/20/sharepoint-using-batch-updates-to-speed-up-performance/
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.processbatchdata.aspx
http://www.arboundy.com/code/sharepoint/bulk-add-new-items-to-a-sharepoint-list-using-processbatchdata/
http://nileshmandekar.blogspot.com.ar/2011/01/spwebprocessbatchdata-method-to-improve.html
7-SPServices vs. the Client Side Object Model (CSOM)

http://www.sharepointhillbilly.com/Lists/Posts/Post.aspx?List=9174cc90-d85c-4f0b-a884-4c4023ff9556&ID=15&Web=70322961-8cf0-46cf-b4c4-accdc264bf8e
8-Document Set Sharepoint 2010 – Tutorial básico

http://ybbest.wordpress.com/2012/04/07/getting-started-with-document-set-in-sharepoint2010/

9-Calcular la cantidad de WFE de Sharepoint



http://www.chaitumadala.com/2012/04/sharepoint-2010-how-to-calculate-number.html


10-Excluir contenido de una página del agente de search mediante un webcontrol



http://www.chaitumadala.com/2012/04/sharepoint-search-exclude-part-of-page.html

11-Diferencia entre un fileserver y Sharepoint

http://blog.brainlitter.com/2012/04/09/sharepoint-vs-the-file-server-13-reasons-why-sharepoint-kicks-your-file-servers-butt/
12-Enterprise Wiki site template vs. Wiki Library template

http://blogs.microsoft.co.il/blogs/itaysk/archive/2012/04/15/enterprise-wiki-site-template-vs-wiki-library-template.aspx
13-Access y Sharepoint 2010

http://blogs.technet.com/b/hub/archive/2010/11/08/publish-your-access-database-to-sharepoint.aspx
http://msdn.microsoft.com/en-us/library/ff402351.aspx
http://blogs.office.com/b/microsoft-access/archive/2009/11/23/publish-to-sharepoint-part-1.aspx
14-Infopath: obtener información del usuario actual

http://levinwayne.wordpress.com/2012/04/10/infopath-get-the-current-user-without-writing-code/