Sendfile not working (General questions)
i just downloaded wodTelnetDLX and try it. My Requirement is to connect to a server using telnet with SSL 3 Support on port 992.after that i need to send and receive file from and to server.Using wodTelnetDLX i can connect to the server and can send and receive data using send and receive methods.When i get the Upload command from server to send file i call the sendfile method.So TransferStart Event is fired but after that TransferProgress event doesnt arise as it should be. why its not working? my code is as below:
Private Sub Telnet1_PromptReceived()
Dim PromptStr As String
PromptStr = Telnet1.Prompt
Select Case PromptStr
Case login:
Telnet1.Send xyz & vbCr
Telnet1.Prompt = Password:
Case Password:
Telnet1.Send abc & vbCr
Telnet1.Prompt = Enter your choice:
Case Enter your choice:
Telnet1.Send 2 & vbCr
Telnet1.Prompt = Do you want to send a file? Y/[N]:
Case Do you want to send a file? Y/[N]:
Telnet1.Send y & vbCr
Telnet1.Prompt = **B010000012f4ced
Case **B010000012f4ced '''''file upload command from server
Telnet1.SendFile ZMODEM, c:abc.txt ,true
Telnet1.Prompt = Enter your choice:
End Select
End Sub
Complete thread:
- Sendfile not working - kirti_masrani, 2005-07-16, 11:50
- Re: Sendfile not working - wodSupport, 2005-07-16, 17:08
- Re: Sendfile not working - kirti_masrani, 2005-07-18, 06:26
- Re: Sendfile not working - wodSupport, 2005-07-21, 00:56
- Re: Sendfile not working - Premila Jacob, 2007-05-24, 18:20
- Re: Sendfile not working - wodDamir, 2007-05-24, 18:29
- Re: Sendfile not working - Premila Jacob, 2007-05-24, 18:20
- Re: Sendfile not working - wodSupport, 2005-07-21, 00:56
- Re: Sendfile not working - kirti_masrani, 2005-07-18, 06:26
- Re: Sendfile not working - wodSupport, 2005-07-16, 17:08