-
Recent Posts
Recent Comments
- adam on jQuery in a Windows 8 Application. Oh Yes You Can!
- aallen on jQuery in a Windows 8 Application. Oh Yes You Can!
- Iti Sharma on Error: “A correlation may be initialized only once”
- ‘File…New…Metro’ presentation follow-up « Brian Kassay on jQuery in a Windows 8 Application. Oh Yes You Can!
- Jeremy Stein on Using the pass-through pipeline – String versus XmlDocument
Archives
- December 2011
- September 2011
- May 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- July 2010
- April 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- November 2008
- October 2008
- August 2008
- July 2008
- May 2008
- April 2008
- January 2008
- May 2007
- April 2007
- February 2007
Categories
Meta
Monthly Archives: April 2007
Error: “A correlation may be initialized only once”
I have seen this error in two situations. 1. You have two receive or two send shapes that both initialize the same correlation set. This one is easy to figure out. In my case, I have two points in a … Continue reading
Posted in biztalk
4 Comments
EmptyPartException
I did not find very much useful information online about this. It happened because of the following code snippet in an expression shape: Message1 = new System.Xml.XmlDocument(); Message1 was defined with a specific type, but its .NET type is XmlDocument. … Continue reading
Posted in biztalk
Leave a comment
Filters using strings
If you have a filter on a receive shape in an orchestration, use quotes for a hard coded string. For example, I wanted to subscribe to messages with a BTS.Operation of “Operation1″ You must use quotes. However, if you configure … Continue reading
Posted in biztalk
Leave a comment
Using xpath() function — the namespace was not expected
I got this error when using the xpath() function in an expression shape. Turns out I was access a node instead of its contents, then trying to do a toString on the results. http://www.topxml.com/rbnews/BizTalk-Server/re-50155_BizTalk-Server-2006–An-xpath-Function-problem.aspx
Posted in biztalk
Leave a comment