The Durable Task Framework is an open source project originally started by Microsoft. It enables you to write orchestrations in pure C# using the .Net framework. By using of this framework, you can implement many kinds of integration projects without of need to use any Enterprise Service Bus product...
Coded Orchestrations When working in integration space, we commonly deal with terms like Orchestration, Business Process Execution etc. For this purpose we use differed powerful products like Enterprise Service Busses, Process Execution Engines, etc. Following picture shows one BPMN2 example,...
When implementing services, you will at least on Windows typically implement the service und run it in Service Control Manager (SCM). Another option would be implement a job, which will be scheduled by System Task Scheduler, which is built in the operative system. However if the program has to run for...
Imagine you are writing a piece of software, which looks like following code snippet: MyProgram.Run(args) { var result1=Task1(); if(resut1 = 1) Task2(); ...
Hybrid Connector is a technology which enables you to connect to private data from cloud application. That means if you have a Azure WebSite or a WebApi as a part of Mobile Services solution, you can connect to any TCP reachable service (with static IP address), which even does not have a public IP address...
There are many situations in Business when some Business Process has to be orchestrated by multiple incoming messages. For all of you who are not very familiar with system integration, here are few words about it. Imagine your need to implement an application which is driven by multiple events. For example...