当前位置: 代码迷 >> ASP.NET >> 【【WebRequest】】 请求,
  详细解决方案

【【WebRequest】】 请求,

热度:6673   发布时间:2013-02-25 00:00:00.0
【【WebRequest】】 请求,在线等!!!!!!!!!!!!!!!!!!
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!!!

------解决方案--------------------------------------------------------
req.Method = "POST ";

*****************************************************************************
欢迎使用CSDN论坛专用阅读器 : CSDN Reader(附全部源代码)

http://www.cnblogs.com/feiyun0112/archive/2006/09/20/509783