by community-syndication | Mar 16, 2008 | BizTalk Community Blogs via Syndication
We are updating a medium/large sized solution from BizTalk 2004 to BizTalk 2006 R2 for a client at the moment. We have run into a couple of interesting and unexpected issues which I’ll describe on this post and the next.The first “issue” we ran into is that the flat file disassembler in BizTalk 2006 and […]
by community-syndication | Mar 16, 2008 | BizTalk Community Blogs via Syndication
[Cross posted from my photo blog] My dear friend and esteemed colleague Kevin DeRudder is hosting a photowalk in his home town: Gent (Belgium), next Saturday (22th of March). And of course everyone is invited: geeks, non-geeks, hobbyists, amateurs, professionals … Kevin has created a nice outline of the day that starts at 2pm, you can find more details in the Photowalk Belgium group on Flickr (discussion here). The agenda is still open so feel free to comment and contribute. When you want to join, just drop a line in the Flickr group discussion (or on this blog if you don’t have a Flickr account). If you miss the 2pm start time: I’ll do my best to post some updates on our location on my twitter account. If you want to join but don’t know any of us, we’ll be the geeky looking group with a higher-than-average-number-of-camera’s-per-person. I’ll bet Kevin will be wearing his famous “I’m blogging this” t-shirt:
If you are wondering; Kevin does have a head. 🙂 I hope to see you all next Saturday in Gent!
by community-syndication | Mar 15, 2008 | BizTalk Community Blogs via Syndication
In this post:
Methods in the helper class
Notes on implementation
Installation Instructions
Problems with the Script Functoid
Examples of Usage
Download the code
Testing the sample map
I’m not sure if this is actually of any use to anyone but if
you do want to use Microsoft’s
Extended XPath Functions from a BizTalk Map (see my previous post) then
I’ve created a wrapper assembly to do this for you.
Method names are the same as the original functions, but
using "_" instead of "-".
by community-syndication | Mar 14, 2008 | BizTalk Community Blogs via Syndication
This bit of documentation explains
that when you want to send a message out over the MQSeries adapter and receive a correlated
response, the typical pattern is to:
-
Generate a value for the MQMD_MsgID property on the outbound message
-
Set the MQMD_CorrelID property on the outbound message to that same generated
value, so that your “Send” shape can initialize a correlation that
refers to the same property that will be present on the message you receive.
-
Send the message (initialize correlation with MQMD_CorrelID)
-
Receive the response (follow correlation with MQMD_CorrelID)
This assume that the destination system is following the usual pattern of setting
the correlation identifier on the reply message equal to the message identifier
on the request message.
Great. Except when you don’t have the luxury of specifying the MQMD_CorrelID
message on the outbound message to a value of your liking. This occurs when
you’re using a CICS bridge, or anything else that requires you to set the
MQMD_CorrelID property to IBM.WMQ.MQC.MQCI_NEW_SESSION (signifying a new session interaction…)
In this case…you might be attempted to use the other pattern suggested here.
In this case, you engage in a solicit-response interaction with the adapter –
where you send your request message and receive an immediate reply that contains a
message with BizTalk_CorrelationID populated as a context property. The message ID
has also been generated for you. You are then supposed to do a “dummy
send” to initialize a correlation based on the BizTalk_CorrelationID property
(sigh), and then follow that correlation with another receive shape that is the actual
transaction response.
To see this in action, see SDK\Samples\AdaptersUsage\MQSeriesAdapter\MQSCorrelationSetOrchestration
under your BizTalk installation, or see the orchestration here.
Unfortunately, this design lends itself to a race condition. The response
coming back can occur prior to your correlation being initialized by the “dummy
send”, resulting in a routing failure. (This isn’t hypothetical
– I just spent some time helping someone debug this issue.)
To work around this, you could try to do content-level correlation instead (i.e. use
a promoted property in your request and response content.)
by community-syndication | Mar 14, 2008 | BizTalk Community Blogs via Syndication
I just wrapped up DevWeek 2008, a wonderful developer conference held each year in London. This show brings in some of the best attendees around…I always really enjoy my time here. I’m sitting in my hotel here decompressing before my long journey home. Here are the demos from my sessions:
- Programming WCF (workshop)
- The ABC’s of Programming WCF
- Message-Oriented WCF
- SOAP, REST, POX, & RSS
- Getting Started with BizTalk Server 2006 R2 (workshop)
Thanks again to the attendees for making this a great event once again, for all the thought provoking questions and discussions along the way. Hope to see you again next year!
I’m going to especially miss the Indian food and running along the Thames each morning. I had some Springbok one night while taking a break from India — quite good actually.
by community-syndication | Mar 14, 2008 | BizTalk Community Blogs via Syndication
I’m slowly recovering from keynoting at MIX last week, and have been digging my way out of backlogged email the last few days. I’m going to try and finish catching up on blog comments this weekend – apologies for the delay in getting back to some of your questions.
To kick-start my blogging again I thought I’d post a new link-listing series. Today’s post is mostly focused on ASP.NET and web related links. I’m going to be doing more Silverlight and WPF posts soon.
ASP.NET
ASP.NET AJAX
ASP.NET MVC
-
Thoughts on ASP.NET MVC Preview 2 and Beyond: Phil Haack from the ASP.NET team has a great post where he talks about the ASP.NET MVC Preview 2 release, as well as some of the features and work that will show up in the next preview drop. One of the major focuses in Preview 3 will be improvements to the testing workflow of controllers.
-
ASP.NET MVC Test Project Integration with NUnit and Rhino Mocks: Joe Cartano from the VS Web Tools team walks-through using some NUnit and Rhino Mocks project templates that he has created. These plug-into the new VS 2008 tools support for ASP.NET MVC, and enable you to easily get a test project started when you create a new ASP.NET MVC application.
.NET
Hope this helps,
Scott
by community-syndication | Mar 14, 2008 | BizTalk Community Blogs via Syndication
I’m slowly recovering from keynoting at MIX last week, and have been digging my way out of backlogged email the last few days. I’m going to try and finish catching up on blog comments this weekend – apologies for the delay in getting back to some of your questions.
To kick-start my blogging again I thought I’d post a new link-listing series. Today’s post is mostly focused on ASP.NET and web related links. I’m going to be doing more Silverlight and WPF posts soon.
ASP.NET
ASP.NET AJAX
ASP.NET MVC
-
Thoughts on ASP.NET MVC Preview 2 and Beyond: Phil Haack from the ASP.NET team has a great post where he talks about the ASP.NET MVC Preview 2 release, as well as some of the features and work that will show up in the next preview drop. One of the major focuses in Preview 3 will be improvements to the testing workflow of controllers.
-
ASP.NET MVC Test Project Integration with NUnit and Rhino Mocks: Joe Cartano from the VS Web Tools team walks-through using some NUnit and Rhino Mocks project templates that he has created. These plug-into the new VS 2008 tools support for ASP.NET MVC, and enable you to easily get a test project started when you create a new ASP.NET MVC application.
.NET
Hope this helps,
Scott
by community-syndication | Mar 13, 2008 | BizTalk Community Blogs via Syndication
I recently got to sit down with some local smart guys here in Minneapolis and we chatted about REST versus SOA. It wasn’t any kind of religious discussion, but it was fun to talk to people who build apps and work with developers every day to hear what they think about this topic.
You can find the audio over on Jeff Brand’s blog. Enjoy!
We do these periodically and are looking for other folks that might be interested in joining, so if you live in the area, contact Jeff through his blog and let him know.
by community-syndication | Mar 13, 2008 | BizTalk Community Blogs via Syndication
In the comments to a previous blog post announcing the Blogical SFTP Adapter I got a question regarding the use of the SFTP Adapter in a Dynamic Send Port . The answer I was forced to give was that the SFTP Adapter did not in its current state support…(read more)
by community-syndication | Mar 13, 2008 | BizTalk Community Blogs via Syndication
I’d like to think that my company is fairly far along the SOA path, but we’ll be spending time this year looking to refine our SOA reference architecture and map our progress on a SOA maturity model. Most of the maturity models out there have some sort of scale which ranges from “starting with basic […]