哪位高手幫小弟我改編用curl調用web service

來源:互聯網
上載者:User
誰幫我改編用curl調用web service

$s = new SoapClient("http://www.abc.com/WebServices/Service1.asmx?wsdl",true);
$s->soap_defencoding = 'UTF-8';
$s->decode_utf8 = false;
$result=$s->call('UserInfo',array('user'=> urldecode($_GET['username'])));

if (!$err=$s->getError()) {
$list=explode(";",$result["UserInfoResult"]);
array_pop($list);
} else {
echo '

';
}
?>

Service1.asmx這個web service裡有個UserInfo函數,要把參數傳進這個函數,返回結果集

本來好好的,但是虛擬機器主機不給開soap拓展,那就不用白費力氣了,,現在怎麼弄curl改寫

------解決方案--------------------

------解決方案--------------------
$url="https://xxx/xml";

$ch = curl_init ($url);
$headers = array(
"POST "."https://cxxx/integration/xml"." HTTP/1.0",
"Content-type: text/xml;charset=\"utf-8\"",
"Accept: text/xml",
"Content-length: ".strlen($xmlcontent),
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,0);

// Apply the XML to our curl call
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlcontent);

$data = curl_exec($ch);
if (curl_errno($ch)) {
die('會議資訊出錯,有可能會議還未開始!');
exit;
} else {
//var_dump($data);
curl_close($ch);
}
//
$succes='';
$ciURL='';
$token='';
$xml = simplexml_load_string($data);
$ciURL = $xml->body->ciURL;
$token = $xml->body->token;
var_dump( $xml );

------解決方案--------------------
樓主估計想結貼結瘋拉。呵呵
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.