.comment-link {margin-left:.6em;}

Ben Cops

Monday, July 25, 2005

Interesting "gotcha" when working with xs:date fields in BizTalk 2004

Interesting "gotcha" when working with xs:date fields in BizTalk 2004

Done and done - thank god for google again!

Edit: Posting the text of the blog in case it disappears....

What had happened was that the date had been converted to UTC format behind the scenes; From the bizTalk docs (If the datetime format does not specify time zone or UTC format, the time is assumed to be local and is converted to UTC based on the current time zone.)

e.g. Say the date that was passed in was ‘2004-10-26’ when I accessed it by the distinguished property it’s value was ‘2004-10-25 11:00:00’ (UTC-13) - New Zealand timezone… therefore “distinguishedDeliveryDate.ToString("dd/MM/yyyy",System.Globalization.CultureInfo.InvariantCulture)” returned 25/10/2004 instead of what I was looking for 26/10/2004.

The solution:
Convert the datetime back from UTC datetime to local datetime using something similar to:

distinguishedDeliveryDate = distinguishedDeliveryDate.Add(TimeZone.CurrentTimeZone.GetUtcOffset(distinguishedDeliveryDate));

Tuesday, July 19, 2005

Using the BizTalk Assembly Viewer

Using the BizTalk Assembly Viewer

Thursday, July 14, 2005

Comparing XLANG/s and C#

Comparing XLANG/s and C#



A classic blog entry on XLANG - I must have googled into this page a million times...