Integrating Integrators – BizTalk, Windows Azure, Windows Workflow, and Beyond
Join
Sign in
Search Options
Search Everything
Search AppFabric
Home
AppFabric
BizTalk Server
Windows Azure
Windows Workflow
Jobs (Hire A Guru)
More ...
Home
»
AppFabric
»
AppFabric Community Blogs via Syndication
AppFabric
This is the top level group for Microsoft AppFabric. Find blogs, samples, videos, and learning resources for Platform Azure AppFabric and Windows Server AppFabric here.
Get this RSS feed
Home
Blog
Files
Wiki
Sitewide Application Navigation
Home
Blogs
Media
Forums
Wikis
Groups
Options
Email Blog Author
RSS for posts
Monthly Archive List
Archives
May 2013
(5)
April 2013
(8)
March 2013
(10)
February 2013
(5)
January 2013
(9)
December 2012
(7)
November 2012
(6)
October 2012
(6)
September 2012
(5)
August 2012
(5)
July 2012
(14)
June 2012
(14)
May 2012
(10)
April 2012
(15)
March 2012
(10)
February 2012
(17)
January 2012
(16)
December 2011
(22)
November 2011
(28)
October 2011
(21)
September 2011
(14)
August 2011
(27)
July 2011
(25)
June 2011
(33)
May 2011
(57)
April 2011
(33)
March 2011
(33)
February 2011
(33)
January 2011
(47)
December 2010
(22)
November 2010
(21)
October 2010
(5)
September 2010
(4)
August 2010
(2)
June 2010
(10)
May 2010
(7)
April 2010
(3)
March 2010
(4)
February 2010
(1)
January 2010
(4)
December 2009
(1)
November 2009
(2)
Tags
.NET
AppFabric
ASP.NET
Azure
BizTalk
Blog
Cloud
Data Access
Developer Community
DotNed
dotnetmag
Featured Article
Futures
HTML5
NuGet
Podcast
REST
SOA
SQL Azure
Toolkit
VS2010
WCF
WF4
Windows Azure
Workflow
AppFabric Community Blogs via Syndication
Bloggers with a focus on Server AppFabric or Azure AppFabric. All content is property of the original blog owner.
RSS for posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
AppFabric Community Blogs via Syndication
Azure AD OAuth 2.0 Authorization Grant
Posted
2 days ago
by
Syndicated AppFabric Author
Yesterday I talked about a bug which prevented me to complete the authorization grant flow with Azure AD. It turn out the bug is only exposed when using Azure Management Portal for Relying party registration. In this post, I’ll use Graph Explorer to do the registration which works fine. My scenario is to create a […] Blog Post by: zamd
AppFabric Community Blogs via Syndication
Azure AD OAuth 2.0 Client_Credentials Flow
Posted
3 days ago
by
Syndicated AppFabric Author
I was playing with the Authorization code grant type recently added to Azure Active directory however there is bug in the preview implementation which prevents exchange an ‘authorization code’ with an access token. I can get the authorization code for graph api by using following url in the browser. https://login.windows.net/69383356-56dd-4e78-a18e-a4ff5450c995/oauth2/authorize?response_type=code&client_id=9f030b74-1ec1-4b6b-8911-f4e6e465ff9d&resource=https://graph.windows.net&api-version...
AppFabric Community Blogs via Syndication
Filtering the data in an #AngularJS ngRepeat element
Posted
6 days ago
by
Syndicated AppFabric Author
Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in AngularJS Filtering the data in an AngularJS ngRepeat element Showing a list of items like in the previous post is nice but if the list is large most users appreciate the possibility to search in it. Turns out that AngularJS has that already build in so it is really simple to do. We are using exactly the same controller as before, all it...
AppFabric Community Blogs via Syndication
Unit testing a ASP.NET WebAPI controller
Posted
7 days ago
by
Syndicated AppFabric Author
One of he goals of the ASP.NET WebAPI is to make REST style API controllers more testable than more traditional WCF services where in the past. For the most part that is true but there are cases where an ApiController depends on the actual incoming request and its data and things can become a bit more difficult. Testing a simple ApiController that gets data Suppose we have the following ASP.NET WebAPI Controller with two Get methods, the first returns the complete list of books and the second returns...
AppFabric Community Blogs via Syndication
Using repeating elements in #AngularJS
Posted
9 days ago
by
Syndicated AppFabric Author
Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in #AngularJS In the previous posts I showed how to get started with AngularJS and use some of the basic AngularJS directives to data bind. In these examples I uses a really simple single element to bind to. However in lots of business cases you really need to display a list of repeating elements. Fortunately this is really easy to do...
AppFabric Community Blogs via Syndication
CRM Online Entity Creation
Posted
19 days ago
by
Syndicated AppFabric Author
Recently I started exploring the world of Dynamics and specifically Dynamics CRM. Technically the platform looks fairly simple with a reasonably clean web services API (mostly SOAP) & SAML based message security (remember legacy WS-Trust ) using Live ID as the identity provider. The helper code from the sdk (\sdk\samplecode\cs\helpercode) hides all the complexity but [...] Blog Post by: zamd
AppFabric Community Blogs via Syndication
The #AngularJS $scope is not the MVC Model
Posted
1 month ago
by
Syndicated AppFabric Author
Index: Getting started with AngularJS Creating an AngularJS Controller The #AngularJS $scope is not the MVC Model In the previous post I showed how to create and use an MVC Controller in AngularJS to manage the logic of an application. In this post I showed how to use the $scope variable that is passed into the Controller to share data between the Controller and the View. This may lead you to believe that the $scope is the MVC Model used but you would be completely wrong. The...
AppFabric Community Blogs via Syndication
Creating an AngularJS Controller
Posted
1 month ago
by
Syndicated AppFabric Author
In the previous blog post I showed how to get started with a really minimal AngularJS application. Even though the app could multiply two numbers it could hardly be called useful and as it turns out that is about as much as I could do with it. Model View Controller AngularJS is an MVC framework . So far we have only seen the View part as the HTML used was the view used to render the page to the user. As the name suggest there should be more in the form of a Controller and a Model. The Controller...
AppFabric Community Blogs via Syndication
Getting started with #AngularJS
Posted
1 month ago
by
Syndicated AppFabric Author
One of the nicer JavaScripts out there to work with must me AngularJS . Now there are quite a few other ones out there and I have used a number of them but AngularJS seems to be the most structured of them. And while it is really powerful it is also really easy to get started with. AngularJS is a client side framework for creating rich web applications using JavaScript and HTML. It isn’t just a library like jQuery or Knockout.js where you create the structure and call into the library as you see...
AppFabric Community Blogs via Syndication
FIX: Missing itinerary designer after installing BizTalk 2013
Posted
1 month ago
by
Syndicated AppFabric Author
This happened to me. I’m not sure if it will prove to be a common problem, or just something specific to me, but I put this post together to save time for others that may run into it. Scenario: I did a clean install of BizTalk Sever 2013. When I went into Visual Studio 2012, I did not have the option to add ESB Toolkit itinerary designers to a BizTalk project. Explanation: During the BizTalk 2013 beta the itinerary designer was distributed as a VSIX package. However, in the RTM version it is no longer...
AppFabric Community Blogs via Syndication
DotNed podcast: Neno Loje on Visual Studio ALM and Team Foundation Service 2012 new features
Posted
1 month ago
by
Syndicated AppFabric Author
In this podcast Hassan Fadili speaks with Neno Loje (VS ALM MVP) about some of the new features in Visual Studio ALM & Visual Studio Team Foundation Service 2012. Of course, Neno also talks about some of the success stories and other areas that might be interesting to anyone who has a passion for application life cycle management. Links: Neno TFS blog: www.tfsblog.com The WHY book on TFS: Visual Studio Team Foundation Server 2012: Adopting Agile Software Practices: From Backlog to Continuous...
AppFabric Community Blogs via Syndication
WCF Data Services and Web API with OData; choices, choices.
Posted
1 month ago
by
Syndicated AppFabric Author
Back in 2010, I wrote a course for Pluralsight on OData which covers the protocol in general and introduces the viewer to the client and server programming model. This year, Microsoft released updates to the ASP.NET Web API which includes support for OData in the controllers. Since this latest release, I’ve received several questions about the differences between these two toolsets for building services that support OData and some guidance on which to use. This is my attempt to answer...
AppFabric Community Blogs via Syndication
How I saved the day with Windows Azure Websites
Posted
1 month ago
by
Syndicated AppFabric Author
My wife does a lot of work volunteering at our school. No, check that, she does a metric ton of work. The school was planning a silent auction to raise money for various programs. As part of this, the group decided to hold an online auction allowing people to bid on various activities offered by the teachers. The only technology available to the group was a CMS for creating web pages and HTML forms that would send email messages. My wife was planning to respond to email and update the...
AppFabric Community Blogs via Syndication
BizTalk 2013 is now RTM
Posted
1 month ago
by
Syndicated AppFabric Author
BizTalk Server 2013 (the 8th release!) has released to manufacturing, and is available NOW for download at MSDN for MSDN subscribers. You can read the team blog post at http://blogs.msdn.com/b/biztalk_server_team_blog/archive/2013/03/21/biztalk-server-2013-is-now-rtm.aspx A list of enhancements can be found at http://blogs.msdn.com/b/biztalk_server_team_blog/archive/2012/11/06/announcing-biztalk-server-2013-beta.aspx Enjoy! Blog Post by: Brian Loesgen
AppFabric Community Blogs via Syndication
DotNed podcast: Mads Kristensen on ASP.NET developer tooling in Visual Studio 2012 and beyond
Posted
2 months ago
by
Syndicated AppFabric Author
For a change an English language podcast :-) In this podcast Maurice de Beijer speaks with Mads Kristensen about web tooling in Visual Studio 2012. Besides the standard build in tooling for web developer they also talk about Web Essentials 2012, the plugin Mads develops in his spare time to give web developers even more features and capabilities. Links: Blog: http://madskristensen.net/ Web Essentials 2012: http://vswebessentials.com/ Web Developer Checklist: http://webdevchecklist.com/asp...
AppFabric Community Blogs via Syndication
SignalR and camelCase data contracts
Posted
2 months ago
by
Syndicated AppFabric Author
I really like SignalR for its capability to do push notifications from the server to the client. But there are a few thing in SignalR I am not quite happy with. Fortunately SignalR is really pluggable and you can change it to suit your needs. :-) PascalCase versus camelCase One thing I am not really happy about is the fact that all data is send over the wire with a request as is. And with SignalR the server tends to be C# where the convention is to have methods and properties in PascalCase...
AppFabric Community Blogs via Syndication
WF Security Pack Update
Posted
2 months ago
by
Syndicated AppFabric Author
Quite a few folks have asked me about updating WF Security Pack to .NET 4.5 as WIF is now integrated into .NET 4.5. Today I manage to spare sometime to upgrade the WFSP to .NET 4.5/WIF 4.5. I have also pushed the updated source code to github which you can pull down from https://github.com/zamd/wfsp/ Please [...] Blog Post by: zamd
AppFabric Community Blogs via Syndication
Excellent rest met de WebAPI #TechDaysNL
Posted
2 months ago
by
Syndicated AppFabric Author
De PowerPoint slides Excellent rest met de web api from Maurice Beijer En hier staat de bron code. Enjoy! Blog Post by: Maurice
AppFabric Community Blogs via Syndication
Creating Anonymous Apex REST APIs with Force.com
Posted
2 months ago
by
Syndicated AppFabric Author
The Force.com REST API lets you integration with Force.com applications using standard HTTP methods. This API provides a way to expose the data you have within your Force.com application to external applications – both mobile and non-mobile. A few useful bits of information related to these REST APIs: Use standard HTTP verbs: GET, POST, PUT,… Continue reading → Blog Post by: Wade
AppFabric Community Blogs via Syndication
A Few Tips on Getting Started with Salesforce.com
Posted
2 months ago
by
Syndicated AppFabric Author
Today I got the opportunity to attend a Salesforce.com “hack day” in San Francisco. Quite fun, and I learned a lot from Adam Seligman, Dave Carroll, Pat Patterson, and Akhilesh Gupta. This is a great team: extremely personable, clearly excited about their platform and the technology, and willing to pull up their sleeves and write… Continue reading → Blog Post by: Wade
Page 1 of 32 (621 items)
1
2
3
4
5
»