Uses of Class
com.maverick.ssh.ChannelOpenException

Packages that use ChannelOpenException
com.maverick.scp This package contains a Secure Copy (SCP) engine suitable for the lightweight J2SSH Maverick API. 
com.maverick.ssh This package contains a set of general interface contracts for SSH communication that provide the core set of functionality available in both the SSH1 and SSH2 protocol specifications. 
com.maverick.ssh1 This package contains an SSH1 implementation of the com.maverick.ssh interfaces. 
com.maverick.ssh2 This package contains an SSH2 implementation of the com.maverick.ssh interfaces. 
com.sshtools.scp This package contains the SSHTools SCP implementation converted to use the J2SSH Maverick API's SCP engine. 
com.sshtools.sftp This package contains the SSHTools SFTP client converted for use with the J2SSH Maverick API. 
 

Uses of ChannelOpenException in com.maverick.scp
 

Methods in com.maverick.scp that throw ChannelOpenException
 java.io.InputStream ScpClientIO.get(java.lang.String remoteFile)
           Gets a remote file as a java.io.InputStream.
 java.io.InputStream ScpClientIO.get(java.lang.String remoteFile, FileTransferProgress progress)
           Gets a remote file as a java.io.InputStream.
 void ScpClientIO.put(java.io.InputStream in, long length, java.lang.String localFile, java.lang.String remoteFile)
           Uploads a java.io.InputStream to a remote server as a file.
 void ScpClientIO.put(java.io.InputStream in, long length, java.lang.String localFile, java.lang.String remoteFile, FileTransferProgress progress)
           Uploads a java.io.InputStream to a remote server as a file.
 

Uses of ChannelOpenException in com.maverick.ssh
 

Methods in com.maverick.ssh that throw ChannelOpenException
 void Shell.createSession()
          Construct a new scripted session ready for command execution.
 void Shell.createSession(java.lang.String term, int cols, int rows)
          Construct a new scripted session ready for command execution.
 void Shell.initializePrompt()
           
 void Shell.initializeSession(java.lang.String term, int cols, int rows)
           
 SshTunnel SshClient.openForwardingChannel(java.lang.String hostname, int port, java.lang.String listeningAddress, int listeningPort, java.lang.String originatingHost, int originatingPort, SshTransport transport, ChannelEventListener listener)
          Open a TCPIP forwarding channel to the remote computer.
 SshClient SshClient.openRemoteClient(java.lang.String hostname, int port, java.lang.String username)
          Open up an SSH client from the remote machine to another remote server.
 SshClient SshClient.openRemoteClient(java.lang.String hostname, int port, java.lang.String username, SshConnector con)
          Open up an SSH client from the remote machine to another remote server.
 SshSession SshClient.openSessionChannel()
          Open a session on the remote computer.
 SshSession SshClient.openSessionChannel(ChannelEventListener listener)
          Open a session on the remote computer.
 

Uses of ChannelOpenException in com.maverick.ssh1
 

Methods in com.maverick.ssh1 that throw ChannelOpenException
 SshTunnel Ssh1Client.openForwardingChannel(java.lang.String hostname, int port, java.lang.String listeningAddress, int listeningPort, java.lang.String originatingHost, int originatingPort, SshTransport transport, ChannelEventListener listener)
           
 SshClient Ssh1Client.openRemoteClient(java.lang.String hostname, int port, java.lang.String username)
           
 SshClient Ssh1Client.openRemoteClient(java.lang.String hostname, int port, java.lang.String username, SshConnector con)
           
 SshSession Ssh1Client.openSessionChannel()
          Opens the one and only session channel available on an SSH1 connection, calling this method multiple times on the same client instance will return the same session instance.
 SshSession Ssh1Client.openSessionChannel(ChannelEventListener listener)
           
 

Uses of ChannelOpenException in com.maverick.ssh2
 

Methods in com.maverick.ssh2 that throw ChannelOpenException
 Ssh2Channel ChannelFactory.createChannel(java.lang.String channeltype, byte[] requestdata)
          Create an instance of an SSH channel.
 void Ssh2Client.openChannel(Ssh2Channel channel, byte[] requestdata)
          Additional method to open a custom SSH2 channel.
 void Ssh2Client.openChannel(com.maverick.ssh.message.SshAbstractChannel channel)
          Additional method to open a custom SSH2 channel.
 SshTunnel Ssh2Client.openForwardingChannel(java.lang.String hostname, int port, java.lang.String listeningAddress, int listeningPort, java.lang.String originatingHost, int originatingPort, SshTransport transport, ChannelEventListener listener)
           
 SshClient Ssh2Client.openRemoteClient(java.lang.String hostname, int port, java.lang.String username)
           
 SshClient Ssh2Client.openRemoteClient(java.lang.String hostname, int port, java.lang.String username, SshConnector con)
           
 SshSession Ssh2Client.openSessionChannel()
           
 SshSession Ssh2Client.openSessionChannel(ChannelEventListener listener)
           
 Ssh2Session Ssh2Client.openSessionChannel(int windowspace, int packetsize, ChannelEventListener listener)
          Additional method to open a session with SSH2 specific features.
 

Uses of ChannelOpenException in com.sshtools.scp
 

Methods in com.sshtools.scp that throw ChannelOpenException
 void ScpClient.get(java.lang.String localDir, java.lang.String[] remoteFiles, boolean recursive)
           Downloads an array of remote files to the local computer.
 void ScpClient.get(java.lang.String localFile, java.lang.String[] remoteFiles, boolean recursive, FileTransferProgress progress)
           
 void ScpClient.get(java.lang.String localFile, java.lang.String remoteFile, boolean recursive)
           Downloads a remote file onto the local computer.
 void ScpClient.get(java.lang.String localFile, java.lang.String remoteFile, boolean recursive, FileTransferProgress progress)
           
 void ScpClient.put(java.lang.String[] localFiles, java.lang.String remoteFile, boolean recursive)
           Uploads an array of local files onto the remote server.
 void ScpClient.put(java.lang.String[] localFiles, java.lang.String remoteFile, boolean recursive, FileTransferProgress progress)
           Uploads an array of local files onto the remote server.
 void ScpClient.put(java.lang.String localFile, java.lang.String remoteFile, boolean recursive)
           Uploads a local file onto the remote server.
 void ScpClient.put(java.lang.String localFileRegExp, java.lang.String remoteFile, boolean recursive, FileTransferProgress progress)
          pattern matches the files in the local directory using "local" as a glob Regular Expression.
 void ScpClient.putFile(java.lang.String localFile, java.lang.String remoteFile, boolean recursive, FileTransferProgress progress, boolean remoteIsDir)
           
 

Uses of ChannelOpenException in com.sshtools.sftp
 

Constructors in com.sshtools.sftp that throw ChannelOpenException
SftpClient(SshClient ssh)
           
SftpClient(SshClient ssh, int Max_Version)
           Constructs the SFTP client with a given channel event listener.
 



Copyright © 2003-2008 SSHTools LTD. All Rights Reserved.