New execution result via REST API
Does anybody know how to upload a new execution results via REST API?
http://open-services.net/bin/view/Main/QmExecutionAdapter says that I should use POST to URL https://qmserver:9443/jazz/secure/service/com.ibm.rqm.integration.service.IIntegrationService/executionresults
I try to use RQMUrlUtility to this but I only get 501...
http://open-services.net/bin/view/Main/QmExecutionAdapter says that I should use POST to URL https://qmserver:9443/jazz/secure/service/com.ibm.rqm.integration.service.IIntegrationService/executionresults
I try to use RQMUrlUtility to this but I only get 501...
One answer
501 is "internal server error", which is a catch-all for "something bad happened".
Always start with a "round trip". First, GET an existing Execution Result. Then, PUT it back. That's your baseline sanity check.
Then you can start getting more adventurous. Start with the ER retrieved with the GET and modify some data. PUT it again to validate the XML is correct. Go from there.
Hope that helps.
Regards,
John
Always start with a "round trip". First, GET an existing Execution Result. Then, PUT it back. That's your baseline sanity check.
Then you can start getting more adventurous. Start with the ER retrieved with the GET and modify some data. PUT it again to validate the XML is correct. Go from there.
Hope that helps.
Regards,
John
Does anybody know how to upload a new execution results via REST API?
http://open-services.net/bin/view/Main/QmExecutionAdapter says that I should use POST to URL https://qmserver:9443/jazz/secure/service/com.ibm.rqm.integration.service.IIntegrationService/executionresults
I try to use RQMUrlUtility to this but I only get 501...