desconexió ftp

03/07/2006 - 09:30 por Quim | Informe spam
Hola

He utilizado el ejemplo de la documentació de VS para crear una clase que
envia i recibe ficheros mediante FTP.

Funciona correctamente, salvo que cuando finaliza el envio o recepción no
desconecta del servidor. Hay que cerrar la aplicación y volver
ha entrar para repetir un envio o recepción.

Este es un ejemplo del envio de ficheros. Alguien puede decirme que estoy
haciendo mal.

Gracias

Saludos

public void EnviarFichero(string[] fileName)
{
System.IO.Stream ficheroftp = null;
System.IO.FileStream fileStream = null;
System.Net.FtpWebResponse resp = null;
System.Net.FtpWebRequest ftp;

try
{
for (int i = 0; i <= fileName.Length - 1; i++)
{
//ftp =
((System.Net.FtpWebRequest)System.Net.WebRequest.Create("ftp://localhost/"+
fileName),
// Path.GetFileName( fileName[i]) ));

ftp =
((System.Net.FtpWebRequest)System.Net.WebRequest.Create(Global.Global.IpServidorFtp
+
Path.GetFileName( fileName[i]) ));

//Necesario para autentificarse en el servidor si no
permite conexiones anónimas
System.Net.CredentialCache credCache = new
System.Net.CredentialCache();

credCache.Add(new Uri(Global.Global.IpServidorFtp),
"Basic",
new
System.Net.NetworkCredential(Global.Global.UsuariFtp,
Global.Global.ClauFtp));

ftp.Credentials = credCache;
//******************************

ftp.Method =
System.Net.WebRequestMethods.Ftp.UploadFile;

ftp.Proxy = null;

ficheroftp = ftp.GetRequestStream();
fileStream = System.IO.File.Open(fileName[i],
System.IO.FileMode.Open, System.IO.FileAccess.Read);

long tamany;
tamany = fileStream.Length;

this.PanelInfo.Text = "Enviando...";
this.PanelProgress.Value = 0;
this.PanelProgress.Maximum = ((int)tamaño);

byte[] buffer = new byte[1025];
int bytesLeidos;
while (true)
{
bytesLeidos = fileStream.Read(buffer, 0,
buffer.Length);
OnShowProgres(bytesLlegits);
this.PanelProgress.Value += bytesleidos;
this.Refresh();
if (bytesLlegits == 0)
{
break;
}
ficheroftp.Write(buffer, 0, bytesLlegits);
}
this.PanelInfo.Text = "Fichero enviado";

ficheroftp.Close();

resp = ((System.Net.FtpWebResponse)ftp.GetResponse());
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
if( resp != null )
{
resp.Close();
}
if( fileStream != null )
{
fileStream.Close();
}
if( ficheroftp != null )
{
ficheroftp.Close();
}
}
}

Preguntas similare

Leer las respuestas

#1 Vyacheslav Popov
03/07/2006 - 17:44 | Informe spam
Quim, sospecho de que en el bloque finally no se cierran bien las conexiones
abiertas, es decir, que las condiciones "if( ficheroftp != null )" y " if(
resp != null )" siempre son falsos, lo mismo con la otra condición.
finally
{
if( resp != null ) // siempre falso
{
resp.Close();
}
if( fileStream != null )
{
fileStream.Close();
}
if( ficheroftp != null ) // siempre falso
{
ficheroftp.Close();
}
}

Saludos.

"Quim" escribió en el mensaje
news:
Hola

He utilizado el ejemplo de la documentació de VS para crear una clase que
envia i recibe ficheros mediante FTP.

Funciona correctamente, salvo que cuando finaliza el envio o recepción no
desconecta del servidor. Hay que cerrar la aplicación y volver
ha entrar para repetir un envio o recepción.

Este es un ejemplo del envio de ficheros. Alguien puede decirme que estoy
haciendo mal.

Gracias

Saludos

public void EnviarFichero(string[] fileName)
{
System.IO.Stream ficheroftp = null;
System.IO.FileStream fileStream = null;
System.Net.FtpWebResponse resp = null;
System.Net.FtpWebRequest ftp;

try
{
for (int i = 0; i <= fileName.Length - 1; i++)
{
//ftp =
((System.Net.FtpWebRequest)System.Net.WebRequest.Create("ftp://localhost/"+
fileName),
// Path.GetFileName( fileName[i]) ));

ftp =
((System.Net.FtpWebRequest)System.Net.WebRequest.Create(Global.Global.IpServidorFtp
+
Path.GetFileName( fileName[i]) ));

//Necesario para autentificarse en el servidor si no
permite conexiones anónimas
System.Net.CredentialCache credCache = new
System.Net.CredentialCache();

credCache.Add(new Uri(Global.Global.IpServidorFtp),
"Basic",
new
System.Net.NetworkCredential(Global.Global.UsuariFtp,
Global.Global.ClauFtp));

ftp.Credentials = credCache;
//******************************

ftp.Method =
System.Net.WebRequestMethods.Ftp.UploadFile;

ftp.Proxy = null;

ficheroftp = ftp.GetRequestStream();
fileStream = System.IO.File.Open(fileName[i],
System.IO.FileMode.Open, System.IO.FileAccess.Read);

long tamany;
tamany = fileStream.Length;

this.PanelInfo.Text = "Enviando...";
this.PanelProgress.Value = 0;
this.PanelProgress.Maximum = ((int)tamaño);

byte[] buffer = new byte[1025];
int bytesLeidos;
while (true)
{
bytesLeidos = fileStream.Read(buffer, 0,
buffer.Length);
OnShowProgres(bytesLlegits);
this.PanelProgress.Value += bytesleidos;
this.Refresh();
if (bytesLlegits == 0)
{
break;
}
ficheroftp.Write(buffer, 0, bytesLlegits);
}
this.PanelInfo.Text = "Fichero enviado";

ficheroftp.Close();

resp = ((System.Net.FtpWebResponse)ftp.GetResponse());
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
if( resp != null )
{
resp.Close();
}
if( fileStream != null )
{
fileStream.Close();
}
if( ficheroftp != null )
{
ficheroftp.Close();
}
}
}

Respuesta Responder a este mensaje
#2 Quim
03/07/2006 - 19:31 | Informe spam
Hola

Lo seguí con el depurador y los cierra todos.

???
Gracias.
.


"Vyacheslav Popov" escribió en el
mensaje news:
Quim, sospecho de que en el bloque finally no se cierran bien las
conexiones abiertas, es decir, que las condiciones "if( ficheroftp !=
null )" y " if( resp != null )" siempre son falsos, lo mismo con la otra
condición.
finally
{
if( resp != null ) // siempre falso
{
resp.Close();
}
if( fileStream != null )
{
fileStream.Close();
}
if( ficheroftp != null ) // siempre falso
{
ficheroftp.Close();
}
}

Saludos.

"Quim" escribió en el mensaje
news:
Hola

He utilizado el ejemplo de la documentació de VS para crear una clase que
envia i recibe ficheros mediante FTP.

Funciona correctamente, salvo que cuando finaliza el envio o recepción no
desconecta del servidor. Hay que cerrar la aplicación y volver
ha entrar para repetir un envio o recepción.

Este es un ejemplo del envio de ficheros. Alguien puede decirme que estoy
haciendo mal.

Gracias

Saludos

public void EnviarFichero(string[] fileName)
{
System.IO.Stream ficheroftp = null;
System.IO.FileStream fileStream = null;
System.Net.FtpWebResponse resp = null;
System.Net.FtpWebRequest ftp;

try
{
for (int i = 0; i <= fileName.Length - 1; i++)
{
//ftp =
((System.Net.FtpWebRequest)System.Net.WebRequest.Create("ftp://localhost/"+
fileName),
// Path.GetFileName( fileName[i]) ));

ftp =
((System.Net.FtpWebRequest)System.Net.WebRequest.Create(Global.Global.IpServidorFtp
+
Path.GetFileName( fileName[i]) ));

//Necesario para autentificarse en el servidor si no
permite conexiones anónimas
System.Net.CredentialCache credCache = new
System.Net.CredentialCache();

credCache.Add(new Uri(Global.Global.IpServidorFtp),
"Basic",
new
System.Net.NetworkCredential(Global.Global.UsuariFtp,
Global.Global.ClauFtp));

ftp.Credentials = credCache;
//******************************

ftp.Method =
System.Net.WebRequestMethods.Ftp.UploadFile;

ftp.Proxy = null;

ficheroftp = ftp.GetRequestStream();
fileStream = System.IO.File.Open(fileName[i],
System.IO.FileMode.Open, System.IO.FileAccess.Read);

long tamany;
tamany = fileStream.Length;

this.PanelInfo.Text = "Enviando...";
this.PanelProgress.Value = 0;
this.PanelProgress.Maximum = ((int)tamaño);

byte[] buffer = new byte[1025];
int bytesLeidos;
while (true)
{
bytesLeidos = fileStream.Read(buffer, 0,
buffer.Length);
OnShowProgres(bytesLlegits);
this.PanelProgress.Value += bytesleidos;
this.Refresh();
if (bytesLlegits == 0)
{
break;
}
ficheroftp.Write(buffer, 0, bytesLlegits);
}
this.PanelInfo.Text = "Fichero enviado";

ficheroftp.Close();

resp = ((System.Net.FtpWebResponse)ftp.GetResponse());
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
if( resp != null )
{
resp.Close();
}
if( fileStream != null )
{
fileStream.Close();
}
if( ficheroftp != null )
{
ficheroftp.Close();
}
}
}





email Siga el debate Respuesta Responder a este mensaje
Ads by Google
Help Hacer una preguntaRespuesta Tengo una respuesta
Search Busqueda sugerida