Merged V3.0 to HEAD

12197: Fixes to the NT IOCTL call used by desktop actions. ETHREEOH-401, ACT-6025.
  12198: Fixes to the desktop action client side EXE and server side handler. Increased receive buffer size in the client side app. ETHREEOH-401, ACT-6025.
  12256: Fix to asynchronous CIFS receive that causes a Winsock error 0x0 and closes the session. JLAN-59.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12523 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jan Vonka
2008-12-19 18:04:44 +00:00
parent 08676ac665
commit e534978b95
4 changed files with 17 additions and 25 deletions

View File

@@ -204,7 +204,7 @@ public class ContentIOControlHandler implements IOControlHandler
if ( dataBuf.getLength() < IOControl.Signature.length())
throw new IOControlNotImplementedException("Bad request length");
String sig = dataBuf.getString(IOControl.Signature.length(), false);
String sig = dataBuf.getFixedString(IOControl.Signature.length(), false);
if ( sig == null || sig.compareTo(IOControl.Signature) != 0)
throw new IOControlNotImplementedException("Bad request signature");