0
Hi,
String strXML = "0001";
XmlTextReader objTR = new XmlTextReader(new StringReader(strXML));
objTR .Read();
byte[] buffer = new byte[1];
while(objTR .ReadBase64(buffer,0,1) != 0) {
Console.Write(buffer[0]);
}
What exactly do you want to do with the XML once you have received it? Have you tried XmlDataDocument? I use that for most of my XML processing as it gives me a lot more control over accessing individual nodes, or collections of nodes.
Cheers,