All postings, articles, and other content on this blog are provided ”AS IS” with with no warranties, and confer no rights. Any sample on this blog is subject to the terms specified at Microsoft
Hello
After the public availability of the SharePoint 15 CTP, now we have a new announcement SharePoint 15 SDK CTP has been released.
http://www.microsoft.com/download/en/details.aspx?id=28768
It's intended to provide an overview of the future SharePoint 15 object model in order to take in account on future migrations or on new developments.
Btw, i would like to remind you:
Community Technical Preview (CTP) builds do not go through the same rigorous testing that beta builds undergo. While betas receive a much higher level of testing and feature work, CTPs are intended to expose developers to the latest working build. CTPs are therefore unsupported, prerelease software and there are some precautions you should take. Please read the latest Readme and Installation Guides before you download or install prerelease software.
Kind regards
Héctor Calvarro Martín. SharePoint Dev. Microsoft Support Engineer for DEV EMEA
Hola a todos.
Hace un rato en una session del TechReady 14 en EE.UU. hablando con mi "compannero" Patrick Heyde me comentaba que se ha hecho publico que este verano las Technical Preview de Office15, SharePoint15, Project15, Visio15, Exchange15, Lync15 van a estar disponibles para todo el mundo, segun se ha publicado en el blog del grupo de producto.
“While the Technical Preview program is already full, everyone will have the opportunity to try the Office 15 public beta later this summer, and we'll have more to share about the release then. In the meantime, I do want to thank everyone who is participating in the Technical Preview for their contributions and all our customers for their continued support.”
Mas informacion en:
http://blogs.office.com/b/office-exec/archive/2012/01/30/quot-office-15-quot-begins-technical-preview.aspx
Una muy buena noticia :)
Un saludo.
UPDATE ==> IT WILL BE FIXED ON APRIL 2012 CU FOR SPS 2010 AND ON JUNE 2012 for MOSS 2007
Hi all
I would like to inform that MOSS 2007 and SPS 2010 output cache stops working after installing security update for the .NET MS11-100 KB2656362 http://support.microsoft.com/kb/2656362 and KB2656352 http://support.microsoft.com/kb/2656352 . It is reported and the Product Group is working on a fix.
Please, it's recommended from your side to measure if you want cache on the environment but to be impacted by security issues or to be secure but without any output cache.
Thanks.
Kind Regards.
On Spanish available in the Spanish SharePoint Support Team Blog
Hola.
Como todos sabréis por las últimas noticias del CES, Kinect va a estar disponible para Windows en RTM a partir del 1 de Febrero de 2012. Por ello me gustaría compartir con vosotros dos páginas indispensables para todos aquellos que empiecen en este mundo para Windows.
Página de lanzamiento de Producto con toda la información relevante y características
http://www.microsoft.com/en-us/kinectforwindows/
Blog Corporativo sobre Kinect for Windows.
http://blogs.msdn.com/b/kinectforwindows/
¿Estás ya preparado para construir el futuro?
Hi
Some months ago I faced a case in somehow curious regarding to the method SPWeb.GetSiteData(p) http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.getsitedata.aspx . It turns out that the following code snippet was not generating the expected table of items:
try
{ //Some code rgarding SPSiteDataQuery p
DataTable dt = SPContext.Current.Site.RootWeb.GetSiteData(p);
//Some code
}
catch (Exception e)
{
The issue was that in order to use this method you need to use a explicit SPWEB, so the code should be coded in this way:
{ //Some code regarding SPSiteDataQuery p
SPSite Siteh = SPContext.Current.Site;
using (SPWeb Webh = Siteh.OpenWeb())
DataTable dt = Webh.GetSiteData(p);
//Some Code
Eventually, to sum up, it seems to be by design (I didn't double check with USA Product Group) but the statistics regarding the items seems to be calculated when you instace the new SPWeb in an explicit way
Kind regards.
Hola
Desde Outlook 2007 se ha deshabilitado el protocolo Outlook como informa el KB 929590 http://support.microsoft.com/kb/929590/es
El protocolo de Outlook ya no funciona fuera de Outlook
Se ha cambiado el protocolo de Outlook (Outlook://). Este protocolo sólo funcionará cuando se utilice en Outlook. Puede utilizar este protocolo en la página principal de una carpeta, en la barra de herramientas Web o en el cuerpo de un elemento de Outlook.
Nota: Outlook no reconoce automáticamente el protocolo de Outlook cuando lo escribe en el cuerpo de cualquier elemento. Sin embargo, el protocolo funciona si lo establece como un hipervínculo.
Para volverlo a habilitar hay que hacer unos ligeros cambios en el registro de Windows creando unas nuevas claves. Para conseguirlo, hay que descargar el archivo zip adjunto y aplicar el regedit correspondiente, dependiendo de la versión de office.
Acto seguido ejecutar en Internet explorer outlook:inbox y comprobaréis como el protocolo funciona perfectamente.
Gracias.