Logo
programming4us
programming4us
programming4us
programming4us
Home
programming4us
XP
programming4us
Windows Vista
programming4us
Windows 7
programming4us
Windows Azure
programming4us
Windows Server
programming4us
Windows Phone
 
Windows Azure

Orchestration Patterns with BizTalk Server : Example

5/23/2011 5:50:35 PM
- Free product key for windows 10
- Free Product Key for Microsoft office 365
- Malwarebytes Premium 3.7.1 Serial Keys (LifeTime) 2019
A project team with Superior Stamping has chosen to expose the Order Fulfillment orchestration as an ASMX Web service. The orchestration receives three different message types grouped into the OrderFulfillmentPort, as shown in Figure 1.
Figure 1. The port definition for the Order Fulfillment orchestration defines three asynchronous operations.


The BizTalk Web services Publishing Wizard is used to create a Web service with three service operations from the port definition. Figure 2 shows the summary page for the ASMX service.

Figure 2. The ASMX infrastructure provides a Web service summary page for the port from Figure 2.

The created Web service embeds the request type from each of the three one-way operations in another XML element with the name of the operation. For example, an XML document for the request of the JobCompletion operation, as defined by the BizTalk message schema, may be created as follows:

Example 1.
<Completion xmlns=
"http://SuperiorStamping.Fulfillment.JobCompletion">
<OrderId xmlns="...">
o-1234
</OrderId>
<CompletedAt xmlns="...">
2011-10-16
</CompletedAt>
</Completion>

Publishing the port as a Web service adds a JobCompletion element around the message, as shown here:

Example 2.
<soap:Body>
<JobCompletion xmlns=
"http:// SuperiorStamping.Fulfillment/Service">
<Completion xmlns=
"http://SuperiorStamping.Fulfillment.JobCompletion">
<OrderId xmlns="...">
o-1234
</OrderId>
<CompletedAt xmlns="...">
2011-10-16
</CompletedAt>
</Completion>
</JobCompletion>
</soap:Body>
Other -----------------
- Orchestration Patterns with BizTalk Server : Process Abstraction and Orchestrated Task Services
- SOA with .NET and Windows Azure : WCF Extensions - WCF Management Tools
- SOA with .NET and Windows Azure : WCF Extensions - WCF Extensibility
- SOA with .NET and Windows Azure : WCF Extensions - WCF Discovery
- Service-Orientation with .NET : Entity Abstraction with a .NET REST Service
- Service-Orientation with .NET : Utility Abstraction with a .NET Web Service
- Service-Orientation with .NET : Service Reusability and the Separation of Concerns
- Service-Orientation with .NET : Service Discoverability
- Service-Orientation with .NET : Exception Shielding
- Service-Orientation with .NET : Service Abstraction & Validation Abstraction
 
 
Top 10
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 2) - Wireframes,Legends
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 1) - Swimlanes
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Formatting and sizing lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Adding shapes to lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Sizing containers
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 3) - The Other Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 2) - The Data Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 1) - The Format Properties of a Control
- Microsoft Access 2010 : Form Properties and Why Should You Use Them - Working with the Properties Window
- Microsoft Visio 2013 : Using the Organization Chart Wizard with new data
 
programming4us
Windows Vista
programming4us
Windows 7
programming4us
Windows Azure
programming4us
Windows Server