mapdata += "<?xml version=\"1.0\" encoding=\"gb2312\" ?>";
.......
string path="";
path=Server.MapPath("XMLFile1.xml");
byte[]   SomeBytes=new   byte[1024];   

WebRequest   req = WebRequest.Create    ("http://127.0.01/lianxi/WebForm1.aspx");  
req.Method   =   "GET";   
req.ContentType =  "text/html";
XmlDocument xmldoc1= new XmlDocument();  
//要发送xml的路径.  
xmldoc1.Load(path); 
SomeBytes   =   System.Text.Encoding.UTF8.GetBytes(mapdata);  
req.ContentLength   =   SomeBytes.Length;   
Stream   newStream   =  req.GetRequestStream();
newStream.Write(SomeBytes, 0,SomeBytes.Length);    
newStream.Close();   
Response.Write("发送完毕");   怎么执行到  【req.GetRequestStream();】 就包
【无法发送具有此谓词类型的内容正文。】
高手帮解答一下1!!!