Paypal SetExpressCheckout在Netbeans中不工作

Paypal SetExpressCheckout在Netbeans中不工作,paypal,Paypal,我已经使用install.php在远程服务器上安装了paypal merchant sdk。 现在,我已使用netbeans连接到远程服务器,并下载了所有代码 在执行setExpressCheckout功能时,我的浏览器出现以下错误 include(PayPalAPIInterfaceServiceService.php):无法打开流:没有此类文件或目录 **This is my code in Controller :** public function actionexpress(

我已经使用install.php在远程服务器上安装了paypal merchant sdk。 现在,我已使用netbeans连接到远程服务器,并下载了所有代码

在执行setExpressCheckout功能时,我的浏览器出现以下错误

include(PayPalAPIInterfaceServiceService.php):无法打开流:没有此类文件或目录

**This is my code in Controller :**

    public function actionexpress(){



$paypalService = new PayPalAPIInterfaceServiceService($config_checkout);
$paymentDetails= new PaymentDetailsType();

$orderTotal = new BasicAmountType();
$orderTotal->currencyID = 'USD';
$orderTotal->value = 500;

$paymentDetails->OrderTotal = $orderTotal;
$paymentDetails->PaymentAction = 'Sale';

$setECReqDetails = new SetExpressCheckoutRequestDetailsType();
$setECReqDetails->PaymentDetails[0] = $paymentDetails;
$setECReqDetails->CancelURL = 'https://devtools-paypal.com/guide/recurring_payment_ec/php?cancel=true';
$setECReqDetails->ReturnURL = 'xyz.com';

$billingAgreementDetails = new BillingAgreementDetailsType('RecurringPayments');
$billingAgreementDetails->BillingAgreementDescription = 'Hello';
$setECReqDetails->BillingAgreementDetails = array($billingAgreementDetails);

$setECReqType = new SetExpressCheckoutRequestType();
//$setECReqType->Version = '3.0';
$setECReqType->Version = '104.0';
$setECReqType->SetExpressCheckoutRequestDetails = $setECReqDetails;

$setECReq = new SetExpressCheckoutReq();
$setECReq->SetExpressCheckoutRequest = $setECReqType;

$setECResponse = $paypalService->SetExpressCheckout($setECReq);
die(var_dump($setECResponse));





}
请帮帮我


提前谢谢。

我终于解决了我的问题


唯一的问题是路径,我已经明确给出了所有路径并进行了工作,最后在4小时后我能够获得输出。

我在设置我正在使用的merchant sdk的php文件的路径时遇到问题。