I am trying to open a new defect in QC using rest api
My code looks like below
createxml ='<Entity Type="defect">
<Fields>
<Field Name="user-15">
<Value>Development</Value>
</Field>' ;
$qc = curl_init();
// create a cookie file
$ckfile = tempnam ("/tmp", "CURLCOOKIE");
// The authentication is done and also checks are done and after below code is executed to create a new defect in QC
$url ="http://host/qcbin/rest/domains/STANDARD_STRUCT/projects/Releases/defects/" ;
curl_setopt($qc, CURLOPT_COOKIEFILE, $ckfile);
curl_setopt($qc, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml"));
curl_setopt($qc, CURLOPT_HTTPHEADER, Array("Accept: application/xml"));
curl_setopt($qc, CURLOPT_URL, $url);
curl_setopt($qc, CURLOPT_POST, 1);
curl_setopt($qc, CURLOPT_POSTFIELDS,$createxml);
curl_setopt($qc, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($qc);
if(curl_errno($qc))
print curl_error($qc) ;
else
curl_close($qc) ;
echo $result ; `
Notice: Use of undefined constant http_code - assumed 'http_code' in C:\xampp\htdocs\createdef.php on line 150 200 the response is not created `
I am not able to figure out what is causing the issue .
Two errors I can see are:
1)
--> You have not closed the Fields. At least a proper check for xml can be added from you. I mean short xml creation for instance.
2) Remove the '/' sign at the end of your command line. You don't need that.
In case of creation a code 201 is replied from the ALM API. I know that long time passed, but hop to help a bit in the future!
Please check and have a nice day.