SVN r562
SVN-Revision: r562
This commit is contained in:
@@ -67,6 +67,9 @@ namespace Lskj.Util
|
||||
break;
|
||||
}
|
||||
httpWebRequest.ContentLength = byteRequest.Length;
|
||||
Stream stream = httpWebRequest.GetRequestStream();
|
||||
stream.Write(byteRequest, 0, byteRequest.Length);
|
||||
stream.Close();
|
||||
}
|
||||
else if (pmsDic != null)
|
||||
{
|
||||
@@ -89,10 +92,10 @@ namespace Lskj.Util
|
||||
break;
|
||||
}
|
||||
httpWebRequest.ContentLength = byteRequest.Length;
|
||||
Stream stream = httpWebRequest.GetRequestStream();
|
||||
stream.Write(byteRequest, 0, byteRequest.Length);
|
||||
stream.Close();
|
||||
}
|
||||
Stream stream = httpWebRequest.GetRequestStream();
|
||||
stream.Write(byteRequest, 0, byteRequest.Length);
|
||||
stream.Close();
|
||||
|
||||
httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse();
|
||||
Stream responseStream = httpWebResponse.GetResponseStream();
|
||||
|
||||
Reference in New Issue
Block a user