Загрузка файла: невозможно записать данные в транспортное соединение - PullRequest
1 голос
/ 04 августа 2011

Я использую следующий код для загрузки файла на веб-сервер CE (IIS).Код сервера на 100% надежен.Это периодически работает на некоторых машинах или некоторых целевых коробках WinCE.Когда это терпит неудачу, это немедленно выдает следующее сообщение об ошибке.Спасибо за любой совет, спасибо!

Ошибка

{System.IO.IOException: невозможно записать данные в транспортное соединение: существующее соединение было принудительно закрыто удаленным хостом.---> System.Net.Sockets.SocketException: существующее соединение было принудительно закрыто удаленным узлом в System.Net.Sockets.Socket.Send (буфер Byte [], смещение Int32, размер Int32, SocketFlags socketFlags) в System.Net.Sockets.NetworkStream.Write (буфер Byte [], смещение Int32, размер Int32) --- конец трассировки стека внутренних исключений --- в System.Net.Sockets.NetworkStream.Write (буфер Byte [], смещение Int32,Размер Int32) в System.Net.PooledStream.Write (буфер Byte [], смещение Int32, размер Int32) в System.Net.ConnectStream.InternalWrite (логический асинхронный, буфер Byte [], смещение Int32, размер Int32, обратный вызов AsyncCallback, объектсостояние) в System.Net.ConnectStream.Write (буфер Byte [], смещение Int32, размер Int32) в MUSU.HTTPExtensions.UploadFileEx (String uploadfile, String url, String fileFormName, String contenttype, NameValueCollection querystring, NetworkCredential мандаты)

Код

public static void UploadFileEx(String uploadfile, String url,
                    String fileFormName, String contenttype, NameValueCollection querystring,
                    NetworkCredential credentials)
{
    if (String.IsNullOrEmpty(fileFormName))
        fileFormName = "file";

    if (String.IsNullOrEmpty(contenttype))
        contenttype = "application/octet-stream";

    String postdata = "";

    if (querystring != null)
    {
        if (url.Contains("?")) { postdata = "&"; }
        else { postdata = "?"; }

        foreach (String key in querystring.Keys)
        {
            postdata += key + "=" + querystring.Get(key) + "&";
        }
    }
    Uri uri = new Uri(url + postdata);

    String boundary = "----------" + DateTime.Now.Ticks.ToString("x");
    HttpWebRequest webrequest = (HttpWebRequest)WebRequest.Create(uri);
    if (credentials != null)
        webrequest.Credentials = credentials;
    webrequest.ContentType = "multipart/form-data; boundary=" + boundary;
    webrequest.Method = "POST";
    webrequest.ProtocolVersion = HttpVersion.Version10;
    //webrequest.KeepAlive = false;

    /// Build up the post message header

    StringBuilder sb = new StringBuilder();
    sb.Append("--");
    sb.Append(boundary);
    sb.Append("\r\n");
    sb.Append("Content-Disposition: form-data; name=\"");
    sb.Append(fileFormName);
    sb.Append("\"; filename=\"");
    sb.Append(Path.GetFileName(uploadfile));
    sb.Append("\"");
    sb.Append("\r\n");
    sb.Append("Content-Type: ");
    sb.Append(contenttype);
    sb.Append("\r\n");
    sb.Append("\r\n");

    String postHeader = sb.ToString();
    byte[] postHeaderBytes = Encoding.UTF8.GetBytes(postHeader);

    // Build the trailing boundary string as a byte array

    // ensuring the boundary appears on a line by itself

    byte[] boundaryBytes = Encoding.ASCII.GetBytes("\r\n--" + boundary + "\r\n");

    using (FileStream fileStream = new FileStream(uploadfile, FileMode.Open, FileAccess.Read))
    {
        long length = postHeaderBytes.Length + fileStream.Length + boundaryBytes.Length;
        webrequest.ContentLength = length;

        using (Stream requestStream = webrequest.GetRequestStream())
        {
            // Write out our post header
            requestStream.Write(postHeaderBytes, 0, postHeaderBytes.Length);

            // Write out the file contents
            byte[] buffer = new Byte[checked((uint)Math.Min(4096, (int)fileStream.Length))];
            int bytesRead = 0;
            while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) != 0)
                requestStream.Write(buffer, 0, bytesRead);

            /// Write out the trailing boundary
            requestStream.Write(boundaryBytes, 0, boundaryBytes.Length);
            WebResponse response = webrequest.GetResponse();
        }
    }
}
...