Read File through generic SOAP API for UCM
Summary
Read File through generic SOAP API for UCMContent
Dear Gurus,
I know I can use the generic SOAP API /idcws/GenericSoapPort?wsdl to download and upload the files into UCM. But I am trying to just read the XML file from UCM directly. How do I do that? Is there a way using generic SOAP API? Or is there any other way?
Thanks!
Ram
Code Snippet
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ucm="http://www.oracle.com/UCM"> <soapenv:Header/> <soapenv:Body> <ucm:GenericRequest webKey="cs"> <ucm:Service IdcService="READ_FILE"> <ucm:Document> <ucm:Field name="dID">133779</ucm:Field> </ucm:Document> </ucm:Service> </ucm:GenericRequest> </soapenv:Body>
0