Hi @gmydoor-2
The result of getRepresentations should contain files for Creo view.
If you need to download them then use
try
{
Representation defaultRep = RepresentationHelper.service.getDefaultRepresentation(cadDoc);
Vector<ApplicationData> vectorOfAppData = ContentHelper.getContentListAll(defaultRep);
Iterator<ApplicationData> appIter = vectorOfAppData.iterator();
while (appIter.hasNext())
{
ApplicationData syAppData = appIter.next();
ContentHolder holder = ContentHelper.service.getContents(defaultRep);
final URL viewContentURL = WVSContentHelper.getViewContentURL(syAppData, holder);
final URL downloadURL = WVSContentHelper.getDownloadURL(syAppData, holder);
}
} catch (WTException | PropertyVetoException e)
{
e.printStackTrace();
}
PetrH