PHP中的“HTTP错误:无法打开与服务器http的套接字连接”

时间:2011-07-17 09:52:27

标签: php

我想提前感谢您的支持。我正在尝试使用PHP使用ASP.Net编写的Web服务。当我运行代码时出现此错误: - HTTP错误:无法打开到服务器http://office-server/tempPlace/Service.asmx的套接字连接,错误(10272051):

任何人都可以帮助我,谢谢,这是我写的代码:

<?php
require_once('nusoap/lib/nusoap.php');
$client = new nusoap_client('http://www.aaa.org/tempPlace/Service.asmx?wsdl','wsdl');
$err = $client->getError(); 

if($err){ 
    echo $err; 
} 

$params = array('userName' ='edit', 'password' = 'edit'); 
$result = $client->call('GetLastVersion',$params); 

if ($client->fault) { 
    echo 'Fault'. print_r($result); 
} else { 
    // Check for errors 
    $err = $client->getError(); 
    if ($err) { 
        // Display the error 
        echo 'Error'. $err; 
    } else { 
        // Display the result 
        echo 'Result' . print_r($result);       
    } 
} 
?>

2 个答案:

答案 0 :(得分:0)

fsockopen中禁止使用php.ini功能。

答案 1 :(得分:-1)

You already asked this question

  

您的代码对我来说很好,问题可能出在您的网络设置中,检查您的防火墙和防病毒设置。