Hi
I am receiving a xml through a http request. The format is like this "<.?.x.m.l. .v.e.r.s.i.o.n.=.\".1...0.\". .e.n.c.o.d.i.n.g.=.\".u.t.f.-.1.6.\".?.>| etc
Then i'm getting an error: {"Name cannot begin with the '.' character, hexadecimal value 0x2E. Line 1, position 2."}
Trying to convert it to ascii like this, doesn't solve the issue either. byte[] encodedString = Encoding.ASCII.GetBytes(strRequest);
I need it in a utf8 format, without the "dots".
Thx