Re: UTF Encoding

#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.