首页 > 解决方案 > How could I change the port of target host?

问题描述

I need send a request using soapclient but I'm not able to change the port of target, if i try to send it addreses like "192.168.1.1:60000" I got the error "Error Fetching http headers".

my code:

    $this->client = new SoapClient($wsdlPath, array(
        'trace' => 1, 
        'exceptions' => true, 
        'ssl' => array(
            'verify_peer' => false,
            'allow_self_signed' => true
        ),
        'soap_version' => SOAP_1_2
    ));

$this->client->__setLocation($deviceAddr);      

$this->client->__setSoapHeaders($this->soapClientWSSecurityHeader($user,$pass));

标签: phpsoap

解决方案


推荐阅读