mihai_mandis
mihai_mandis

Reputation: 1658

How to download HTML Report from HP ALM Performance Center 11.0 using rest API

I want to download HTML default report for a test run from Performance Center storage (using Rest API). Actually I need just summary.html file.

I was using the following steps in PC 11.5:

However it is not working with Performance Center 11.0. It fails at last step: qccore.general-error Not Found

I guess it is because the path of report was changed.

Can someone tell the path for summary.html for Performance Center 11.0?

Upvotes: 1

Views: 3688

Answers (1)

Shaun Campbell
Shaun Campbell

Reputation: 51

I've been able to have a little bit of success with this. Rather than use the request you are using above I used the following:

http://{server:port}/qcbin/rest/domains/{domain}/projects/{project}/results/{file-id}/logical-storage/

This gave me a zip file, which contained the report inside it.

Upvotes: 2

Related Questions