I’m trying to invoke the HDL file from the WEBCENTER SERVER through SOAP services into the fusion instance
Below one is the payload which I used :
<soapenv:Envelope xmlns:soapenv=”http://schemas.xmlsoap.org/soap/envelope/” xmlns:ucm=”http://www.oracle.com/UCM”>
<soapenv:Header>
</soapenv:Header>
<soapenv:Body>
<typ:importAndLoadData>
<typ:ContentId>UCMFA04817652</typ:ContentId>
<typ:Parameters>ImportMaximumErrors=100,LoadMaximumErrors=100,LoadConcurrentThreads=8,DeleteSourceFile=N</typ:Parameters>
</typ:importAndLoadData>
</soapenv:Body>
</soapenv:Envelope>
But I’m getting 404 error as response
I’m giving the response below please go through it
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL was not found on this server.</p> </body></html>
Before doing this I had succesfully uploaded the dat file into the WEBCENTER CONTENT SERVER using soap services sucessfully.
Please help me out with this issue.