I\'m using this code to perform an HTTP request and parse the XML response:
using (HttpWebResponse resp = req.GetResponse() as HttpWebResponse) { if (resp.St
eventually i found the problem, the problem was with this line t = ms.ReadToEnd(); that cause the stream to lap through the end cause nothing to be after that.
t = ms.ReadToEnd();