Error in line Sftp.Connect (wodSFTP / wodSFTP.NET / wodSFTPdll)
Hi. Do you know something about this error? What should be the cause?
Initializing wodSFTP
Connecting...
WeOnlyDo.wodSFTPCom.1 error 'ffff80eb'
You system did not provide string representation of the error.
/sftp.asp, line 28
I´m using the sftp samples
<%@ Language = "VBScript" %>
<%
Dim Sftp
%>
<html>
<font face="Verdana" size=1>
<%
If cstr(Request.QueryString("Ready")) = "" Then
%>
This sample shows how to use wodSFTP in blocking environment in ASP.<p>
Since this is probably a demo version, nag screen would be shown for 15 seconds, but you don't see it in
ASP.<p>
I didn't create instance of wodSFTP yet because of that pause. When you're ready to see how this works,
click <a href="?ready=TRUE">here</a>. Wait 15 seconds after you do so, please.
<%
else
if Request.Form("connect") = "1" then
Response.Write ("Initializing wodSFTP<BR>")
Response.Flush
set Sftp = Server.CreateObject("WeOnlyDo.wodSFTPCom.1")
Sftp.Hostname = Request.Form("Hostname")
Sftp.Login = Request.Form("Login")
Sftp.Password = Request.Form("Password")
Sftp.Blocking = 1
Response.Write ("Connecting...<BR>")
Response.Flush
Sftp.Connect
Response.Write ("Getting directory listing...<BR>")
Response.Flush
Sftp.ListDir "/"
Sftp.Disconnect
Response.Write ("All done!<BR><FONT FACE=Courier size=3><PRE>")
Response.Write (Sftp.ListItem)
Response.Write("</PRE></FONT>")
Response.Flush
set Sftp = Nothing
else
set Sftp = CreateObject("WeOnlyDo.wodSFTPCom.1")
' for no reason, to kill 15sec delay
set Sftp = Nothing
%>
This sample will connect to remote server and will show you list of /tmp directory on the server.</p>
<FORM method="POST" action="?READY=true">
Enter hostname here: <INPUT type=text name=hostname><BR>
Enter your login here: <INPUT type=text name=login><BR>
Enter your password here: <INPUT type=text name=password><BR>
<input type=hidden name=connect value="1">
<input type=submit>
</FORM>
<%
End If
End If
%>
</html>
We are using the WeOnlyDo version 3.3.2
Regards