SOAP、WSDL、PHP 没有什么问题

发布于 2024-12-11 10:02:52 字数 955 浏览 0 评论 0原文

我可以访问 Web 服务 https://www.hometownquotes.com/objects/auto.cfc ?WSDL 我还可以访问 https://www.hometownquotes.com/objects/test.cfc? WSDL

我尝试使用此服务:

    $client = new SoapClient("https://www.hometownquotes.com/objects/test.cfc?WSDL"); 
    $myArgument = '';
    $result1 = $client->myFunction($myArgument);
    var_dump($result1); 

我收到 string(3) "foo" - 我认为:这对于测试来说是正常的。

但是,当我使用真实服务时:

    $client = new SoapClient("https://www.hometownquotes.com/objects/auto.cfc?WSDL"); 
    $strYear = '1981';
    $intAffiliateID = '1111';
    $strAffiliatePass = 'password';
    $result1 = $client->getMakesWS($strYear, $intAffiliateID, $strAffiliatePass);
    var_dump($result1); 

仅回答: string(0) ""

问题出在哪里? 谢谢。

I have access to web service https://www.hometownquotes.com/objects/auto.cfc?WSDL
Also I have access to https://www.hometownquotes.com/objects/test.cfc?WSDL

I try use this service:

    $client = new SoapClient("https://www.hometownquotes.com/objects/test.cfc?WSDL"); 
    $myArgument = '';
    $result1 = $client->myFunction($myArgument);
    var_dump($result1); 

I recive string(3) "foo" - I think: It's normal for test.

But, when I use real service:

    $client = new SoapClient("https://www.hometownquotes.com/objects/auto.cfc?WSDL"); 
    $strYear = '1981';
    $intAffiliateID = '1111';
    $strAffiliatePass = 'password';
    $result1 = $client->getMakesWS($strYear, $intAffiliateID, $strAffiliatePass);
    var_dump($result1); 

in answer only: string(0) ""

Where problem?
Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水水月牙 2024-12-18 10:02:52

您确定您拥有正确的会员 ID 和密码吗?似乎无论我尝试什么随机联属 ID 和密码,结果总是您得到的(空字符串)。这向我表明您没有使用正确的凭据。

Are you sure you have the correct affiliate id and password? It seems no matter what random affiliate id and password I try, the result is always what you are getting (the nullstring). This is an indication to me that you are not using the correct credentials.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文