Got a problem here... If I put the XML file on the server, then I can read it through steamReader, convert to variable and got everything working in the MSSQL database.However, it is required that I send through html POST, and it doesn't work for the code below:\[code\]page.Response.ContentType = "text/xml";StreamReader reader = new StreamReader(page.Request.InputStream);inputString = reader.ReadToEnd();deleteShip(inputString);\[/code\]it seems to me that the above code didn't get the XML that POST from my program. Because for the same code in deleteShip, if I use an xml on the server then it works fine.Is there a way to solve this problem? As long as I can send any string to deleteShip(string s) then I'm happy. The string will be in XML format thoughThanks for the help!