Create Issue from soap Rest with attachment

General discussion of Mantis.

Moderators: Developer, Contributor

Post Reply
gang
Posts: 5
Joined: 16 Feb 2015, 14:20

Create Issue from soap Rest with attachment

Post by gang »

Hi .

Is there any way to create a issue from wsdl with attachment


$issue = array(
"project" => array("name" => $ini_array["project"]),
"category" => $_POST["Category"],
"summary" => $_POST["Summary"],
"description" => $_POST["Description"],
"additional_information" => $additionalInformation
);
$request = array(
"username" => $ini_array["userName"],
"password" => $ini_array["password"],
"issue" => $issue
);

$soapClient = new SoapClient($ini_array["mantisConnectUrl"] . "?wsdl");
Post Reply