Uncaught SoapFault исключение: [a: InternalServiceFault] Ссылка на объект не установлена на экземпляр объекта.в строке ...
У меня уже есть много вопросов, связанных с этим, но я не могу заставить его работать, поэтому снова публикую этот возможный дубликат.
Я что-то здесь упустил в запросе, но не мог понять это.Любая помощь приветствуется.
Я пробовал это и в PHP, и в NodeJS, и в обоих случаях произошла одна и та же ошибка.
<?php
$wsdl = 'http://test.eprabhu.com/Api/Utility.svc?wsdl';
$params = array(
"UserName" => "CLIENT",
"Password" => "CLIENT12",
"OperatorCode" => 2,
"MobileNumber" => "9803111111",
"Amount" => 100,
"PartnerTxnId" => "P2019042205330171261"
);
$client = new SoapClient($wsdl, ['trace' => true]);
print_r($client->__getFunctions());
// gives
// Array
// (
// [0] => MobileTopupResponse MobileTopup(MobileTopup $parameters)
// [1] => RechargePinsResponse RechargePins(RechargePins $parameters)
// ...
// )
print_r($client->__getTypes());
// gives
// Array
// (
// [0] => struct InputMobileTopup {
// string UserName;
// string Password;
// int OperatorCode;
// string MobileNumber;
// float Amount;
// string PartnerTxnId;
// }
// [1] => struct ReturnTransaction {
// string Code;
// string Message;
// string TransactionId;
// string Data;
// }
// ...
// )
// $r = $client->MobileTopup($params);
// or
$response = $client->__soapCall("MobileTopup", [$params]);
// gives error Object reference not set to an instance of an object
var_dump($response);
$xml = $soapClient->__getLastRequest();
print_r($xml);
// Also I tried using the class after looking into __getTypes result
$wsdl = 'http://test.eprabhu.com/Api/Utility.svc?wsdl';
class InputMobileTopup {
public function __construct($UserName, $Password, $OperatorCode, $MobileNumber, $Amount, $PartnerTxnId) {
$this->UserName = $UserName;
$this->Password = $Password;
$this->OperatorCode = $OperatorCode;
$this->MobileNumber = $MobileNumber;
$this->Amount = $Amount;
$this->PartnerTxnId = $PartnerTxnId;
}
}
$InputMobileTopup = new InputMobileTopup("CLIENT", "CLIENT12", 2, "9803111111", 1000, "P2019042205330171261");
print_r($InputMobileTopup);
$client = new SoapClient($wsdl, ['trace' => true]);
$response = $client->__soapCall("MobileTopup", [$InputMobileTopup]);
var_dump($response);
$xml = $soapClient->__getLastRequest();
print_r($xml);
// Still the same error.
В NodeJS также возникает та же ошибка. Ссылка на объект не установлена наэкземпляр объекта.
"use strict";
var soap = require('strong-soap').soap;
var url = 'http://test.eprabhu.com/Api/Utility.svc?wsdl&UserName=CLIENT';
var requestArgs = {
'UserName': 'CLIENT',
'Password': 'CLIENT12',
'OperatorCode': 2,
'MobileNumber': '9803111111',
'Amount': 100,
'PartnerTxnId': 'P201904220218335187'
};
var options = {
'user-agent': 'sampleTest',
'Content-Type': 'text/xml;charset=UTF-8',
// 'soapAction': 'http://test.eprabhu.com/Api/Utility.svc?wsdl#MobileTopup',
'soapAction': 'http://tempuri.org/IUtility/MobileTopup'
};
soap.createClient(url, options, function(err, client) {
var method = client['MobileTopup'];
method(requestArgs, function(err, result, envelope, soapHeader) {
//response envelope
console.log('Response Envelope: \n' + envelope);
//'result' is the response body
console.log('Result: \n' + JSON.stringify(result));
console.log('Soap Header: \n', soapHeader);
});
});
Любая помощь будет оценена.Thanx.Пожалуйста, расставьте приоритеты для ответа на NodeJS...