Home Page › Forums › BizTalk 2004 – BizTalk 2010 › UTF Encoding › Re: UTF Encoding
August 24, 2010 at 8:30 AM
#25728
Hi Wolggang,
Thanks a lot for the reply. I am using VS 2005 and here I couldn’t find the field called “Code Page” in the property of the <schema>.
But i still managed to solve the problem, I was using a receive pipeline to remove the namespace. There I add the below line.
Now its working for me.
byte[] outBytes = System.Text.Encoding.Unicode.GetBytes(outputMessageText.ToString());
Thanks a lot.