You could read the XML from the request stream. So inside your mypage.aspx:
protected void Page_Load(object sender, EventAgrs e)
{
using (var reader = new StreamReader(Request.InputStream))
{
string xml = reader.ReadToEnd();
// do something with the XML
}
}