我在尝试从我的服务器调用 SOAP 服务时遇到问题,在尝试时我得到 404 not found 错误,但是当我尝试通过我的本地服务器(xampp)访问它时,它显示了正确的结果
实时网址
http://alphaomegahr.com/app/client_portal/CustomerAuthenticate.php
肥皂服务 URL 是
http://alphaomegahr.com/app/vtigerservice.php?service=customerportal
我也试图通过本地服务器访问相同
http://localhost/app/client_portal/CustomerAuthenticate.php
加载正常
请帮帮我,我被这个问题严重困扰
编辑我刚刚在服务器上上传了一个简单的 curl 代码
<?php
$ch = curl_init(); // start CURL
curl_setopt($ch, CURLOPT_URL, "http://alphaomegahr.com/app/vtigerservice.php"); // set your URL
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // get the response as a variable
curl_setopt($ch, CURLOPT_HTTPGET, true);
curl_setopt($ch, CURLOPT_FRESH_CONNECT, true);
$response = curl_exec($ch); // connect and get your response
curl_close($ch);
print_r($response);
?>
它返回 /app/vtigerservice 未找到,但此 url ( http://alphaomegahr.com/app/vtigerservice.php ) 通过浏览器正确打开