From C++ wchar_t to C# char via socket - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T20:42:53Zhttp://stackoverflow.com/feeds/question/945309http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/945309/from-c-wchart-to-c-char-via-socket2From C++ wchar_t to C# char via socketDrahakar2009-06-03T15:05:42Z2009-06-03T15:09:24Z
<p>I am currently building a C++ application that communicate via socket to a C# application.
My C++ app sends wchar_t* via socket.</p>
<p>Here is an overview of what is send :</p>
<pre><code><!-- Normal xml file--
</code></pre>
<p>Here is what I receive on the other side (I do a stream.read to a byte array and use
UTF8Encoding.GetString() to convert the byte array to a readable string)</p>
<pre><code><\0!\0-\0-\0 \0N\0o\0r\0m\0a\0l\0 \0x\0m\0l\0 \0f\0i\0l\0e\0-\0-
</code></pre>
<p>Is it a marshalling problem? What do you say? Why is it 0 extended and why unicode caracter doesn't appear on the C# side?</p>
http://stackoverflow.com/questions/945309/from-c-wchart-to-c-char-via-socket/945321#9453215Answer by Jon Skeet for From C++ wchar_t to C# char via socketJon Skeet2009-06-03T15:07:49Z2009-06-03T15:07:49Z<p>Looks like it's sending UTF-16, not UTF-8, which makes sense - <code>wchar_t</code> is basically a 16-bit type (in Windows), and you're sending it down "raw" as far as I can tell. I suggest that if you're going to convert the data into an <code>XDocument</code> or <code>XmlDocument</code>, you do it with the binary data - the framework knows how to autodetect UTF-16 for XML files (IIRC).</p>
<p>You'll potentially have problems if the XML declaration declares it to be UTF-8 when it's really UTF-16 though.</p>
<p>Alternatively, use suitable encoding classes on the C++ side to <em>genuinely</em> send UTF-8. This would take extra processing time, but usually save bandwidth if that's a consideration.</p>