BI Publisher WebServices - createReport Method - via pl/sql [message #618954] |
Wed, 16 July 2014 14:27 |
|
mv_bip
Messages: 1 Registered: July 2014
|
Junior Member |
|
|
I need to create a report via WebServices - createReport method and execute everything from pl/sql.
I have the expected SOAP envelope to make the call though I have some issue with some parameters (marked with ???).
Here are the details for the three parameters:
<v2:dataModelURL>???</v2:dataModelURL>
I have entered: /DEV/Data Models/myrep1.xdm though no directory is created.
<v2:templateData>???</v2:templateData>
<v2:XLIFFData>???</v2:XLIFFData>
Both parameters are byte[] datatype and I am wondering how should I enter that info.
I test the SOAP envelope in two ways : SOAPUI and pl/sql.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v2="http://xmlns.oracle.com/oxp/service/v2">
<soapenv:Header/>
<soapenv:Body>
<v2:createReport>
<v2:reportName>myrep1.xdo</v2:reportName>
<v2:folderAbsolutePathURL>/DEV/Reports</v2:folderAbsolutePathURL>
<v2:dataModelURL>???</v2:dataModelURL>
<v2:templateFileName>myrep1tmp.rtf</v2:templateFileName>
<v2:templateData>???</v2:templateData>
<v2:XLIFFFileName></v2:XLIFFFileName>
<v2:XLIFFData>???</v2:XLIFFData>
<v2:updateFlag>true</v2:updateFlag>
<v2:userID>weblogic</v2:userID>
<v2:password>weblogicpassword</v2:password>
</v2:createReport>
</soapenv:Body>
</soapenv:Envelope>
I appreciate any samples or ideas.
Thank you,
M M
|
|
|