BizTalk overkill
We have a requirement to construct xml messages to send to various web services on a periodic basis. BizTalk has been proposed to implement this requirement. As this blog makes clear, BizTalk is definitely overkill for most tasks. The setup and administration can be a nightmare and it BizTalk was designed for disconnected systemsheterogenous datacomplex orchestrationsscheduled and event-driven processingMore specifically, it Receiving a message off of a queueWatching the file system for new filesPerforming actions after a specified time interval For most applications, for this small amount ...
Entire Entry

We have a requirement to construct xml messages to send to various web services on a periodic basis.  BizTalk has been proposed to implement this requirement.  As this blog makes clear, BizTalk is definitely overkill for most tasks.  The setup and administration can be a nightmare and it

BizTalk was designed for

  • disconnected systems
  • heterogenous data
  • complex orchestrations
  • scheduled and event-driven processing

More specifically, it

  • Receiving a message off of a queue
  • Watching the file system for new files
  • Performing actions after a specified time interval

For most applications, for this small amount of functionality, it is very cost-prohibitive.  The standard edition is $8,500 and the enterprise edition is 30k.

TODONT: Use a Windows Service just to run a scheduled process

 

Software Good, Investment Bad
Of all possible businesses, I think the Software Business is one of the best. If managed properly, the profit margins can be quite large. The software business is treacherous and risky, but it's a cha ...
Tech Interviews
I think the folks doing tech interviews focus too much on what people know versus what people can do. I learned this lesson in 97 when I was interviewing people for a C++ position with ARINC. I devi ...
SQLite, Local Database
While struggling with a Mimer trigger, the question was asked: What about SQL Svr 2005 Express?Well, the problem is that SQL Server 2005 has a dependency on .NET. This makes the deployment problem as ...