Windows Server 2012 RC

Сегодня вечером стал доступен Windows Server 2012 Release Candidate
Скачать можно с официального сайта
Версия с ADK (Assessment and Deployment Kit) доступна только в англоязычном варианте

415 Cannot process the message

Оригинальное сообщение об ошибке: 415 Cannot process the message because the content type 'application/json; charset=UTF-8' was not the expected type 'text/xml; charset=utf-8'

Возможно сервис не прописан в конфигурации приложения, например так:
  
      behaviorConfiguration="XXX.SharePoint.WebServices.CustomServiceBehaviour"
      name="XXX.SharePoint.WebServices.Calculators">
                 
                    address=""
                    binding="webHttpBinding"
                    contract="XXX.SharePoint.WebServices.ICalculators"
                />
                 
                    address="mex" 
                    binding="mexHttpBinding" 
                    contract="IMetadataExchange" 
                />
        

Также можно попробовать атрибут:
[AspNetCompatibilityRequirements(RequirementsMode=AspNetCompatibilityRequirementsMode.Allowed)]

Skydrive в стиле Metro

Наравне с обновлением hotmail (http://outlook.com/) мы получили и обновленную версию скайдрайва
Очевидно Microsoft делает ставку на планшеты



Non white space characters cannot be added to content

1. new XDocument("root") => new XDocument(new XElement("root"))
2. doc.Add(new XElement("child")) => doc.Root.Add(new XElement("child"));
3. new XElement("childWithAttr", "a=b") =>new XElement("childWithAttr", new XAttribute("a", "b"))