gpt4 book ai didi

php - 在 PHP 中使用 SOAP,简单问题

转载 作者:搜寻专家 更新时间:2023-10-31 21:14:29 27 4
gpt4 key购买 nike

我正在尝试将 API 集成到我的站点中(API 并不重要,问题在于 SOAP)。我通常不使用 PHP 编写代码,而是专注于 javascript,因此 SOAP 和相关的东西对我来说很陌生。我一直在搜索和尝试不同的东西大约 2 个半小时,并设法缩小了我的问题范围。

我调用了 $client->__getFunctions(),它为我提供了一个字符串列表,其中定义了我能够使用的所有函数。这是我想使用的函数的字符串:

"GetActivationCodeResponse GetActivationCode(GetActivationCode $parameters)"

我已经和正在与 API 创建者一起写作,因为这是我第一次使用 SOAP,也是一段时间以来第一次使用 php。

所以我在我的类中创建了一个名为 GetActivationCode 的函数,如下所示:

public function GetActivationCode($params) {
$this->client->GetActivationCode($params);
var_dump($this->client);
}

这将始终输出 SOAP 错误:

Server was unable to process request. --->
System.NullReferenceException:
Object reference not set to an instance of an object

所以我猜测它希望传递的参数是名为 GetActivationCode 的类的实例?我不知道该怎么做,也不想创建一个全新的类来提供一个功能(但如果这是解决方案,我会的)。

我写过的课

<?php

require_once("../includes/mbApi.php");
error_reporting(E_ALL);
ini_set('display_errors', '1');

class MBActivateService extends MBAPIService
{
function __construct($debug = false)
{
$serviceUrl = "http://" . GetApiHostname() . "/0_5/SiteService.asmx?wsdl";

$this->debug = $debug;
$option = array();
if ($debug)
{
$option = array('trace'=>1);
}
$this->client = new soapclient($serviceUrl, $option);
}

public function GetActivationCode($s, $k, $ids) {
var_dump($this->client->__getFunctions());
$arr = array();
$arr["SourceName"] = $s;
$arr["Password"] = $k;
$arr["SiteIDs"] = $ids;
var_dump($arr);
$this->client->GetActivationCode($arr);
}

}

$activate = new MBActivateService();

$result = $activate->GetActivationCode("She3", "private api key", array("28856"));

var_dump($result);

?>

总体目标

这是总体目标,以防有人能提供更好的解决方案。我需要发送以下 SOAP 请求:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://clients.mindbodyonline.com/api/0_5">
<soapenv:Header/>
<soapenv:Body>
<GetActivationCode>
<Request>
<SourceCredentials>
<SourceName>XXXX</SourceName>
<Password>XXXX</Password>
<SiteIDs>
<int>XXXX</int>
</SiteIDs>
</SourceCredentials>
</Request>
</GetActivationCode>
</soapenv:Body>
</soapenv:Envelope>

我需要发送SourceNamePasswordSiteIDs 的选项(数组)。

在此先感谢您的任何意见!

最佳答案

这听起来很熟悉。我要尝试的第一件事是将您的函数重写为:

public function GetActivationCode($params) {
var_dump($this->client->GetActivationCode(array(
'Request' => array(
'SourceCredentials' => $params
),
)));
}

此外,要进行调试,您可以将其添加到 SoapClient 构造函数的选项中:

array(
'trace' => true,
)

这样你就可以通过$this->client->__getLastRequest()来调试你的代码。

关于php - 在 PHP 中使用 SOAP,简单问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12162689/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com