Hudson:用php curl发布config.xml?

时间:2010-11-03 03:16:10

标签: php hudson

我一直得到400.我的哈德逊服务器上没有启用安全性。

<?php

$url = "http://myhudsonserverIP/createItem?name=NEWJOB";

$post_string = file_get_contents("config.xml");


$header  = "POST HTTP/1.0 \r\n";
$header .= "Content-type: text/xml \r\n";
$header .= "Content-length: ".strlen($post_string)." \r\n";
$header .= "Content-transfer-encoding: text \r\n";
$header .= "Connection: close \r\n\r\n";
$header .= $post_string;

$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 4);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $header);

$data = curl_exec($ch);

//DUMP OUT HEADER
echo var_dump($data);

?>

1 个答案:

答案 0 :(得分:1)

您必须为要创建configuration的作业添加查询参数。

URL /.../ createItem?名称=项目名