After RQM update to 4.0.2 .status of test case execution is not showing in the RQM GUI. before update it is showing something like "Completed" or "Failed".
After RQM update to 4.0.2 .status of test case execution is not showing in the RQM GUI. before update it is showing something like "Completed" or "Failed".
I have checked the code. Its returning "responseCode" as not equal to "200".and exception is throwing.Pls refer below code.
RQMConnector.RQMConnectorResponse testexecutionrecordResponse = arg1.get (IRQMHandler.RQMObjectType.testexecutionrecord.getURLIdentifier () + "/" + arg0);
int responseCode = testexecutionrecordResponse.getResponseCode ();
if (responseCode == 404) {
return testexecutionrecordHandler;
}
/**
* Ensure valid server response
*/
if (responseCode != 200) {//other than 404 and 200.
throw new RQMConnectorException (serverErrorString, RQMConnectorException.ExceptionCode.SERVER_ERROR);
}
Comments
Dev K
Jun 06 '13, 7:04 a.m.We are getting response code as "500" .Internal Server Error.. Can any one please help us.It's bit urgent.
Piotr Aniola
Jun 06 '13, 9:58 a.m.can you post a Firebug trace?
Plese include the ?debug=true paramater
https://jazz.net/wiki/bin/view/Main/WorkItemsWebDebugging
Dev K
Jun 10 '13, 2:09 a.m.Hi Piotr, Please find the qm.log file .
Dev K
Jun 10 '13, 2:10 a.m.i have just providing the few lines. Please let me know if you need other content also.