Hi,
is any one aware of getting the file from Application data, I have a attachment XML as secondary content to EPM Document, I want the XML as File rather than applicationContent and pass the File as a parameter to other method.
Anyone aware of this please add in your comments or suggestions.
Thanks
Solved! Go to Solution.
Hi @JM_10276355
What do you need?
get stream from application data ? or do you need ty save file to Application Data?
There is method that get the file as a InputStream from Application data
here is example
InputStream stream = ContentServerHelper.service.findContentStream(appData);
Also there is method how to save file as a InputStream to the Application Data.
ContentServerHelper.service.updateContent(contentObject, newApplicationData, byteArrayInputStream);
hope this can help
PetrH
Hi @JM_10276355
What do you need?
get stream from application data ? or do you need ty save file to Application Data?
There is method that get the file as a InputStream from Application data
here is example
InputStream stream = ContentServerHelper.service.findContentStream(appData);
Also there is method how to save file as a InputStream to the Application Data.
ContentServerHelper.service.updateContent(contentObject, newApplicationData, byteArrayInputStream);
hope this can help
PetrH