Browse by Tags

Tagged Content List
  • Wiki Page: How to Use REST in BizTalk Server 2013 to Send a Message to Windows Azure BizTalk Services (WABS)

    Using the WCF-WebHttp adapter (REST) in BizTalk Server 2013, you can directly send a message to Windows Azure BizTalk Services (WABS). The message can be sent to an EDI Agreement or a Bridge hosted in the BizTalk Services Portal. This topic lists the steps to configure a BizTalk Server send port...
  • Wiki Page: BizTalk Server 2013: Consuming a RESTFul Endpoint using WCF-WebHttp

    Table of Contents Introduction REST API Consume a RESTFul endpoint Scenario Configure the Send-Port using the WCF-WebHttp HTTP Method and URL Mapping Variable Mapping WCF-WebHttp Transport Properties Wrap up Call for action See Also Introduction BizTalk Server 2013 offers few new adapters out-of...
  • Wiki Page: Duplicate:WCF (REST) Service With Federated Authentication, Service Identities Managed By Live ID, Facebook, Google, Yahoo!, Open ID

    Back to Cloud Identity Scenarios and Solutions for Developers Table of Contents Scenario Solution Approach Analysis How To's Code Samples Resources Scenario In this scenario you are developing WPF application that consumes RESTful WCF service. You need to integrate Internet Identity Providers...
  • Wiki Page: Recorded Webinar: Now You Can REST Easy with BizTalk Server 2013 - Neudesic

    Recorded Webinar: Now You Can REST Easy with BizTalk Server 2013 - Neudesic New REST adapters in BizTalk Server 2013 make it easy to incorporate third-party RESTful services into your SOA environment. You’ll also be able to drive BizTalk workflows directly from your internal and external web portals...
  • Wiki Page: Building SharePoint App Using JavaScript & REST with MVVM

    In this tutorial, we will be creating a simple SharePoint app which will Add a list item into a Customer List and then displaying all list items on the page. Artifact: SharePoint App Language : JavaScript, REST Pattern: Model View ViewModel Library: Knockout Step 1: Create a Visual Studio...
  • Wiki Page: Senha forte usando C#

    Olá pessoal, hoje eu vou falar e mostrar como fazer senhas fortes usando a linguagem C#. Antes de começar a mostrar e explicar o código, é importante entender porque precisamos de senhas fortes e a atualização periódica. Como arquiteto de software e professor de faculdade, os profissionais estão se...
  • Wiki Page: BizTalk Server: REST Services Error Handling

    Table of Contents Introduction Some Background REST Start Kit for BizTalk Server 2010 scenario Implementing the solution Testing the solution BizTalk Server 2013 scenario See Also Introduction There are quite a few posts on different blogs that explain how to consume and expose REST services from...
  • Wiki Page: BizTalk Server 2013: REST Support through WCF-WebHttp

    Table of Contents Introduction WCF-WebHttp Adapter Conclusion See Also Introduction Microsoft offers REST support in BizTalk Server 2013 through the WCF-WebHttp Adapter . This has been anticipated for a long time by BizTalk developers. A majority of the services in the cloud is REST based....
  • Wiki Page: Invoke ReSTful Web Services with BizTalk Server 2010

    This article presents a workable solution for consuming ReSTful services using BizTalk Server 2010 . Table of Contents Acknowledgements Contents What is ReST? BizTalk Server and ReST Scenario for this Article How to Use this Article Set up the Design-time Create a Schema for the Twitter Request...
  • Wiki Page: Criando e Consumindo Web API - Parte 5

    Olá pessoal, hoje eu gostaria de falar e mostrar como customizar as pesquisas no Web API, ou seja, saindo um pouco da rotina já criada pela ferramenta Visual Studio da Microsoft, vamos criar outros métodos dentro do Web API para pesquisas. É importante entender que além do trivial que são os métodos...
  • Wiki Page: Consuming OData Based Rest Service in C#

    Nowadays comunication between applications is an active topic with daily usage and a large amount of pratical appliances. While developing an app in witch I had to consume an OData I found out that combining Linq with my code made this operation pretty easy. The algorithm to consume OData starts with...
  • Wiki Page: Criando e Consumindo Web API - Parte 4

    Olá leitor(a), dando continuidade a série de artigos sobre criar e consumir Web API, hoje eu vou falar e mostrar como fazer o PUT ou seja, como fazer “update” no banco de dados usando Web API e o método PUT criado em artigos anteriores. A criação do Web API está descrito todo na primeira parte. ...
  • Wiki Page: Criando e Consumindo Web API - Parte 2 (pt-BR)

    Olá pessoal, hoje eu vou falar de Web API parte 2 da forma bem simples e fácil. No artigo anterior criamos a parte do banco de dados e exportamos os dados em forma de XML ou Json. Agora vamos consumir esse Web API usando a linguagem C# .NET. Antes de começar a falar da parte 2, peço para que leia...
  • Wiki Page: How to Invoke a REST Service from .NET Client

    To access a REST Service you can use the below code: using System.Net; using System.IO; public string UseHttpWebApproach<T>( string serviceUrl, string resourceUrl, string method, T requestBody) { string responseMessage = null ; var request = WebRequest.Create( string .Concat(serviceUrl...
  • Wiki Page: Calling REST Service On Behalf Of End User - OAuth 2.0 Delegation

    Back to Windows Azure Active Directory Solutions For Developers Table of Contents Scenario Solution Approach Analysis How To's Code Samples Resources Scenario In this scenario you are developing an application where the end user consumes a web site which needs to access services that require...
  • Wiki Page: How to Build a REST Service Using WCF

    The below code gives a server implementation of building a REST Service using WCF. [ ServiceContract ] public interface IService1 { [WebGet] string GetData(); [WebGet] string GetDataFromValue( int value); [WebInvoke] CompositeType GetDataUsingDataContract(SampleItem sample...
  • Wiki Page: WCF, IIS, and REST

    Download the code: http://gallery.technet.microsoft.com/WCF-REST-and-IIS-130b242c While I was performing mindless chores around the house this morning I came to the realization that they were not that mindless. After all, I was contemplating REST. Not the type of REST that has you falling into...
  • Wiki Page: WCF Data Services: Overview

    WCF Data Services (formerly known as "ADO.NET Data Services") is a component of the .NET Framework that enables you to create services that use the Open Data Protocol (OData) to expose and consume data over the Web or intranet by using the semantics of representational state transfer (REST...
  • Wiki Page: WCF Data Services : Vue d'ensemble (fr-FR)

    WCF Data Services (anciennement « ADO.NET Data Services ») est un composant du .NET Framework qui vous permet de créer des services qui utilisent Open Data Protocol (OData) pour exposer et consommer des données sur le Web ou l'intranet à l'aide de la sémantique de representational state transfer...
  • Wiki Page: WCF Data Services: Ein Überblick (de-DE)

    WCF Data Services (vorher bekannt unter dem Namen "ADO.NET Data Services") gehört zum .NET Framework und ermöglicht es Services zu erstellen, die das Open Data Protocol (OData) nutzen um Daten über das Web oder ein Intranet durch die Verwendung von Representational State Transfer (REST) bereitzustellen...
  • Wiki Page: ASP.NET Web App To REST WCF Service Delegation Using Shared SWT Token

    Back to Windows Azure Active Directory Solutions For Developers Table of Contents Scenario Solution Approach Analysis How To's Code Samples Resources Scenario In this scenario you are developing distributed application that includes front end ASP.NET web app and the backend REST WCF service...
  • Wiki Page: WPF Application With Live ID, Facebook, Google, Yahoo!, Open ID

    Back to Windows Azure Active Directory Solutions For Developers Table of Contents Scenario Solution Approach Analysis How To's Code Samples Resources Scenario In this scenario you are developing WPF application that consumes RESTful WCF service. You need to integrate Internet Identity...
  • Wiki Page: WCF (REST) Service With Live ID, Facebook, Google, Yahoo!, Open ID

    Back to Windows Azure Active Directory Solutions For Developers Table of Contents Scenario Solution Approach Analysis How To's Code Samples Resources Scenario In this scenario you are developing a rich client application that consumes RESTful WCF service. You need to integrate Internet...
  • Wiki Page: REST - Conhecendo o modelo (pt-BR)

    Table of Contents REST – O que é? REST – Como funciona? Entendendo o esquema de URI’s Não faz muito tempo, quando sistemas precisavam trocar informações entre sí, profissionais da área de TI iniciavam um doloroso processo para exportação...
  • Wiki Page: WCF (REST) Service With Federated Authentication, Service Identities Managed By Live ID, Facebook, Google, Yahoo!, Open ID

    DELETE IT
Page 1 of 1 (25 items)
Can't find it? Write it!