である私はそれが私を必要とロバートの仕事にを取得することができませんでしたプロジェクトのドロップダウンリストのhtmlにあるプロジェクトIDを指定します。
私はロバートの答えをもう一度取って、カスタムフィールドに送信できるようにいくつかのコードを追加しました。
これは最新のmantisバージョンでうまく機能しています。
$c = new SoapClient("http://www.yoursite.com/path_to_mantis/api/soap/mantisconnect.php?wsdl");
$username = 'user';
$password = 'pass';
$issue = array (
'summary' => 'Rone My test issue',
'description' => 'Rone Some description',
'project'=>array('id'=>2),
'category'=>'General',
'custom_fields'=>array(
array('field' => array('id'=>1,'name'=>'Account #'),'value'=>1),
array('field' => array('id'=>2,'name'=>'Account Name'),'value'=>'Name Goes here')
)
);
$c->mc_issue_add($username, $password, $issue);
おそらく便利:試してみましたhttp://www.futureware.biz/mantisconnect/ –