SoapFault exception: Could not connect to host

后端 未结 27 1630
-上瘾入骨i
-上瘾入骨i 2020-12-01 07:47

Sometimes fail to call the web service.

This problem happens all the time.

What could be the problem?

Error:
    SoapFault exception: [HTTP]          


        
27条回答
  •  半阙折子戏
    2020-12-01 08:29

    This work for me

    $opts = array(
      'ssl' => array('verify_peer' => false, 'verify_peer_name' => false)
    );
    
    if (!isset($this->soap_client)) {
      $this->soap_client = new SoapClient($this->WSDL, array(
        'soap_version'   => $this->soap_version,
        'location'       => $this->URL,
        'trace'          => 1,
        'exceptions'     => 0,
        'stream_context' => stream_context_create($opts)
      ));
    

提交回复
热议问题