DCSIMG
BizTalkServices - All Your Base Are Belong To Us

All Your Base Are Belong To Us

Mostly .NET internals and other kinds of gory details

Browse by Tags

All Tags » BizTalkServices (RSS)
Pragmatic BizTalk Services: File Sharing Service
In the previous post in this series , we have looked into BizTalk Services, opened an account and got ourselves ready for moving on to actually implementing a ISB service. Our service is a file sharing service, that roughly provides me with the following extremely important capabilities: Let's design the data contracts first: [ DataContract ] class SharedFile { [ DataMember ] public string FileName { get ; set ; } } [ DataContract ] class SharedFileData { [ DataMember ] public SharedFile File...
Pragmatic BizTalk Services: Introduction
A service bus is an architectural style or a service design pattern that provides a level of indirection between multiple cooperating services. This indirection alleviates the differences in message exchange patterns, network protocols, authentication and authorization, and multiple other infrastructure mechanisms. One of the best and shortest descriptions of a service bus is the following: Once a service gets on the bus, anything else on the bus can connect to it. (Jon Flanders and Aaron Skonnard...