Microsoft TechDays Сергей Звездин sergey.zwezdin@gmail.com

Презентация:



Advertisements
Похожие презентации
© 2009 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or.
Advertisements

© 2009 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or.
Windows ® Azure Platform. Управление пользователями и ролями Управление правилами брандмауэра Содержание.
Microsoft TechDays Илья Рудь MCT ЦКО «Специалист»
Как продвигается тестирование? Как происходит сборка? Мы устраняем дефекты? На сколько качественно мы чиним дефекты? Мы готовы к выпуску?
Windows ® Azure Platform. Создание сервера SQL Azure Создание базы данных Создание правил брандмауэра Управление базой данных Содержание.
24%24% 71%71% Silverlight ?????? infoinfo Браузер somedomain.com.
Windows ® Azure Platform. Обзор возможностей ДEМО: Получение информации и управление приложением в «облаке» Содержание.
Microsoft TechDays Иван Андреев.
Microsoft TechDays Абраменко Денис Инженер IBS Datafort.
Microsoft TechDays Иван Андреев.
Microsoft TechDays Игнатов Максим Разработчик e-Legion
Microsoft TechDays Сергей Поляков Developer Evangelist Microsoft.
Microsoft TechDays Илья Рудь MCT ЦКО «Специалист»
Microsoft TechDays Владимир Безмалый MVP Consumer Security Microsoft Security Trusted Adviser.
Microsoft TechDays Дмитрий Сошников Академический евангелист, Майкрософт Россия
Microsoft TechDays Дмитрий Сошников Академический евангелист, Майкрософт Россия
Объекты в приложении Данные в таблицах Entity Data Model Концептуальная схема Схема хранения данных ОтображениеОтображение.
Новый цикл разработки Интерфейс для создания Silverlight приложений.
Microsoft TechDays Олег Аксенов {oleg.gdn at gmail.com}
Транксрипт:

Microsoft TechDays Сергей Звездин

Microsoft TechDays Enterprise Services WCF позволяет строить только корпоративные сервисы?

Microsoft TechDays Enterprise Services WCF позволяет строить только корпоративные сервисы Web WCF позволяет строить сервисы в т.ч. для работы в Web

Microsoft TechDays Упросить: Отображение URIs на логику приложения Работа с HTTP методами Работа с кодами возврата (response codes) Работа с HTTP заголовками Позволяет предоставить SOAP/RPC и REST контракты из одного приложения

Microsoft TechDays Синдикация – это больше чем новости и блоги Унифицированная объектная модель SyndicationFeed / SyndicationItem Поддерживаются syndication extensions Не зависит от формата RSS 2.0 ATOM 1.0 …

Microsoft TechDays System.UriTemplate Тип для моделирования отношения URI к семантике приложения Связывает данные с шаблоном, выходным URI Устанавливает соответствие URI шаблону, восстановить данные System.UriTemplateMatch Возвращается из UriTemplate, операции «match» Может получить относительные пути и сегменты подстановочных секций System.UriTemplateTable Служит для привязки URI к группе UriTemplates

// create the base Uri Uri address = new Uri( // create the template for a URI UriTemplate template = new UriTemplate({artist}/{album}); // set the values of the URI segments Uri boundUri = template.BindByPosition(address, Northwind, Overdone); // Console.WriteLine(address.ToString());

// create the base Uri Uri address = new Uri( // create the template for a URI UriTemplate template = new UriTemplate({artist}?album={album}); // set the values of the URI segments Uri boundUri = template.BindByPosition(address, Northwind, Overdone); // Console.WriteLine(address.ToString());

// address & boundUri from previous slide // use the template to parse boundUri UriTemplateMatch match = template.Match(address, boundUri); String bandName = match.BoundVariables[artist]; // writes Artist name: Northwind Console.WriteLine(Artist name: {0}, bandName);

[ServiceKnownType(typeof(Atom10FeedFormatter))] [ServiceKnownType(typeof(Rss20FeedFormatter))] [ServiceContract] interface IAlbumSyndication { [OperationContract] [WebGet(UriTemplate=Images/{format}")] SyndicationFeedFormatter Feed(String format); }

Microsoft TechDays WebOperationContext.Current Предоставляет доступ к заголовкам входящего запроса Позволяет также установить заголовки ответа

Stream GetAlbumImage(String bandName, String album) { Stream stream =..; // получаем изображение WebOperationContext.Current.OutgoingResponse.ContentType = image/jpeg; return stream; }

Microsoft TechDays Simple syndication service

Microsoft TechDays Picture Services

Microsoft TechDays WCF web site Picture Syndication sample

Microsoft TechDays © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.