In the file Serializer.cs, in the function WriteLongString, was with an error.
Was cutting the last character of the string.
I modified the function for:
private void WriteLongString(string value)
{
int length = value.Length+1;
byte[] buffer = Encoding.UTF8.GetBytes(value);
WriteUInt32((UInt32)buffer.Length);
Write(buffer, 0, buffer.Length);.
2007-04-16 21:33:27 UTC in AMF.NET