Posts

Showing posts from April, 2013

BizTalk Server Glossary – updated with ESB Toolkit terms

  When i saw the BizTalk Glossary ( http://social.technet.microsoft.com/wiki/contents/articles/16653.biztalk-server-glossary.aspx ), and an excellent post on the ESB Toolkit ( http://vikasbhardwaj15.blogspot.nl/2013/04/understanding-biztalk-esb-toolkit.html ), i felt the urge to update the glossary with the ESB Toolkit aspects, as these are now an integral part of the BizTalk installation. I’ve added some terms (Itinerary, Itinerary-Service, Resolver, BRI, BRE, On-Ramp) with my own knowlegde and information on the aforementioned blog, hoping to contribute a complete glossary. My changes are part of changeset 81. HTH, Sander

Visual Studio 2012–changes necessary to start doing your work

Image
  Disclaimer: This post does not take any company security policies into account, actions suggested are merely provided to support getting things done as a developer…having said that What’s the first thing you probably will encounter when (implicitly) converting an existing solutions from an older Visual studio… Security You must ensure that you can do your work….especially when converting solutions from an older Visual studio version, it’s very annoying that solution will be migrated but are not able to change properties in projects etc. Example of Zen demoter…..Changing the read-only bit from solutions (e.g. downloaded sourcecode); How to start you work…and increase your Zen level? Change User Access Control Note: Personal judgement is necessary to determine whether this should be done! Run Visual Studio as an administrator You can do this by changing a property in the visual studio shortcut. Now you can start doing your work  

Welcome to cloud computing!, It’s called Windows Azure Table storage

Image
I’m following the well written course Windows Azure architect ( http://www.windowsazurearchitect.com ), it provides the training as if you’re following the training of a couple of employees at company X. It’s written in a very interactive way. Mostly after each section/explanation, the ‘employees’ have some ‘smart’ comments/questions..…after reading the section on table storage, i couldn’t help laughing when it involved creating table storage by code; client.CreateTable("demoTable"); “Developer” puts on an unhappy face….. “But this is not a real Create Table statement”, he says. “There‟s just the table name and nothing about the column names, the column data types, or column constraints such as null and not null.”? “Trainer” gives him a broad smile; “Welcome to cloud computing!” he says. “It’s called Windows Azure Table Storage!”

BizTalk + ESB Toolkit–flat file debatching

Image
    Problem (identfied with: BizTalk 2010 / ESB Toolkit 2.1 ) The ESB Toolkit is a set of components and artefacts which provide Enterprise service bus functionality on top of BizTalk. One of the capabilities of BizTalk is debatching (Xml, Flat files). During debatching a single message is debatched into several messages (e.g. an OrderBatch containing multiple orders). The default behavior is that each message will be placed onto the messagebox for additional processing. In a business context it is desired that the entire batch is processed before the flat file is removed, thus Recoverable Interchange Processing should be set to FALSE.   In an ESB Toolkit context it is possible to follow the same approach, but not only debatch the message, but also start of a new process using an itinerary. This means that each individual messages leads to a new process.   In this case, the disassembler and the ESB Dispatcher are required to interoperate with eachother. This behavior is how