Fix downloadFile operation to include filename

git-svn-id: https://brutex.net/svn/xservices/trunk@60 e7e49efb-446e-492e-b9ec-fcafc1997a86
tag-20130205r
Brian Rosenberger 2011-05-02 18:08:04 +00:00
parent eed2c21c0f
commit f46296e6dd
1 changed files with 1 additions and 0 deletions

View File

@ -95,6 +95,7 @@ public class FileServiceImpl implements FileService {
"application/binary", is));
AttachmentType t = new AttachmentType();
t.setContent(h);
t.setFilename(res.getAntResource(null).getName());
return t;
}