我用js生成了一个xml包(new ActiveXObject("Microsoft.XMLDOM")),然后用如下代码post给服务器:
Ext.Ajax.request({
    url : url,
    method : 'post',
    success : function(response, opts) {
    },
    failure : function(response, opts) {
    },
    xmlData : xdoc
});服务器的ashx处理程序的头如下:
 public void ProcessRequest(HttpContext context)。我想请问的是:这个ashx的context怎么得到我post的xml包呢?
谢谢!