我正在尝试使用webserivce usnig soapclient。 连接说明使用:
request method = "POST";
request ContentType = "application/soap+xml";
这是我用来创建客户端的代码
public function init_client(){
if( $this->env == 'dev'){
$api_url = self::$test_url;
}else{
$api_url = self::$production_url;
}
try{
$options = array(
'soap_version' => SOAP_1_2
);
$this->client = new SoapClient( $api_url , $options );
return true;
}catch(Exception $e){
return $e->getMessage();
}
}
如何设置客户端的方法和内容类型?