Hello,
I am getting the following error in ReadBinaryString() in SSHData..
"Strings longer than 2147483647 is not supported"
Here is the details on what I am doing.
ConnectionInfo conn = new ConnectionInfo("111.111.111.111", 222, "user", new PasswordAuthenticationMethod("user", "password"));
SftpClient sftp = new SftpClient(conn);
sftp.Connect();
I get the error on the connect call. I am calling a NAT address that maps to a client mainframe as the Host. There is a site 2 site VPN set up. I can connect through Filezilla. 222 is the used port.
Also to note... When I "Resume Next" on the error the SSH source code, the connection appears to be established. That is I can ListDirectory after. Seems to be an issue with the message size but I don't know if the message is telling me something is wrong.
Any suggestions on what I could do would be appreciated.
I am getting the following error in ReadBinaryString() in SSHData..
"Strings longer than 2147483647 is not supported"
Here is the details on what I am doing.
ConnectionInfo conn = new ConnectionInfo("111.111.111.111", 222, "user", new PasswordAuthenticationMethod("user", "password"));
SftpClient sftp = new SftpClient(conn);
sftp.Connect();
I get the error on the connect call. I am calling a NAT address that maps to a client mainframe as the Host. There is a site 2 site VPN set up. I can connect through Filezilla. 222 is the used port.
Also to note... When I "Resume Next" on the error the SSH source code, the connection appears to be established. That is I can ListDirectory after. Seems to be an issue with the message size but I don't know if the message is telling me something is wrong.
Any suggestions on what I could do would be appreciated.