Unable to read transport connection data: A connection from the remote host was forced to terminate

1

I am trying to do a file reading in the "csv" style. After reading it I have to add it to the database, however I get the following error=" Unable to read transport connection data: A remote connection was forced to be terminated by the remote host. > ". I'm reading the file directly from the url. Note: when I do a few repetitions while it works and adds to the bank normally.

            using (var reader = new StreamReader(stream))
            {
                int count = 0;

                while (!reader.EndOfStream)
                {
                    string linha = reader.ReadLine();
                    string[] valores = linha.Split('|');
                    if (count != 0)
                    {   
                        try{
                            DtoProduto produto = new DtoProduto();
                            char[] mychar = { 'B', 'R', 'L', '"' };
                            char[] contra = { '\', '"', '>' };
                            valores[0] = valores[0].Trim(contra);
                            valores[1] = valores[1].Trim(contra);
                            valores[2] = valores[2].Trim(contra);
                            valores[3] = valores[3].Trim(contra);
                            valores[7] = valores[7].Trim(contra);
                            valores[9] = valores[9].Trim(contra);
                            valores[13] = valores[13].Trim(contra);
                            valores[4] = valores[4].Trim(mychar);
                            valores[4] = valores[4].Substring(0, valores[4].IndexOf('.') + 1);

                            decimal preco = decimal.Parse(valores[4]);
                            string categoria = valores[13].Substring(0, valores[13].IndexOf(">") - 1);
                            produto.Id = int.Parse(valores[1]);
                            produto.IdBrand = 4;
                            produto.IdProdutoIntegracao2 = valores[0];
                            produto.Nome = valores[2];
                            produto.Descricao = valores[3];
                            produto.UrlFoto = valores[7];
                            produto.UrlProduto = valores[9];
                            produto.Preco = preco;
                            produto.Situacao = EnSituacaoProduto.Ativo;
                            produto.Categorias = ObterCategorias(categoria);

                            List<int> genero = new List<int>();

                            if (valores[23].ToLower() != "adult")
                            {
                                genero.Add(3);
                            }
                            if (valores[22].ToLower() == "unisex")
                            {
                                genero.Add(1);
                                genero.Add(2);
                            }else if (valores[22].ToLower() == "mulher") {
                                genero.Add(2);
                            } else {
                                genero.Add(2);
                            }
                            produto.Generos = genero.ToArray();

                            Listproduto.Add(produto);
                        }
                        catch (Exception ex)
                        {
                            string nomeArquivo = AppDomain.CurrentDomain.BaseDirectory + @"uploads\" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".txt";
                            StreamWriter log = new StreamWriter(nomeArquivo);
                            log.WriteLine("Erro ao salvar produto " + linha);
                            log.Close();
                        }
                    }

                    count++;
                }
    
asked by anonymous 22.02.2018 / 19:49

0 answers