·
Is there a difference in the way Open Text
stores data in the CFS via API & shows it on Portal. I was able to store data in
CFS via API but it did not show up in the portal.
Request to create CFS directory
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://ws.easylink.com/RequestResponse/2011/01" xmlns:ns1="http://ws.easylink.com/CFSCreateDir/2011/01">
<soapenv:Header>
<ns:Request>
<!--Optional:-->
<ns:SenderKey>****</ns:SenderKey>
<ns:ReceiverKey>https://test2messaging.easylink.com/soap/sync</ns:ReceiverKey>
<!--Optional:-->
<ns:Authentication>
<!--You have a CHOICE of the next 2 items at this level-->
<ns:XDDSAuth>
<ns:RequesterID>***</ns:RequesterID>
<ns:Password>****</ns:Password>
</ns:XDDSAuth>
</ns:Authentication>
<!--Zero or more repetitions:-->
<ns:ResultOption name="?">?</ns:ResultOption>
</ns:Request>
</soapenv:Header>
<soapenv:Body>
<ns1:CFSCreateDirRequest>
<!--Optional:-->
<ns1:SubmitId>*****</ns1:SubmitId>
<ns1:RelativePath>ajeet</ns1:RelativePath>
</ns1:CFSCreateDirRequest>
</soapenv:Body>
</soapenv:Envelope>
My request for uploading data to CFS.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://ws.easylink.com/RequestResponse/2011/01" xmlns:ns1="http://ws.easylink.com/CFSUpload/2011/01">
<soapenv:Header>
<ns:Request>
<!--Optional:-->
<ns:SenderKey>***</ns:SenderKey>
<ns:ReceiverKey>https://test2messaging.easylink.com/soap/sync</ns:ReceiverKey>
<!--Optional:-->
<ns:Authentication>
<!--You have a CHOICE of the next 2 items at this level-->
<ns:XDDSAuth>
<ns:RequesterID>***</ns:RequesterID>
<ns:Password>***</ns:Password>
</ns:XDDSAuth>
</ns:Authentication>
<!--Zero or more repetitions:-->
</ns:Request>
</soapenv:Header>
<soapenv:Body>
<ns1:CFSUploadRequest>
<!--Optional:-->
<ns1:SubmitId>*****</ns1:SubmitId>
<ns1:RelativePath>/ajeet/abc3.html</ns1:RelativePath>
<!--You have a CHOICE of the next 2 items at this level-->
<ns1:FileData format="base64">PEhUTUw+DQo8SEVBRD4NCjxNRVRBIEhUVFAtRVFVSVY9IkNvbnRlbnQtVHlwZSIgQ09OVEVOVD0idGV4dC9odG1sOyBjaGFyc2V0PXdpbmRvd3MtMTI1MiI+DQo8TUVUQSBOQU1FPSJHZW5lcmF0b3IiIENPTlRFTlQ9Ik1pY3Jvc29mdCBXb3JkIDk3Ij4NCj
xUSVRMRT5UaGlzIGlzIGFuIEhUTUwgRmlsZTwvVElUTEU+DQo8L0hFQUQ+DQo8Qk9EWT4NCg0KPEZPTlQgRkFDRT0iQXJpYWwiIFNJWkU9MiBDT0xPUj0iI2ZmMDAwMCI+PFA+VGhpcyBpcyBhbiBIVE1MIEZpbGUuIFRoaXMgbGluZSBpcyByZWQ8L1A+DQoN
CjwvRk9OVD48Rk9OVCBGQUNFPSJBcmlhbCIgU0laRT0yIENPTE9SPSIjMDAwMGZmIj48UD5UaGlzIGxpbmUgaXMgYmx1ZS48L1A+DQoNCjxQPiZuYnNwOzwvUD48L0ZPTlQ+PC9CT0RZPg0KPC9IVE1MPg0K</ns1:FileData>
</ns1:CFSUploadRequest>
</soapenv:Body>
</soapenv:Envelope>