jcifs-1.2.17 from tgz
authorFelix Schumacher <p0354740@isib001.(none)>
Wed, 6 Aug 2008 14:43:46 +0000 (16:43 +0200)
committerFelix Schumacher <p0354740@isib001.(none)>
Wed, 6 Aug 2008 14:43:46 +0000 (16:43 +0200)
Wed Aug 15 12:47:55 EDT 2007
jcifs-1.2.17 released

A try/catch that was accedentally added in a previous release has been
removed.

README.txt
build.xml
src/jcifs/smb/SmbFile.java

index 17bd96a..15693fc 100644 (file)
@@ -1,3 +1,27 @@
+Wed Aug 15 12:47:55 EDT 2007
+jcifs-1.2.17 released 
+
+A try/catch that was accedentally added in a previous release has been
+removed.
+
+Thu Aug 2 12:00:00 EDT 2007
+jcifs-1.2.16 released
+
+With this release, JCIFS now supports domain-based DFS. With
+domain-based DFS, clients access DFS roots under the DNS domain name
+like \\example.com\dfs\foo so that users do not need to remember server
+names. However, for clients to work with these DFS roots they have to
+be prepared to connect to each domain controller as necessary to find
+the target share and successfully authenticate. JCIFS now includes this
+retry logic. JCIFS will also do something that it seems even Windows
+clients do not do - if you list the shares of a domain (e.g. (new
+SmbFile("smb://example.com/")).listFiles()), JCIFS will build a merged
+list of all shares on all domain controllers.
+
+Note that these changes are fairly significant. Whenever JCIFS tries to
+connect to a server this new logic is used. So if anyone notices anything
+out of the ordinary please report it to the JCIFS mailaing list.
+
 Mon Jul 16 13:26:26 EDT 2007
 jcifs-1.2.15 released
 
index bbd3cc8..78468f7 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -1,7 +1,7 @@
 <project name="jcifs" default="usage" basedir=".">
 
-    <property name="version" value="1.2.16"/>
-    <property name="reldate" value="Aug 2, 2007"/>
+    <property name="version" value="1.2.17"/>
+    <property name="reldate" value="Aug 15, 2007"/>
 
     <target name="usage">
         <echo>
index 8cde3a4..a32e101 100644 (file)
@@ -884,11 +884,7 @@ if (this instanceof SmbNamedPipe) {
     request.desiredAccess |= 0x20000;
     response.isExtended = true;
 }
-try {
             send( request, response );
-} catch( Exception e) {
-    e.printStackTrace();
-}
             f = response.fid;
             attributes = response.extFileAttributes & ATTR_GET_MASK;
             attrExpiration = System.currentTimeMillis() + attrExpirationPeriod;