Join the Manning .NET Daily Drawing!
Until July 17, click here to win a free .NET Ebook every day,
and then win the Complete Manning .NET Library!
We came across an odd little issue where our message schema requires a DateTime value. Using System.DateTime.Now does not come out in the proper format as BizTalk requires the UTC format. UTC format follows something like this: YYYY-MM-DDThhmmss (e.g. 1997-07-12T103508) If you are working with your dates pragmatically as we currently are you can simply use System.DateTime.Now.ToStrin... We are currently working in a message assignment shape to send a response value in the form of a DateTime just ......