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
»
June, 2011
June, 2011
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
(6)
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
ASP.NET MVC
Azure
BizTalk
Blog
Cloud
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
How to: Implement a WCF Asynchronous Service Operation with Task<T>
Posted
over 2 years ago
by
Syndicated AppFabric Author
I love Task<T>. It has to be one of the finest innovations in the framework in the past few years. Recently I was reviewing some old WCF documentation How to: Implement an Asynchronous Service Operation which was probably written in 2006 and I have to say that we can do a much better job of it with Task<T> so here goes my rewrite. Download Sample Code How to: Implement and Consume a WCF Asynchronous Service Operation with Task<T> Implement a service operation asynchronously...
AppFabric Community Blogs via Syndication
Windows Workflow Foundation (WF4) ParallelFor Activity
Posted
over 2 years ago
by
Syndicated AppFabric Author
In my previous posts I’ve been arguing that you can implement Task Parallelism with Windows Workflow Foundation (WF4). Windows Workflow Foundation (WF4) Activities and Threads The Workflow Parallel Activity and Task Parallelism Windows Workflow (WF4) Task Parallelism with Sequences One of the most common scenarios for Task Parallelism is when you have a Task that you must perform for each element of a collection. Suppose you have a collection of names, and you want to write each name to the...
AppFabric Community Blogs via Syndication
Windows Workflow (WF4) Task Parallelism with Sequences
Posted
over 2 years ago
by
Syndicated AppFabric Author
In my last post The Workflow Parallel Activity and Task Parallelism I said that you can implement Task Parallelism with Windows Workflow Foundation. In this post I want to explore some of the differences between the Parallel Activity in System.Workflow.Activities (WF3) and the Parallel Activity in System.Activities.Statements (WF4). Windows Workflow Foundation 3 (WF3) Parallel Activity One of the big changes between System.Workflow (WF3) and System.Activities (WF4) involves how a Parallel with...
AppFabric Community Blogs via Syndication
The Workflow Parallel Activity and Task Parallelism
Posted
over 2 years ago
by
Syndicated AppFabric Author
“ Task parallelism (also known as function parallelism and control parallelism ) is a form of parallelization of computer code across multiple processors in parallel computing environments. Task parallelism focuses on distributing execution processes (threads) across different parallel computing nodes. It contrasts to data parallelism as another form of parallelism.” – Wikipedia – Task Parallelism Can you achieve Task Parallelism with Windows Workflow Foundation? Yes… yes you can. I know, in...
AppFabric Community Blogs via Syndication
The basics of building a RESTful service
Posted
over 2 years ago
by
Syndicated AppFabric Author
The term REST originated with Roy Thomas Fielding in his paper on Architectural Styles and the Design of Network-based Software Architectures . In this paper he described a way to leverage the basic principles behind the web and apply those to business applications. He argues that the World Wide Web is in fact one of the largest applications used by millions of people every day and one that, despite frequent predictions to the opposite, has managed to scale very well. If the web as we know it is...
AppFabric Community Blogs via Syndication
Database Import and Export for SQL Azure
Posted
over 2 years ago
by
Syndicated AppFabric Author
Support for DAC will make import export very easy for our customers. Every conversation I have with customers topic of import/export, backup and disaster recovery always comes up. This is great next step in our feature set in the space. Database Import and Export for SQL Azure SQL Azure database users have a simpler way to archive SQL Azure and SQL Server databases, or to migrate on-premises SQL Server databases to SQL Azure. Import and export services through the Data-tier Application (DAC) framework...
AppFabric Community Blogs via Syndication
Seattle Rock and Roll Half Marathon
Posted
over 2 years ago
by
Syndicated AppFabric Author
One of my resolutions for this year was to run a marathon. Yesterday I finished my half marathon below are stats and Photos. Please Donate : http://pages.teamintraining.org/wa/rnrseatl11/shasbe Photos : http://flic.kr/s/aHsjv6iaAg Seattle RnR Marathon , a set on Flickr. Photos from my Seattle Rock and Roll Marathon Run. It was amazing experience to go through. Blog Post by: Sudhirh
AppFabric Community Blogs via Syndication
Windows Workflow Foundation (WF4) Activities and Threads
Posted
over 2 years ago
by
Syndicated AppFabric Author
Most of the time in software when we say “Parallel” we mean that multiple threads are being used to do work concurrently. Because of this, many customers ask if the Parallel activity works this way in Windows Workflow Foundation. I know there is a great deal of confusion about activities and threads and in the next few posts I hope to bring some clarity. Activity Lifecycle Phase 1: Scheduling Activities are scheduled by a parent activity (or the Workflow Runtime if they are the root activity...
AppFabric Community Blogs via Syndication
Authoring Activities in Code or XAML
Posted
over 2 years ago
by
Syndicated AppFabric Author
With Windows Workflow Foundation (WF4) you can author activities in Code or XAML. Each has advantages and disadvantages Visibility Advantage – XAML You can author them in the Workflow Designer. Here is a activity I’ve been working with today. You can easily see what this activity does by looking at it in the designer. Code Activities It’s not as though code is inscrutable. You can look at it and read this but it isn’t quite as easy. Not to mention that you have to learn...
AppFabric Community Blogs via Syndication
XAML and Activity Assembly Spoofing
Posted
over 2 years ago
by
Syndicated AppFabric Author
Recently I was contacted by a customer who had read my posts on Versioning and was investigating some interesting behavior of activity designers (more on this in a future post). But this discussion got me to thinking. As I pointed out in my WF4 Activity Versioning Solution , with compiled workflows the XamlStaticHelper class loads assemblies into the app domain for you but what happens when you are using loose XAML with ActivityXamlServices.Load instead? Download Windows Workflow Foundation...
AppFabric Community Blogs via Syndication
On building Restful services
Posted
over 2 years ago
by
Syndicated AppFabric Author
I recently did a few blog posts showing the basics of how to get started with the WCF Web API but before I continue I think it is best to start with the why instead of how . A lot of people will be familiar with writing SOAP style services but not everyone is quite as familiar with the REST approach so I guess that takes a bit of explanation. This subject is a bit long for a single blog post so I am going to do a number explaining what REST is, the difference with SOAP and how to build these...
AppFabric Community Blogs via Syndication
WCF Express Interop Bindings
Posted
over 2 years ago
by
Syndicated AppFabric Author
WCF might use the WS-* SOAP standard for communications but the WS-* specs leave vendors with a lot op maneuvering room when it comes to how to exactly implement things. As a result doing interoperable work between WCF and, for example, an IBM WebSphere server can be quite tricky to setup. Something I have experienced all to often Fortunately Microsoft has now released the WCF Express Interop Bindings that should make live quite a bit easier. These binding are preconfigured for a number of...
AppFabric Community Blogs via Syndication
Building Model Service from Sanborn available on Windows Azure Marketplace
Posted
over 2 years ago
by
Syndicated AppFabric Author
Link: https://datamarket.azure.com/dataset/bfa417be-be79-4915-82c7-efae9ced5cb7 Type: Paid Sanborn Building Model Products are an essential ingredient to virtual city implementations . Combining a strong visual appearance with a standards-compliant relational objects database, Sanborn Building Model offers building and geospatial feature accuracy for the most demanding of users . Data contains the information necessary to construct a digital city with hyper-local central business district building...
AppFabric Community Blogs via Syndication
LexisNexis dataset now available!!!
Posted
over 2 years ago
by
Syndicated AppFabric Author
Link: https://datamarket.azure.com/dataset/101eb297-c17f-4f22-a844-16ca2e52252d Type: Free The LexisNexis Legal Communities provide access to the largest collection of Legal Blogs written by leading legal professionals, more than 1,600 Legal Podcasts featuring legal luminaries, information about Top Cases and Emerging Issues. The communities enable you to keep current with the latest Legal News, Issues and Trends. Practice areas covered include: Bankruptcy, Copyright & Trademark Law, Emerging...
AppFabric Community Blogs via Syndication
Chanjet: First Dataset from China on Windows Azure Marketplace
Posted
over 2 years ago
by
Syndicated AppFabric Author
Link : https://datamarket.azure.com/dataset/6bd3a6b3-2fe0-4609-ba11-959190000047 Type : Free There are over 40 million small and medium-sized enterprises (SME) in China. This business segment plays a crucial role in the unprecedented development and growth of the Chinese economy. SME represents 99% of businesses in China, 60% of the economy and accounts for 75% of the employment. Chanjet provides SME operation and management KPI data based on its nationwide survey conducted among SMEs from multiple...
AppFabric Community Blogs via Syndication
Azure AppFabric Service bus, Silverlight Integration - End-to-End (walkthrough)
Posted
over 2 years ago
by
Syndicated AppFabric Author
AppFabric Service Bus is one of the most important services in Windows Azure. Saravana Kumar, MVP has written 2 blog posts explaining how to use Service bus in Silverlight applications. These post are really detailed. Part 1: http://blogs.digitaldeposit.net/saravana/post/2011/06/17/Azure-AppFabric-Service-bus-Silverlight-Integration-End-to-End-(walkthrough)-Part-1.aspx Part 2: http://blogs.digitaldeposit.net/saravana/post/2011/06/17/Azure-AppFabric-Service-bus-Silverlight-Integration-End-to-End-...
AppFabric Community Blogs via Syndication
SQL Azure Data Sync Service
Posted
over 2 years ago
by
Syndicated AppFabric Author
For a while I have wanted to try out Data Sync Service. Today I finally got to it. Sql Azure Data Sync service enables you to sync data between SQL Azure and SQL Azure databases or SQL Azure and SQL Server databases. The video by Liam Cavanagh was super helpful. Blog Post by: Sudhirh
AppFabric Community Blogs via Syndication
How To Load WF4 Workflow Services from a Database with IIS/AppFabric
Posted
over 2 years ago
by
Syndicated AppFabric Author
This morning I saw a message post on the .NET 4 Windows Workflow Foundation Forum titled Load XAMLX from database . I’ve been asked this question many times. How can I store my Workflow Service definitions (xamlx files) in a database with IIS and AppFabric? Today I decided to create a sample to answer this question. Lately I’ve been picking up ASP.NET MVC 3 so my sample code is written with it and EntityFramework 4.1 using a code first approach with SQL Server Compact Edition 4. Download...
AppFabric Community Blogs via Syndication
#dotNed Podcast: Security met Alex Thissen
Posted
over 2 years ago
by
Syndicated AppFabric Author
In deze podcast spreek ik met Alex Thissen over het beveiligen van applicaties. Ze bespreken veel voorkomende kwetsbaarheden en wat je kan doen om je hier tegen te verdedigen. Ook hebben ze het over federated security en Windows Identity Foundation en wat dit voor de toekomst gaat betekenen. http://www.dotned.nl/PodCasts.aspx?id=10 PS: Dutch language only www.TheProblemSolver.nl www.dotnetevents.nl Blog Post by: Maurice
AppFabric Community Blogs via Syndication
Certificates in Windows Azure
Posted
over 2 years ago
by
Syndicated AppFabric Author
Since Azure requires a heighten level of security, certificates became a key concept. As I was looking into it, I found the management a bit confusing and have seen similar questions popping up in the forums. Hence, the content below … More » Blog Post by: Jaime Alva Bravo
Page 1 of 2 (33 items)
1
2