<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: SSHTools (j2ssh) &#8211; Java SSH/SFTP Library</title>
	<atom:link href="http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/</link>
	<description>on technology and snow</description>
	<lastBuildDate>Tue, 17 Nov 2009 19:48:36 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Prasad</title>
		<link>http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/comment-page-2/#comment-1043</link>
		<dc:creator>Prasad</dc:creator>
		<pubDate>Tue, 17 Nov 2009 19:48:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/#comment-1043</guid>
		<description>I am having some problem using j2ssh.I am getting below error.Exception in thread &quot;main&quot; java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
        at com.sshtools.j2ssh.SshClient.(Unknown Source)
MY Code:
SshClient ssh = new SshClient();
            //HostKeyVerification host = new IgnoreHostKeyVerification();
            String hostname = &quot;hostname&quot;;
            String username = &quot;username&quot;;
            String password = &quot;password&quot;;
            ssh.connect(hostname);
            //ssh.connect(&quot;firestar&quot;, new ConsoleKnownHostsKeyVerification());
            PasswordAuthenticationClient pwd = new PasswordAuthenticationClient();
            pwd.setUsername(username);
            pwd.setPassword(password);
            int result = ssh.authenticate(pwd);

Please suggest</description>
		<content:encoded><![CDATA[<p>I am having some problem using j2ssh.I am getting below error.Exception in thread &#8220;main&#8221; java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory<br />
        at com.sshtools.j2ssh.SshClient.(Unknown Source)<br />
MY Code:<br />
SshClient ssh = new SshClient();<br />
            //HostKeyVerification host = new IgnoreHostKeyVerification();<br />
            String hostname = &#8220;hostname&#8221;;<br />
            String username = &#8220;username&#8221;;<br />
            String password = &#8220;password&#8221;;<br />
            ssh.connect(hostname);<br />
            //ssh.connect(&#8221;firestar&#8221;, new ConsoleKnownHostsKeyVerification());<br />
            PasswordAuthenticationClient pwd = new PasswordAuthenticationClient();<br />
            pwd.setUsername(username);<br />
            pwd.setPassword(password);<br />
            int result = ssh.authenticate(pwd);</p>
<p>Please suggest</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gmale</title>
		<link>http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/comment-page-2/#comment-1042</link>
		<dc:creator>gmale</dc:creator>
		<pubDate>Tue, 17 Nov 2009 19:09:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/#comment-1042</guid>
		<description>As mentioned above, it seems J2SSH does not work with SSH1 keys.  I&#039;m getting all kinds of errors like: 

java.lang.NegativeArraySizeException

and 

com.sshtools.j2ssh.transport.TransportProtocolException: The protocol version of the remote computer is not supported!

Does anyone know of other libraries that don&#039;t have this problem?  I&#039;m going to have to find a solution this week.  If I find one, I&#039;ll post back to this blog.</description>
		<content:encoded><![CDATA[<p>As mentioned above, it seems J2SSH does not work with SSH1 keys.  I&#8217;m getting all kinds of errors like: </p>
<p>java.lang.NegativeArraySizeException</p>
<p>and </p>
<p>com.sshtools.j2ssh.transport.TransportProtocolException: The protocol version of the remote computer is not supported!</p>
<p>Does anyone know of other libraries that don&#8217;t have this problem?  I&#8217;m going to have to find a solution this week.  If I find one, I&#8217;ll post back to this blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sunil</title>
		<link>http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/comment-page-2/#comment-1040</link>
		<dc:creator>sunil</dc:creator>
		<pubDate>Tue, 03 Nov 2009 22:08:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/#comment-1040</guid>
		<description>Does anyone have an example of configuring and running the SshDaemon server that is part of the sshtools library? I would like to run it on a port other than 22.</description>
		<content:encoded><![CDATA[<p>Does anyone have an example of configuring and running the SshDaemon server that is part of the sshtools library? I would like to run it on a port other than 22.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Captain Rightworth</title>
		<link>http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/comment-page-2/#comment-1039</link>
		<dc:creator>Captain Rightworth</dc:creator>
		<pubDate>Tue, 03 Nov 2009 20:39:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/#comment-1039</guid>
		<description>JSch does NOT DEPEND ON SWING/AWT. Only the examples they provide do.</description>
		<content:encoded><![CDATA[<p>JSch does NOT DEPEND ON SWING/AWT. Only the examples they provide do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stefanus</title>
		<link>http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/comment-page-2/#comment-1036</link>
		<dc:creator>stefanus</dc:creator>
		<pubDate>Wed, 28 Oct 2009 06:37:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/#comment-1036</guid>
		<description>Hi,
I am using this sshtools sftp lib and I experience it keeps showing &quot;waiting for new messages&quot; inside the log files when I want to download file from SFTP Server. this error happens randomly so its difficult for me to find the caused. Is there any solution for this error ? or ways to avoid this kind of error


Thank you</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am using this sshtools sftp lib and I experience it keeps showing &#8220;waiting for new messages&#8221; inside the log files when I want to download file from SFTP Server. this error happens randomly so its difficult for me to find the caused. Is there any solution for this error ? or ways to avoid this kind of error</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/comment-page-2/#comment-1035</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 27 Oct 2009 03:06:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/#comment-1035</guid>
		<description>Has anybody got past the file size problem, if you transfer a file over 80kb it&#039;s seems to crash the transfer sometimes.</description>
		<content:encoded><![CDATA[<p>Has anybody got past the file size problem, if you transfer a file over 80kb it&#8217;s seems to crash the transfer sometimes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Professor</title>
		<link>http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/comment-page-2/#comment-1033</link>
		<dc:creator>The Professor</dc:creator>
		<pubDate>Fri, 23 Oct 2009 19:11:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/#comment-1033</guid>
		<description>When I try this:
  SshClient ssh = new SshClient();

My java class just dies.  No exceptions, no messages, no fuss it just dies.  Using jre 1.4.2_18

What can I possibly look into?</description>
		<content:encoded><![CDATA[<p>When I try this:<br />
  SshClient ssh = new SshClient();</p>
<p>My java class just dies.  No exceptions, no messages, no fuss it just dies.  Using jre 1.4.2_18</p>
<p>What can I possibly look into?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: amardilo</title>
		<link>http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/comment-page-2/#comment-1032</link>
		<dc:creator>amardilo</dc:creator>
		<pubDate>Wed, 21 Oct 2009 13:35:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/#comment-1032</guid>
		<description>This is really helpful thanks for posting this.

Do you know if there is there a way to authenticate with a public and private key and can you set it to automatically accept host files and keys?</description>
		<content:encoded><![CDATA[<p>This is really helpful thanks for posting this.</p>
<p>Do you know if there is there a way to authenticate with a public and private key and can you set it to automatically accept host files and keys?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg S.</title>
		<link>http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/comment-page-2/#comment-1031</link>
		<dc:creator>Greg S.</dc:creator>
		<pubDate>Mon, 19 Oct 2009 21:49:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/#comment-1031</guid>
		<description>This was so helpful, Dave!
Thank you so much!</description>
		<content:encoded><![CDATA[<p>This was so helpful, Dave!<br />
Thank you so much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alei</title>
		<link>http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/comment-page-2/#comment-1029</link>
		<dc:creator>alei</dc:creator>
		<pubDate>Wed, 14 Oct 2009 10:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.spindriftpages.net/blog/dave/2007/11/27/sshtools-j2ssh-java-sshsftp-library/#comment-1029</guid>
		<description>Thank you for the post.</description>
		<content:encoded><![CDATA[<p>Thank you for the post.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
