Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Content Management (Extended ECM)
API, SDK, REST and Web Services
How do we retrieve the contents of a document?
Tanuj__Gupta_(ruchis_-_(deleted))
Can anyone help me out in fetching the contents of the document so that the contents can be used in my code?say the document is an xml file and i want to fetch the contents of the xml file.the contents fetched are not to be displayed on the screen to the user, rather the contents would be used in my code.They would act as input for my function
Find more posts tagged with
Comments
Thomas_Siebenrock
Hi,you can use the FetchVersion function to download your XML file. After that it is a local file and you can read it normally.If you are using Java you could use dom4j (
http://dom4j.org/)
. dom4j allows you to read, write, navigate, create and modify XML documents.