jcifs-0.7.17 from tgz
authorFelix Schumacher <p0354740@isib001.(none)>
Wed, 6 Aug 2008 14:10:20 +0000 (16:10 +0200)
committerFelix Schumacher <p0354740@isib001.(none)>
Wed, 6 Aug 2008 14:10:20 +0000 (16:10 +0200)
Tue Dec 23 03:43:15 EST 2003
jcifs-0.7.17 released

JCIFS  will  now suppress the harmess "exception reading from socket input"
message  being  written  to  the log. Specifically when using the NTLM HTTP
Filter under load jCIFS would periodically write exceptions to the log like
the following:

Dec 19 10:45:14.474 - exception reading from socket input: IKOO635<1B>/172.81.13.154
java.net.SocketException: Connection reset
  at java.net.SocketInputStream.read(SocketInputStream.java:168)
  ...

This was occuring because the domain controller is periodically closing the
socket  to the server. This is harmless. JCIFS will automatically reconnect
and proceed as usual.

CHANGES.txt
README.txt
build.xml
src/jcifs/smb/SmbTransport.java

index 2d5e568..5d419e8 100644 (file)
@@ -1,4 +1,21 @@
-Tue Dec  9 18:13:25 EST 2003
+Tue Dec 23 03:43:15 EST 2003
+jcifs-0.7.17 released
+
+JCIFS  will  now suppress the harmess "exception reading from socket input"
+message  being  written  to  the log. Specifically when using the NTLM HTTP
+Filter under load jCIFS would periodically write exceptions to the log like
+the following: 
+
+Dec 19 10:45:14.474 - exception reading from socket input: IKOO635<1B>/172.81.13.154
+java.net.SocketException: Connection reset
+  at java.net.SocketInputStream.read(SocketInputStream.java:168)
+  ...
+
+This was occuring because the domain controller is periodically closing the
+socket  to the server. This is harmless. JCIFS will automatically reconnect
+and proceed as usual. 
+
+Dec  9 18:13:25 EST 2003
 jcifs-0.7.16 released
 
 If  NT  SMBs are not negotiated jCIFS will now use SMB_COM_WRITE as opposed
index 2750947..cd8f416 100644 (file)
@@ -1,3 +1,9 @@
+Tue Dec 23 03:43:15 EST 2003
+jcifs-0.7.17 released
+
+JCIFS  will  now suppress the harmess "exception reading from socket input"
+message  being  written  to  the log.
+
 Tue Dec  9 18:13:25 EST 2003
 jcifs-0.7.16 released
 
index 4846284..508df84 100644 (file)
--- a/build.xml
+++ b/build.xml
        <target name="jar" depends="smb">
                <copy file="src/jcifs/util/mime.map" tofile="build/jcifs/util/mime.map" overwrite="yes"/>
                <copy file="src/jcifs/http/ne.css" tofile="build/jcifs/http/ne.css" overwrite="yes"/>
-               <jar jarfile="jcifs-0.7.16.jar" basedir="build"/>
+               <jar jarfile="jcifs-0.7.17.jar" basedir="build"/>
        </target>
 
        <target name="tgz">
-               <copy todir="dist_tmp/jcifs_0.7.16">
+               <copy todir="dist_tmp/jcifs_0.7.17">
                        <fileset dir="." excludes="ant,**/.*,build,jcifs.prp,**/*.tgz,**/*.zip"/>
                </copy>
-               <tar tarfile="jcifs-0.7.16.tar" basedir="dist_tmp"/>
-               <gzip src="jcifs-0.7.16.tar" zipfile="jcifs-0.7.16.tgz"/>
-               <delete file="jcifs-0.7.16.tar"/>
+               <tar tarfile="jcifs-0.7.17.tar" basedir="dist_tmp"/>
+               <gzip src="jcifs-0.7.17.tar" zipfile="jcifs-0.7.17.tgz"/>
+               <delete file="jcifs-0.7.17.tar"/>
                <delete dir="dist_tmp"/>
        </target>
        <target name="zip">
-               <copy todir="dist_tmp/jcifs_0.7.16">
+               <copy todir="dist_tmp/jcifs_0.7.17">
                        <fileset dir="." excludes="ant,**/.*,build,jcifs.prp,**/*.tgz,**/*.zip"/>
                </copy>
                <fixcrlf srcdir="dist_tmp" cr="add" tab="remove" tablength="4" excludes="**/*.jar,**/*.exe"/>
-               <zip zipfile="jcifs-0.7.16.zip" basedir="dist_tmp"/>
+               <zip zipfile="jcifs-0.7.17.zip" basedir="dist_tmp"/>
                <delete dir="dist_tmp"/>
        </target>
 
index 8f5ce3f..d66a059 100644 (file)
@@ -444,7 +444,9 @@ synchronized( rcv_buf ) {
                                synchronized( this ) {
                                        tryClose( true );
                                }
-                               Log.printStackTrace( "exception reading from socket input: " + address, ioe );
+                               if( ioe.getMessage().startsWith( "Connection reset" ) == false ) {
+                                       Log.printStackTrace( "exception reading from socket input: " + address, ioe );
+                               }
                        }
                }
        }