[HttpPost]
public ActionResult Foo()
{
using (var reader = new StreamReader(Request.InputStream))
{
string xml = reader.ReadToEnd();
// process the XML
...
}
}
[HttpPost]
public ActionResult Foo()
{
using (var reader = new StreamReader(Request.InputStream))
{
string xml = reader.ReadToEnd();
// process the XML
...
}
}