Hello everyone,
I an facing an issue calling a SOAP using ADF. I can make the SOAP API call through the SOAPUI but the same is not working when I am calling it from the ADF pipeline.
Below is the body:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v2="http://xmlns.oracle.com/oxp/service/v2">;
<soapenv:Header/>
<soapenv:Body>
<v2:scheduleReport>
<v2:scheduleRequest>
<v2:deliveryChannels>
<v2:ftpOptions>
<!--Zero or more repetitions:-->
<v2:item>
<v2:ftpServerName>xxxxxx</v2:ftpServerName>
<v2:ftpUserName>xxxxx</v2:ftpUserName>
<v2:ftpUserPassword>xxxx</v2:ftpUserPassword>
<v2:remoteFile>xxxxxx</v2:remoteFile>
<v2:sftpOption>1</v2:sftpOption>
</v2:item>
</v2:ftpOptions>
</v2:deliveryChannels>
<v2:reportRequest>
<v2:attributeFormat>csv</v2:attributeFormat>
<v2:parameterNameValues>
<v2:listOfParamNameValues>
<!--Zero or more repetitions:-->
<v2:item>
<v2:name>from_date</v2:name>
<v2:values>
<v2:item>01-03-2022 14:20:01</v2:item>
</v2:values>
</v2:item>
<v2:item>
<v2:name>to_date</v2:name>
<v2:values>
<v2:item>02-03-2022 14:20:01</v2:item>
</v2:values>
</v2:item>
</v2:listOfParamNameValues>
</v2:parameterNameValues>
<v2:reportAbsolutePath>xxxxxx</v2:reportAbsolutePath>
<v2:sizeOfDataChunkDownload>1</v2:sizeOfDataChunkDownload>
</v2:reportRequest>
<v2:userJobName>xxxxxxxxxx</v2:userJobName>
</v2:scheduleRequest>
<v2:userID>xxxxx</v2:userID>
<v2:password>xxxxxxx</v2:password>
</v2:scheduleReport>
</soapenv:Body>
</soapenv:Envelope>
I did check a couple of blogs online using the http protocal but does not seem to work.
Please let me know if there is any process I can follow.
Thanks,
Kailash Kota