我正在尝试将 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>
我需要发送SourceName
、Password
和SiteIDs
(array) 的选项。
提前感谢您的任何意见!