我在尝试从我的服务器调用SOAP服务时遇到问题,尝试我发现404找不到错误,但是当我尝试通过我的本地服务器(xampp)访问它时,它显示正确的结果< / p>
实时网址
http://alphaomegahr.com/app/client_portal/CustomerAuthenticate.php
肥皂服务网址
http://alphaomegahr.com/app/vtigerservice.php?service=customerportal
我也试图通过本地服务器
访问它http://localhost/app/client_portal/CustomerAuthenticate.php
装载正常
请帮助我,我严重困扰这个问题
编辑 我刚刚在服务器
上传了一个简单的卷曲代码<?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,但此网址(http://alphaomegahr.com/app/vtigerservice.php)正在通过浏览器正常打开