11-03-2010 01:02 PM
11-03-2010 01:45 PM
11-03-2010 02:13 PM
11-03-2010 03:53 PM
org.alfresco.module.vti.web.actions.VtiIfHeaderAction-> doPut() should be changed:
Old code:
———————————————————-
// updates changes on the server
try
{
writer.putContent(req.getInputStream());
}
———————————————————
New code:
———————————————————-
// updates changes on the server
try
{
String mimetype = mimetypeService.guessMimetype(documentName);
writer.setMimetype(mimetype);
writer.putContent(req.getInputStream());
}
———————————————————
11-12-2010 11:11 AM
11-23-2010 05:41 AM
11-23-2010 06:21 AM
11-23-2010 07:51 AM
11-23-2010 08:01 AM
11-23-2010 11:01 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.