September 2010 - Post
In questi giorni è stato rilevato un problema di sicurezza in ASP.NET che come ben sapete è la base costitutiva della interfaccia utente Web di tutte le versioni SharePoint.
In attesa di una fix strutturale Microsoft ha rilasciato dei workaround per tamponare il problema documentandoli in questa nota tecnica Microsoft Security Advisory (2416728) - Vulnerability in ASP.NET Could Allow Information Disclosure.
Tuttavia in SharePoint 2010 la procedura è lievemente diversa ed occorre seguire questi passi
- Browse to the SharePoint installation directory at %CommonProgramFiles%\Microsoft Shared\Web Server Extensions\14\template\layouts.
- Create a new file called error2.aspx in this directory with the following content:
<%@ Page Language="C#" AutoEventWireup="true" %>
<%@ Import Namespace="System.Security.Cryptography" %>
<%@ Import Namespace="System.Threading" %>
<script runat="server">
void Page_Load() {
byte[] delay = new byte[1];
RandomNumberGenerator prng = new RNGCryptoServiceProvider();
prng.GetBytes(delay);
Thread.Sleep((int)delay[0]);
IDisposable disposable = prng as IDisposable;
if (disposable != null) { disposable.Dispose(); }
}
</script>
<html>
<head runat="server">
<title>Error</title>
</head>
<body>
<div>
An error occurred while processing your request.
</div>
</body>
</html>
- Navigate to %SystemDrive%\inetpub\wwwroot\wss\virtualdirectories.
- For each subfolder in this directory, do the following:
- Edit web.config
- Find the customErrors node and change it to;
<customErrors mode="On" redirectMode="ResponseRewrite"
defaultRedirect="/_layouts/error2.aspx" />
- Save your changes
- Run iisreset /noforce
Altre informazioni a questi link:
Saluti
Mario Saccoia
Dal download center di Microsoft, sono stati resi disponibili due CHM per professionisti IT su SharePoint Foundation 2010 e SharePoint Server 2010.
Ecco i links per il download:
- Microsoft SharePoint Foundation 2010 Technical Library in Compiled Help format
- Microsoft SharePoint Server 2010 Technical Library in Compiled Help format
Saluti
Mario Saccoia
Technorati Tag:
SharePoint 2010
Windows Phone 7 presenta tre features per la gestione del supporto vocale:
- voice search
- voice activated
- start application by command
Potete trovare un pò di documentazione e qual news ai link di cui sotto:
video gallery
press pass
wp7 and excel
Saluti
Mario Saccoia
Creare visualmente una Application Bar, associargli Buttons e MenuItems con Expression Blend: (link)
Saluti
Mario Saccoia
Ecco una novità dai servizi on cloud di Microsoft: Windows Intune
Una console web-based con cui manutenere client attraverso la nuvola.
E’ ancora tutto in beta… e per poter partecipare al programma di testing… bisogna mettere su un’infrastruttura con 5 client almeno
Saluti
Mario Saccoia
Technorati Tag:
Windows,
Cloud
Il blog MSDN segnala una serie di updates di agosto riguardanti Visual Studio Application Lifecycle Management.
Link utili:
Per maggiori dettagli e per effettuare il download cliccare qui.
Saluti
Mario Saccoia
Technorati Tag:
Visual Studio,
ALM
Microsoft ha rilasciato una guida riguardante la sua Enterprise Library, che mostrerà come gli sviluppatori possono utilizzare i componenti EntLib.
La si può visionare su MSDN Library . Gli esempi di codice sono disponibili su CodePlex.
Saluti
Mario Saccoia
Il team pattern & practices ha pubblicato una nuova Windows Phone 7-related guide. La guida dovrebbe fornire un aiuto nella creazione di applicazioni Windows 7.
Download su: http://wp7guide.codeplex.com/
Saluti
Mario Saccoia
Direttamente dal blog in inglese:
Learning
-
For learning about the Visual Studio 2010 tools for SharePoint Development, check out the new Help topics. The portal page for these is: SharePoint Development in Visual Studio.
-
Visual Studio provides tools for developing SharePoint sites. To find out more about how SharePoint itself works, start at the portal page: SharePoint 2010. For those who don’t know, there are two versions of SharePoint: SharePoint Foundation 2010 (formerly known as Windows SharePoint Services, or WSS) and SharePoint Server 2010 (formerly known as Microsoft Office SharePoint Server, or MOSS).
-
To learn about extending the Visual Studio SharePoint tools, including how to create your own SharePoint project and project item templates, see Extending the SharePoint Tools in Visual Studio.
-
For details about the Visual Studio SharePoint project system API, see Reference (SharePoint Tools Extensibility).
-
Channel 9 features videos relating to SharePoint and SharePoint tools, including a great comprehensive (and free!) SharePoint 2010 Developer Training Course.
-
Because SharePoint sites are built on ASP.NET and IIS, having a deeper understanding of those technologies is useful.
Blogs
Forums and Newsgroups
Other Resources
Saluti
Mario Saccoia