Bug 44694 - Unable to retrieve SummaryInformation from some Office docs; NoPropertySetStreamException thrown
Summary: Unable to retrieve SummaryInformation from some Office docs; NoPropertySetStr...
Status: RESOLVED FIXED
Alias: None
Product: POI
Classification: Unclassified
Component: HPSF (show other bugs)
Version: 3.0-FINAL
Hardware: PC Windows XP
: P2 critical (vote)
Target Milestone: ---
Assignee: POI Developers List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-03-27 11:26 UTC by Dmitry Goldenberg
Modified: 2008-04-01 17:50 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dmitry Goldenberg 2008-03-27 11:26:33 UTC
I get this on some Office docs, a specific PPT doc to reproduce this is attached.

What I do is this:

POIFSFileSystem filesystem = new POIFSFileSystem(fis);
SummaryInformation si = (SummaryInformation) getPropertySet(filesystem, SummaryInformation.DEFAULT_STREAM_NAME, sourcePath);

where getPropertySet does this:

public static PropertySet getPropertySet(POIFSFileSystem filesystem, String setName, String filepath) throws IOException {
    DocumentInputStream dis = filesystem.createDocumentInputStream(setName);
    return PropertySetFactory.create(dis);
....

This causes the following exception:

org.apache.poi.hpsf.NoPropertySetStreamException
	at org.apache.poi.hpsf.PropertySet.<init>(PropertySet.java:252)
	at org.apache.poi.hpsf.PropertySetFactory.create(PropertySetFactory.java:61)

The file doesn't appear corrupt as it opens in PPT just fine.  Also, I dumped out the directory nodes and I see that summary info is in fact there.
Comment 1 Rainer Klute 2008-03-27 23:26:12 UTC
I cannot look into this issue without a document exhibiting the faulty behaviour.
Comment 2 Rainer Klute 2008-04-01 17:50:01 UTC
HPSF now supports property sets without any section. However, such a property set cannot be a summary information or document summary information, because the latters' identification is expected to be in the first section.