by community-syndication | Sep 3, 2014 | BizTalk Community Blogs via Syndication
This was one of those very frustrating errors that had a very simple solution. I had an orchestration that was dynamically loading a map using a Fully Qualified Name (FQN) that is stored in BRE. The exception looked like this:
{ORCHESTRATION_NAME}encountered an error: Object reference not set to an instance of an object.
at Microsoft.XLANGs.Core.Service.ApplyTransform(Type mapRef, Object[] […]
Blog Post by: Dan Field
by community-syndication | Sep 3, 2014 | BizTalk Community Blogs via Syndication
Although there are several posts about the different type of Context Properties, they do not explain the most important differences in full.
Blog Post by: AxonOlympus
by community-syndication | Sep 3, 2014 | BizTalk Community Blogs via Syndication
BizTalk Health Monitor is a snap-in, basically it’s the same of BizTalk MsgBoxViewer tool that we used monitor a BizTalk environment by gathering all information of a BizTalk group and detecting any issues, non-critical or critical warnings to detect any potential problems in advance, but in this case is integrated more closely with the BizTalk […]
Blog Post by: Sandro Pereira
by community-syndication | Sep 3, 2014 | BizTalk Community Blogs via Syndication
SQL Server Query to Find Column from all the Tables of Database: http://blog.sqlauthority.com/2008/08/06/sql-server-query-to-find-column-from-all-tables-of-database/ SELECT t.name AS table_name, SCHEMA_NAME(schema_id) AS schema_name, c.name AS column_name FROM sys.tables AS t INNER JOIN sys.columns c ON t.OBJECT_ID = c.OBJECT_ID WHERE c.name LIKE ‘%PartofColumnName%’ ORDER BY schema_name, table_name; 
Blog Post by: vijaymstech
by community-syndication | Sep 2, 2014 | BizTalk Community Blogs via Syndication
Microsoft provides a usefultutorial (located here)for running a TFS Continuous Delivery configuration, and automatically publishing to Azure. This tutorial, while instructive, is somewhat out of date, and it may be usefulto have a more personalized experience of building such a continuous deployment.
As may be the case for others, the TFS server used for running automated […]
Blog Post by: Stephen Kimble
by community-syndication | Sep 1, 2014 | BizTalk Community Blogs via Syndication
There is much to consider when deciding on a timepiece. A watch is just something worn around the wrist that can accurately keep time. In times past, watches were predominately residing in the pocket particularly doing the early half of the 20th century. Not all watches are reasonable quality even though increased functions stay a […]
Blog Post by: Kim Stevens
by community-syndication | Sep 1, 2014 | BizTalk Community Blogs via Syndication
People love to wear Swiss watches as a result of style and their class. This almost certainly the major reasons why they are understood as one of the most well liked fashion accessories. There may be anyone who does not wear watches. People do not take Swiss watches only an item in their collection. But,cheap […]
Blog Post by: Kim Stevens
by community-syndication | Sep 1, 2014 | BizTalk Community Blogs via Syndication
Three concepts come with big data : structured,semi structured and unstructured data. Structured Data For geeks and developpers (not the same things ^^) Structured data is very banal. It concerns all data which can be stored in database SQL in table with rows and columns. They have relationnal key and can be easily mapped into […]
Blog Post by: Jeremy Ronk
by community-syndication | Aug 31, 2014 | BizTalk Community Blogs via Syndication
For a while we were planning to do an event in Australia, but the magnitude of arranging something on the other side of the planet was daunting and we couldn’t persuade it for a long time. It all changed when Dean Robertson from Mexia consulting attended our popular BizTalk Summit London event this year and […]
The post Experience organising BizTalk Summit 2014, Australia appeared first on BizTalk360 Blog.
Blog Post by: Saravana Kumar
by community-syndication | Aug 29, 2014 | BizTalk Community Blogs via Syndication
In my last post I explained how to implement Unit Testing in Schemas and Maps in BizTalk Server 2013 project within Visual Studio 2012. I also describe that there is an issue when we try to perform Unit Testing in maps and each time we try to run the unit test it give us the […]
Blog Post by: Sandro Pereira