Hello everyone, I'm developing a project where I need to consume a couple of reports from BI Publisher using OIC. The idea was to consume them via URL. I see there are certain connection services for this, but I'm getting a 500 error. The report URL is: https://domain/xmlpserver/Custom/PruebaBI.xdo. I'm trying to consume it this way: https://domain/xmlpserver/services/rest/v1/reports/L0BDYXRhbG9nL3NoYXJlZC9DdXN0b20vUHJ1ZWJhQkkueGRv, and I've also tried this: https://domain/xmlpserver/services/rest/v1/reports/
json request: {
"reportRequest": {
"reportAbsolutePath": "/Custom/PruebaBI.xdo",
"outputFormat": "csv",
"sizeOfDataChunkDownload": -1
},
"parameterNameValues": {
"item": []
}
}
In all attempts, it returns this:
<!DOCTYPE html><html lang="en-US"><head><meta charset="UTF-8"/><title>HTTP Status 500</title></head><body><h2>Error information</h2>Servlet Name: BIPublisher RESTful Services</br></br>Request URI: /xmlpserver/services/rest/v1/reports/L0BDYXRhbG9nL3NoYXJlZC9DdXN0b20vUHJ1ZWJhQkkueGRv<br><br>Inspect the log file for complete details of this incident.</body></html>
header:
Can you help me by explaining how to consume data from OIC BI Publisher? My user account has the necessary permissions. Thank you.