Payline - Version 1.7.6

Version Notes

Mise à jour SDK Payline
Ajout paramétrages

Download this release

Release Info

Developer Payline
Extension Payline
Version 1.7.6
Comparing to
See all releases


Code changes from version 1.7.5 to 1.7.6

Files changed (54) hide show
  1. app/code/community/Monext/Payline/Block/Adminhtml/Managecontracts/Grid.php +33 -8
  2. app/code/community/Monext/Payline/Block/Info/Default.php +13 -0
  3. app/code/community/Monext/Payline/Block/Info/Direct.php +7 -0
  4. app/code/community/Monext/Payline/Helper/Data.php +144 -4
  5. app/code/community/Monext/Payline/Model/Cpt.php +45 -11
  6. app/code/community/Monext/Payline/Model/Datasource/Capturepaymentoptions.php +36 -0
  7. app/code/community/Monext/Payline/Model/Datasource/Paymentactionsreauth.php +14 -0
  8. app/code/community/Monext/Payline/Model/Datasource/Statusrowempty.php +32 -0
  9. app/code/community/Monext/Payline/Model/Mysql4/Contract.php +212 -1
  10. app/code/community/Monext/Payline/Model/Mysql4/Contract/Collection.php +7 -4
  11. app/code/community/Monext/Payline/Model/Mysql4/Contract/Status.php +85 -42
  12. app/code/community/Monext/Payline/Model/Observer.php +70 -33
  13. app/code/community/Monext/Payline/Model/Order/Invoice.php +26 -0
  14. app/code/community/Monext/Payline/Model/Order/Payment.php +50 -0
  15. app/code/community/Monext/Payline/PaylinePHPKit/lib/Payline.wsdl +424 -546
  16. app/code/community/Monext/Payline/PaylinePHPKit/lib/paylineSDK.php +396 -243
  17. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-07-10.log +44 -0
  18. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-19.log +322 -0
  19. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-20.log +174 -0
  20. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-21.log +244 -0
  21. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-22.log +350 -0
  22. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-23.log +32 -0
  23. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-26.log +70 -0
  24. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-27.log +112 -0
  25. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-28.log +78 -0
  26. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-29.log +104 -0
  27. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-30.log +40 -0
  28. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-02.log +192 -0
  29. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-03.log +346 -0
  30. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-04.log +286 -0
  31. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-05.log +406 -0
  32. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-06.log +348 -0
  33. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-09.log +350 -0
  34. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-10.log +352 -0
  35. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-11.log +264 -0
  36. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-12.log +64 -0
  37. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-13.log +190 -0
  38. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-16.log +26 -0
  39. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-25.log +20 -0
  40. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-26.log +340 -0
  41. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-10-03.log +180 -0
  42. app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-10-04.log +32 -0
  43. app/code/community/Monext/Payline/controllers/Adminhtml/ManagecontractsController.php +21 -9
  44. app/code/community/Monext/Payline/controllers/IndexController.php +235 -80
  45. app/code/community/Monext/Payline/controllers/WalletController.php +26 -3
  46. app/code/community/Monext/Payline/etc/config.xml +10 -3
  47. app/code/community/Monext/Payline/etc/system.xml +110 -4
  48. app/code/community/Monext/Payline/sql/payline_setup/mysql4-upgrade-1.7.5-1.7.6.php +17 -0
  49. app/design/adminhtml/default/default/template/payline/payment/info/monext.phtml +22 -0
  50. app/design/frontend/default/default/template/payline/checkout/onepage/addjs.phtml +1 -1
  51. app/design/frontend/default/default/template/payline/payment/info/monext.phtml +45 -0
  52. app/locale/en_US/Monext_Payline.csv +3 -0
  53. app/locale/fr_FR/Monext_Payline.csv +3 -0
  54. package.xml +15 -9
app/code/community/Monext/Payline/Block/Adminhtml/Managecontracts/Grid.php CHANGED
@@ -22,10 +22,9 @@ class Monext_Payline_Block_Adminhtml_Managecontracts_Grid extends Mage_Adminhtml
22
  protected function _prepareCollection()
23
  {
24
  $collection = Mage::getModel('payline/contract')->getCollection();
25
-
26
  $store = $this->getRequest()->getParam('store', '');
27
  $website = $this->getRequest()->getParam('website', '');
28
- if($store) {
29
  $storeId = Mage::getModel('core/store')->load($store)->getId();
30
  $collection->addStoreFilter($storeId);
31
  } elseif ($website) {
@@ -65,8 +64,8 @@ class Monext_Payline_Block_Adminhtml_Managecontracts_Grid extends Mage_Adminhtml
65
  $this->addColumn('point_of_sell', array(
66
  'header' => Mage::helper('payline')->__('Point Of Sell'),
67
  'index' => 'point_of_sell',
68
- 'type' => 'options',
69
- 'options' => $this->_preparePointOfSell()
70
  ));
71
 
72
  $this->addColumn('is_primary', array(
@@ -74,7 +73,7 @@ class Monext_Payline_Block_Adminhtml_Managecontracts_Grid extends Mage_Adminhtml
74
  'index' => 'is_primary',
75
  'type' => 'options',
76
  'filter' => false,
77
- 'options' => array('1' => Mage::helper('payline')->__('Yes'), '0' => Mage::helper('payline')->__('No'))
78
  ));
79
 
80
  $this->addColumn('is_secondary', array(
@@ -82,9 +81,18 @@ class Monext_Payline_Block_Adminhtml_Managecontracts_Grid extends Mage_Adminhtml
82
  'index' => 'is_secondary',
83
  'type' => 'options',
84
  'filter' => false,
85
- 'options' => array('1' => Mage::helper('payline')->__('Yes'), '0' => Mage::helper('payline')->__('No'))
86
  ));
87
-
 
 
 
 
 
 
 
 
 
88
 
89
  return parent::_prepareColumns();
90
  }
@@ -96,7 +104,7 @@ class Monext_Payline_Block_Adminhtml_Managecontracts_Grid extends Mage_Adminhtml
96
  ->getSelect()
97
  ->reset(Zend_Db_Select::COLUMNS)
98
  ->columns('point_of_sell', 'main_table')
99
- ->distinct();
100
  $result = $pointOfSells->query()->fetchAll();
101
 
102
  $res = array();
@@ -112,6 +120,23 @@ class Monext_Payline_Block_Adminhtml_Managecontracts_Grid extends Mage_Adminhtml
112
  $this->setMassactionIdField('id');
113
  $this->getMassactionBlock()->setFormFieldName('contract');
114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  $this->getMassactionBlock()->addItem('status', array(
116
  'label'=> Mage::helper('payline')->__('Change status'),
117
  'url' => $this->getUrl('*/*/massStatus', array('_current'=>true)),
22
  protected function _prepareCollection()
23
  {
24
  $collection = Mage::getModel('payline/contract')->getCollection();
 
25
  $store = $this->getRequest()->getParam('store', '');
26
  $website = $this->getRequest()->getParam('website', '');
27
+ if($store) {
28
  $storeId = Mage::getModel('core/store')->load($store)->getId();
29
  $collection->addStoreFilter($storeId);
30
  } elseif ($website) {
64
  $this->addColumn('point_of_sell', array(
65
  'header' => Mage::helper('payline')->__('Point Of Sell'),
66
  'index' => 'point_of_sell',
67
+ 'type' => 'text',
68
+ 'filter' => false
69
  ));
70
 
71
  $this->addColumn('is_primary', array(
73
  'index' => 'is_primary',
74
  'type' => 'options',
75
  'filter' => false,
76
+ 'options' => array('1' => Mage::helper('payline')->__('X'), '0' => Mage::helper('payline')->__('-'))
77
  ));
78
 
79
  $this->addColumn('is_secondary', array(
81
  'index' => 'is_secondary',
82
  'type' => 'options',
83
  'filter' => false,
84
+ 'options' => array('1' => Mage::helper('payline')->__('X'), '0' => Mage::helper('payline')->__('-'))
85
  ));
86
+
87
+ $this->addColumn('is_included_wallet_list', array(
88
+ 'header' => Mage::helper('payline')->__('Wallet'),
89
+ 'index' => 'is_included_wallet_list',
90
+ 'type' => 'options',
91
+ 'filter' => false,
92
+ 'options' => array('1' => Mage::helper('payline')->__('X'), '0' => Mage::helper('payline')->__('-'))
93
+ ));
94
+ $this->setDefaultSort('point_of_sell', 'desc');
95
+ $this->setDefaultDir('ASC');
96
 
97
  return parent::_prepareColumns();
98
  }
104
  ->getSelect()
105
  ->reset(Zend_Db_Select::COLUMNS)
106
  ->columns('point_of_sell', 'main_table')
107
+ ->distinct();
108
  $result = $pointOfSells->query()->fetchAll();
109
 
110
  $res = array();
120
  $this->setMassactionIdField('id');
121
  $this->getMassactionBlock()->setFormFieldName('contract');
122
 
123
+ $this->getMassactionBlock()->addItem('walletList', array(
124
+ 'label' => Mage::helper('payline')->__('Subscribe to wallet'),
125
+ 'url' => $this->getUrl('*/*/massWallet', array('_current'=>true)),
126
+ 'additional' => array(
127
+ 'visibility' => array(
128
+ 'name' => 'walletList',
129
+ 'type' => 'select',
130
+ 'class' => 'required-entry',
131
+ 'label' => Mage::helper('payline')->__('Set'),
132
+ 'values' => array(
133
+ 1 => 'On',
134
+ 0 => 'Off'
135
+ )
136
+ )
137
+ )
138
+ ) );
139
+
140
  $this->getMassactionBlock()->addItem('status', array(
141
  'label'=> Mage::helper('payline')->__('Change status'),
142
  'url' => $this->getUrl('*/*/massStatus', array('_current'=>true)),
app/code/community/Monext/Payline/Block/Info/Default.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Base payment iformation block
4
+ *
5
+ */
6
+ class Monext_Payline_Block_Info_Default extends Mage_Payment_Block_Info
7
+ {
8
+ protected function _construct()
9
+ {
10
+ parent::_construct();
11
+ $this->setTemplate('payline/payment/info/monext.phtml');
12
+ }
13
+ }
app/code/community/Monext/Payline/Block/Info/Direct.php CHANGED
@@ -2,6 +2,13 @@
2
 
3
  class Monext_Payline_Block_Info_Direct extends Mage_Payment_Block_Info_Cc
4
  {
 
 
 
 
 
 
 
5
  protected function _prepareSpecificInformation($transport = null)
6
  {
7
  if (null !== $this->_paymentSpecificInformation) {
2
 
3
  class Monext_Payline_Block_Info_Direct extends Mage_Payment_Block_Info_Cc
4
  {
5
+
6
+ protected function _construct()
7
+ {
8
+ parent::_construct();
9
+ $this->setTemplate('payline/payment/info/monext.phtml');
10
+ }
11
+
12
  protected function _prepareSpecificInformation($transport = null)
13
  {
14
  if (null !== $this->_paymentSpecificInformation) {
app/code/community/Monext/Payline/Helper/Data.php CHANGED
@@ -3,7 +3,7 @@ class Monext_Payline_Helper_Data extends Mage_Core_Helper_Data {
3
 
4
  const SECURITY_MODE = 'SSL';
5
  const CREATE_INVOICE_SHOP_RETURN = 'return';
6
- const VERSION = 2;
7
  /**
8
  * Currency codes (ISO 4217) supported by Payline
9
  * @var array
@@ -522,7 +522,16 @@ class Monext_Payline_Helper_Data extends Mage_Core_Helper_Data {
522
  * @param string $orderRef
523
  */
524
  public function getTransactionContractNumber($paylineSDK, $transactionId, $orderRef){
525
- $result=$paylineSDK->getTransactionDetails(array('transactionId'=>$transactionId, 'orderRef'=>$orderRef, 'startDate' => '', 'endDate' => '', 'transactionHistory' => '', 'version' => Monext_Payline_Helper_Data::VERSION));
 
 
 
 
 
 
 
 
 
526
  if (is_string($result)) {
527
  Mage::helper('payline/logger')->log('[getTransactionContractNumber] ' . $result);
528
  return '';
@@ -610,7 +619,6 @@ class Monext_Payline_Helper_Data extends Mage_Core_Helper_Data {
610
  if (empty($state)) {
611
  $state = Mage_Sales_Model_Order::STATE_PROCESSING;
612
  }
613
-
614
  $order->setState($state, $status);
615
  }
616
 
@@ -648,4 +656,136 @@ class Monext_Payline_Helper_Data extends Mage_Core_Helper_Data {
648
 
649
  return false;
650
  }
651
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
  const SECURITY_MODE = 'SSL';
5
  const CREATE_INVOICE_SHOP_RETURN = 'return';
6
+ const VERSION = 4;
7
  /**
8
  * Currency codes (ISO 4217) supported by Payline
9
  * @var array
522
  * @param string $orderRef
523
  */
524
  public function getTransactionContractNumber($paylineSDK, $transactionId, $orderRef){
525
+ $arrayTransDetails = array(
526
+ 'archiveSearch' => '',
527
+ 'transactionId'=>$transactionId,
528
+ 'orderRef'=>$orderRef,
529
+ 'startDate' => '',
530
+ 'endDate' => '',
531
+ 'transactionHistory' => '',
532
+ 'version' => Monext_Payline_Helper_Data::VERSION
533
+ );
534
+ $result=$paylineSDK->getTransactionDetails( $arrayTransDetails );
535
  if (is_string($result)) {
536
  Mage::helper('payline/logger')->log('[getTransactionContractNumber] ' . $result);
537
  return '';
619
  if (empty($state)) {
620
  $state = Mage_Sales_Model_Order::STATE_PROCESSING;
621
  }
 
622
  $order->setState($state, $status);
623
  }
624
 
656
 
657
  return false;
658
  }
659
+
660
+ public function getPaymentContractType($methodCode, $selector) {
661
+ if( empty( $methodCode ) ) {
662
+ return '';
663
+ }
664
+
665
+ $name = '';
666
+ switch ( $methodCode ) {
667
+ case 'PaylineDIRECT':
668
+ $paymentContract = Mage::getModel('payline/contract')
669
+ ->load( $selector );
670
+ $name = $paymentContract->getName();
671
+ break;
672
+
673
+ default:
674
+ $paymentContract = Mage::getModel('payline/contract')
675
+ ->getCollection()
676
+ ->addFieldToFilter('number', $selector)
677
+ ->getFirstItem();
678
+ $name = $paymentContract->getContractType();
679
+ }
680
+ return $name;
681
+ }
682
+
683
+ /**
684
+ * @param $order Order object
685
+ * @param $paymentMode Monext_Payline_Model_Cpt::ACTION_AUTH / ACTION_AUTH_CAPTURE
686
+ * @param bool $isReAuth true if re-authorization, false if not
687
+ */
688
+ public function setOrderStatusAccordingToPaymentMode($order, $paymentMode, $isReAuth = false)
689
+ {
690
+ $paymentMethod = $order->getPayment()->getMethod();
691
+ $reauthOrderStatus = Mage::getStoreConfig('payment/payline_common/reauthorized_order_status');
692
+ $capturedOrderStatus = Mage::getStoreConfig('payment/payline_common/captured_order_status');
693
+ $authOrderStatus = Mage::getStoreConfig('payment/payline_common/authorized_order_status');
694
+
695
+ /* Monext_Payline_Model_Cpt::ACTION_RE_AUTH stand for reauth and reauth+capture.
696
+ * So set the exact transaction type in order to set the right order status. */
697
+ if( $paymentMode == Monext_Payline_Model_Cpt::ACTION_RE_AUTH ) {
698
+ $reauthAction = Mage::getStoreConfig('payment/'.$paymentMethod.'/action_when_order_seven_day_old');
699
+ $paymentMode = $reauthAction;
700
+ }
701
+ $arrayReAuth = array(
702
+ Monext_Payline_Model_Cpt::ACTION_AUTH => $reauthOrderStatus,
703
+ Monext_Payline_Model_Cpt::ACTION_AUTH_CAPTURE => $capturedOrderStatus,
704
+ Monext_Payline_Model_Cpt::ACTION_CAPTURE => $capturedOrderStatus,
705
+ );
706
+ $arrayAuth = array(
707
+ Monext_Payline_Model_Cpt::ACTION_AUTH => $authOrderStatus,
708
+ Monext_Payline_Model_Cpt::ACTION_AUTH_CAPTURE => $capturedOrderStatus,
709
+ Monext_Payline_Model_Cpt::ACTION_CAPTURE => $capturedOrderStatus
710
+ );
711
+
712
+ $errorTxt = '[Monext_Payline_Helper_Data#setOrderStatusAccordingToPaymentMode]'
713
+ .' ERROR payment '.$paymentMode.' action not found. Unable to set order status';
714
+ if( $isReAuth ) {
715
+ if( isset( $arrayReAuth[ $paymentMode ] ) ) {
716
+ $conf = $arrayReAuth[ $paymentMode ];
717
+ } else {
718
+ Mage::log( $errorTxt );
719
+ return;
720
+ }
721
+ } else {
722
+ if( isset( $arrayAuth[ $paymentMode ] ) ) {
723
+ $conf = $arrayAuth[ $paymentMode ];
724
+ } else {
725
+ Mage::log( $errorTxt );
726
+ return;
727
+ }
728
+ }
729
+ $this->setOrderStatus( $order, $conf );
730
+ }
731
+
732
+ /**
733
+ * Check if transaction exist
734
+ * @param array Can contain following keys : transaction_id, txn_id
735
+ * @return false if transaction doesn't exist, otherwise return the transaction model
736
+ */
737
+ public function transactionExist($params)
738
+ {
739
+ if( isset( $params['transaction_id'] ) ) {
740
+ $transaction = Mage::getModel('sales/order_payment_transaction')->load( $params['transaction_id'] );
741
+ }
742
+ if( isset( $params['txn_id'] ) ) {
743
+ $transaction = Mage::getModel('sales/order_payment_transaction')
744
+ ->getCollection()
745
+ ->addFieldToFilter( 'txn_id', $params['txn_id'] )
746
+ ->getFirstItem();
747
+ }
748
+ if( $transaction->getId() ) {
749
+ return $transaction;
750
+ }
751
+ return false;
752
+ }
753
+
754
+ /**
755
+ * Return all contract with is_included_wallet_list db columns set to true.
756
+ * Filtered by store_id and website_id
757
+ * @param $store_id {int} can be null
758
+ * @param $website_id {int} can be null
759
+ * @return collection of matched contracts
760
+ */
761
+ public function getContractWalletList($store_id = null, $website_id = null, $isDefaultLevel = false)
762
+ {
763
+ if( $isDefaultLevel ) {
764
+ $collection = Mage::getModel('payline/contract')->getCollection()->addFieldToFilter('is_included_wallet_list', 1);
765
+ } else {
766
+ $collection = Mage::getModel('payline/contract')->getCollection();
767
+ if( isset( $store_id ) ) { $collection->addStoreFilter( $store_id ); }
768
+ if( isset( $website_id ) ) { $collection->addWebsiteFilter( $website_id ); }
769
+ $collection->getSelect()->where(
770
+ new Zend_Db_Expr('IFNULL(status.is_included_wallet_list,main_table.is_included_wallet_list)').'=1' );
771
+ }
772
+ return $collection;
773
+ }
774
+
775
+ /**
776
+ * Build a contract number wallet array used by doWebPayment & createWebWallet
777
+ * @return array An array of contracts number or an null if not found
778
+ */
779
+ public function buildContractNumberWalletList()
780
+ {
781
+ $storeId = Mage::app()->getStore()->getStoreId();
782
+ $contractCollection = $this->getContractWalletList( $storeId );
783
+ $contractsNumber = array();
784
+ foreach( $contractCollection as $contract ) {
785
+ $contractsNumber[] = $contract['number'];
786
+ }
787
+ return sizeof( $contractsNumber ) > 0 ? $contractsNumber : null;
788
+ }
789
+
790
+
791
+ } // end class
app/code/community/Monext/Payline/Model/Cpt.php CHANGED
@@ -6,9 +6,12 @@ class Monext_Payline_Model_Cpt extends Mage_Payment_Model_Method_Abstract
6
  {
7
  const ACTION_AUTH = 100;
8
  CONST ACTION_AUTH_CAPTURE = 101;
 
 
9
 
10
  protected $_code = 'PaylineCPT';
11
  protected $_formBlockType = 'payline/cpt';
 
12
  protected $_isInitializeNeeded = true;
13
  protected $_canUseInternal = false;
14
  protected $_canUseForMultishipping = false;
@@ -108,8 +111,17 @@ class Monext_Payline_Model_Cpt extends Mage_Payment_Model_Method_Abstract
108
  $orderRef = $order->getRealOrderId();
109
  $array = array();
110
  $paylineSDK = Mage::helper('payline')->initPayline($useConfig,Mage::helper('payline')->getNumericCurrencyCode($order->getBaseCurrencyCode()));
111
-
112
- $transDetails=$paylineSDK->getTransactionDetails(array('transactionId'=>$payment->getCcTransId(), 'orderRef'=>$orderRef, 'startDate' => '', 'endDate' => '', 'transactionHistory' => '', 'version' => Monext_Payline_Helper_Data::VERSION));
 
 
 
 
 
 
 
 
 
113
  if (is_string($transDetails)) {
114
  Mage::helper('payline/logger')->log('[getTransactionContractNumber] ' . $transDetails);
115
  return;
@@ -119,12 +131,16 @@ class Monext_Payline_Model_Cpt extends Mage_Payment_Model_Method_Abstract
119
  'Error while retrieving transaction contract number for transactionId'.' '.$payment->getCcTransId().' and order '.$orderRef.' error : '.$transDetails['result']['shortMessage']);
120
  return;
121
  }
122
-
123
- if (isset($transDetails['payment']['action']) && $transDetails['payment']['action'] != self::ACTION_AUTH_CAPTURE){
 
 
 
 
124
  // PAYMENT
125
  $array['payment']['amount'] = round($amount*100);
126
  $array['payment']['currency'] = Mage::helper('payline')->getNumericCurrencyCode($order->getBaseCurrencyCode());
127
- $array['payment']['action'] = 201;
128
  $array['payment']['mode'] = 'CPT';
129
  $array['payment']['contractNumber']=$transDetails['payment']['contractNumber'];
130
  // TRANSACTION INFO
@@ -136,16 +152,19 @@ class Monext_Payline_Model_Cpt extends Mage_Payment_Model_Method_Abstract
136
  $privateData['value'] = $orderRef;
137
  $paylineSDK->setPrivate($privateData);
138
 
139
- $array['sequenceNumber'] = '';
140
-
 
141
  // Last week date
142
  $date = new Zend_Date(Mage::getModel('core/date')->gmtTimestamp());
143
  $date->subDay(7);
144
  $orderDate = new Zend_Date($order->getCreatedAt(), Zend_Date::ISO_8601);
145
- $isReAuthorization = false;
146
  if ($orderDate->isEarlier($date)) {
147
- $isReAuthorization = true;
148
- $array['payment']['action'] = self::ACTION_AUTH_CAPTURE;
 
 
149
  $array['order']['ref'] = substr($orderRef,0,50);
150
  $array['order']['amount'] = $array['payment']['amount'];
151
  $array['order']['currency'] = $array['payment']['currency'];
@@ -169,7 +188,7 @@ class Monext_Payline_Model_Cpt extends Mage_Payment_Model_Method_Abstract
169
  }else{
170
  if($isReAuthorization) {
171
  $payment->setTransactionId($response['transaction']['id']);
172
- } else {
173
  $payment->setTransactionId($payment->getCcTransId());
174
  }
175
  $transaction = Mage::getModel('sales/order_payment_transaction');
@@ -179,6 +198,21 @@ class Monext_Payline_Model_Cpt extends Mage_Payment_Model_Method_Abstract
179
  $transaction->setTxnType(Mage_Sales_Model_Order_Payment_Transaction::TYPE_CAPTURE);
180
  //It looks Magento 1.8 saves the transaction by a other way, if we save here we've a constraint violation on primary key
181
  if (!(version_compare(Mage::getVersion(), '1.8', 'ge') && version_compare(Mage::getVersion(), '1.9', 'lt'))){
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  $transaction->save();
183
  }
184
  }
6
  {
7
  const ACTION_AUTH = 100;
8
  CONST ACTION_AUTH_CAPTURE = 101;
9
+ const ACTION_CAPTURE = 201;
10
+ const ACTION_RE_AUTH = 202;
11
 
12
  protected $_code = 'PaylineCPT';
13
  protected $_formBlockType = 'payline/cpt';
14
+ protected $_infoBlockType = 'payline/info_default';
15
  protected $_isInitializeNeeded = true;
16
  protected $_canUseInternal = false;
17
  protected $_canUseForMultishipping = false;
111
  $orderRef = $order->getRealOrderId();
112
  $array = array();
113
  $paylineSDK = Mage::helper('payline')->initPayline($useConfig,Mage::helper('payline')->getNumericCurrencyCode($order->getBaseCurrencyCode()));
114
+ $transDetailsParams = array(
115
+ 'transactionId'=>$payment->getCcTransId(),
116
+ 'orderRef'=>$orderRef,
117
+ 'startDate' => '',
118
+ 'endDate' => '',
119
+ 'transactionHistory' => '',
120
+ 'version' => Monext_Payline_Helper_Data::VERSION,
121
+ 'archiveSearch' => ''
122
+ );
123
+
124
+ $transDetails=$paylineSDK->getTransactionDetails( $transDetailsParams );
125
  if (is_string($transDetails)) {
126
  Mage::helper('payline/logger')->log('[getTransactionContractNumber] ' . $transDetails);
127
  return;
131
  'Error while retrieving transaction contract number for transactionId'.' '.$payment->getCcTransId().' and order '.$orderRef.' error : '.$transDetails['result']['shortMessage']);
132
  return;
133
  }
134
+ $paymentMethod = $payment->getMethod();
135
+ $fireCaptureOption = Mage::getStoreConfig('payment/'.$paymentMethod.'/capture_payment_when_i_said');
136
+ if( isset($transDetails['payment']['action'])
137
+ && ( $transDetails['payment']['action'] != self::ACTION_AUTH_CAPTURE
138
+ || $fireCaptureOption == $order->getStatus() ) )
139
+ {
140
  // PAYMENT
141
  $array['payment']['amount'] = round($amount*100);
142
  $array['payment']['currency'] = Mage::helper('payline')->getNumericCurrencyCode($order->getBaseCurrencyCode());
143
+ $array['payment']['action'] = Monext_Payline_Model_Cpt::ACTION_CAPTURE;
144
  $array['payment']['mode'] = 'CPT';
145
  $array['payment']['contractNumber']=$transDetails['payment']['contractNumber'];
146
  // TRANSACTION INFO
152
  $privateData['value'] = $orderRef;
153
  $paylineSDK->setPrivate($privateData);
154
 
155
+ $array['sequenceNumber']= '';
156
+ $array['version'] = Monext_Payline_Helper_Data::VERSION;
157
+
158
  // Last week date
159
  $date = new Zend_Date(Mage::getModel('core/date')->gmtTimestamp());
160
  $date->subDay(7);
161
  $orderDate = new Zend_Date($order->getCreatedAt(), Zend_Date::ISO_8601);
162
+ $isReAuthorization = false;
163
  if ($orderDate->isEarlier($date)) {
164
+ $isReAuthorization = true;
165
+ $reauthAction = Mage::getStoreConfig('payment/'.$paymentMethod.'/action_when_order_seven_day_old');
166
+ $array['payment']['action'] = $reauthAction;
167
+
168
  $array['order']['ref'] = substr($orderRef,0,50);
169
  $array['order']['amount'] = $array['payment']['amount'];
170
  $array['order']['currency'] = $array['payment']['currency'];
188
  }else{
189
  if($isReAuthorization) {
190
  $payment->setTransactionId($response['transaction']['id']);
191
+ } else {
192
  $payment->setTransactionId($payment->getCcTransId());
193
  }
194
  $transaction = Mage::getModel('sales/order_payment_transaction');
198
  $transaction->setTxnType(Mage_Sales_Model_Order_Payment_Transaction::TYPE_CAPTURE);
199
  //It looks Magento 1.8 saves the transaction by a other way, if we save here we've a constraint violation on primary key
200
  if (!(version_compare(Mage::getVersion(), '1.8', 'ge') && version_compare(Mage::getVersion(), '1.9', 'lt'))){
201
+ $transExistParam = array( 'txn_id' => $response['transaction']['id'] );
202
+ $transFromDb = Mage::helper('payline')->transactionExist( $transExistParam );
203
+ if( $transFromDb != false ) {
204
+ //transaction exist, update it's date
205
+ $now = Mage::getModel('core/date')->timestamp( time() );
206
+ $now = date("Y-m-d H:i:s", $now);
207
+ $transaction->setData(
208
+ array(
209
+ 'created_at' => $now,
210
+ 'transaction_id' => $transFromDb->getId(),
211
+ 'txn_id' => $transFromDb->getTxnId(),
212
+ 'txn_type' => $transFromDb->getTxnType()
213
+ )
214
+ );
215
+ }
216
  $transaction->save();
217
  }
218
  }
app/code/community/Monext/Payline/Model/Datasource/Capturepaymentoptions.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Class used as a datasource to display available events to trigger payment capture
4
+ */
5
+ class Monext_Payline_Model_Datasource_Capturepaymentoptions extends Mage_Adminhtml_Model_System_Config_Source_Order_Status
6
+ {
7
+
8
+ public function toOptionArray()
9
+ {
10
+ $options = array();
11
+ $options[] = array(
12
+ 'value' => 'invoice',
13
+ 'label' => 'When Invoice is created'
14
+ );
15
+
16
+ if (class_exists('Mage_Sales_Model_Mysql4_Order_Status_Collection')) {
17
+ $collection = Mage::getResourceModel('sales/order_status_collection')
18
+ ->orderByLabel();
19
+ foreach ($collection as $status) {
20
+ $options[] = array(
21
+ 'value' => $status->getStatus(),
22
+ 'label' => Mage::helper('payline')->__("When order status is '%s'", $status->getStoreLabel())
23
+ );
24
+ }
25
+ } else {
26
+ $statuses = Mage::getSingleton('sales/order_config')->getStatuses();
27
+ foreach ($statuses as $code=>$label) {
28
+ $options[] = array(
29
+ 'value' => $code,
30
+ 'label' => Mage::helper('payline')->__("When order status is '%s'", $label)
31
+ );
32
+ }
33
+ }
34
+ return $options;
35
+ }
36
+ }
app/code/community/Monext/Payline/Model/Datasource/Paymentactionsreauth.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Class used as a datasource to display available payment actions
4
+ */
5
+ class Monext_Payline_Model_Datasource_Paymentactionsreauth
6
+ {
7
+ public function toOptionArray()
8
+ {
9
+ return array(
10
+ array('value' => 101, 'label'=>Mage::helper('payline')->__('re-authorization + capture')),
11
+ array('value' => 100, 'label'=>Mage::helper('payline')->__('re-authorization'))
12
+ );
13
+ }
14
+ }
app/code/community/Monext/Payline/Model/Datasource/Statusrowempty.php ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Monext_Payline_Model_Datasource_Statusrowempty extends Mage_Adminhtml_Model_System_Config_Source_Order_Status
3
+ {
4
+ public function toOptionArray()
5
+ {
6
+ $options = array();
7
+ $options[] = array(
8
+ 'value' => '',
9
+ 'label' => 'None'
10
+ );
11
+ if (class_exists('Mage_Sales_Model_Mysql4_Order_Status_Collection')) {
12
+ $collection = Mage::getResourceModel('sales/order_status_collection')
13
+ ->orderByLabel();
14
+ foreach ($collection as $status) {
15
+ $options[] = array(
16
+ 'value' => $status->getStatus(),
17
+ 'label' => $status->getStoreLabel()
18
+ );
19
+ }
20
+ } else {
21
+ $statuses = Mage::getSingleton('sales/order_config')->getStatuses();
22
+ foreach ($statuses as $code=>$label) {
23
+ $options[] = array(
24
+ 'value' => $code,
25
+ 'label' => $label
26
+ );
27
+ }
28
+ }
29
+
30
+ return $options;
31
+ }
32
+ }
app/code/community/Monext/Payline/Model/Mysql4/Contract.php CHANGED
@@ -26,5 +26,216 @@ class Monext_Payline_Model_Mysql4_Contract extends Mage_Core_Model_Mysql4_Abstra
26
  $connection->update($this->getTable('payline/contract'), $fields, $where);
27
  $connection->commit();
28
  }
29
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  ?>
26
  $connection->update($this->getTable('payline/contract'), $fields, $where);
27
  $connection->commit();
28
  }
29
+
30
+ // Use fallback history pattern
31
+ public function updateContractWalletList($ids, $optionToSet, $website_code, $store_code)
32
+ {
33
+ if(!is_array($ids)) {
34
+ $ids = array($ids);
35
+ }
36
+
37
+ $pointOfSell = $this->getPointOfSell($ids);
38
+ $otherContracts = $this->getContractsNotIn($pointOfSell);
39
+ $storeIds = array();
40
+ $websiteId = null;
41
+ $isDefaultLevel = false;
42
+ $isWebsiteLevel = false;
43
+ $isStoreViewLevel = false;
44
+ $connection = $this->_getWriteAdapter();
45
+
46
+ // set store & website code
47
+ if(!$store_code) {
48
+ if($website_code) {
49
+ $isWebsiteLevel = true;
50
+ $website = Mage::getModel('core/website')->load($website_code);
51
+ $websiteId = $website->getId();
52
+ $storeIds = $website->getStoreIds();
53
+ } else {
54
+ $isDefaultLevel = true;
55
+ }
56
+ } else {
57
+ $isStoreViewLevel = true;
58
+ $storeIds = Mage::getModel('core/store')->load($store_code)->getId();
59
+ $storeIds = array($storeIds);
60
+ }
61
+
62
+ $connection->beginTransaction();
63
+
64
+ // process update
65
+ if($isDefaultLevel) {
66
+ // default level override son's options
67
+ $conditions = array();
68
+ $conditions[] = $connection->quoteInto('contract_id in (?)', $ids);
69
+ $connection->delete($this->getTable('payline/contract_status'),$conditions);
70
+
71
+ $where = $connection->quoteInto('id in (?)', $ids);
72
+ $fields = array( 'is_included_wallet_list' => $optionToSet );
73
+ $connection->update($this->getTable('payline/contract'), $fields, $where);
74
+
75
+ // wallet subscription can be set for all point of sell. Uncomment below to avoid that.
76
+ // $this->resetContractWallet($connection, 0, $otherContracts, $websiteId, $storeIds);
77
+
78
+ $count = Mage::getModel('payline/contract')->getCollection()->addFieldToFilter('is_primary',1)->getSize();
79
+ } else {
80
+ $contractStatusRModel = Mage::getResourceModel('payline/contract_status');
81
+
82
+ $conditions = 'contract_id in ('.implode(',',$ids).') AND (';
83
+ if($isWebsiteLevel) $conditions .= 'website_id = '. $websiteId . ' OR ';
84
+ $conditions .= 'store_id in (' . implode(',',$storeIds) . '))';
85
+
86
+ // temporarily stock deleted rows to avoid is_primary and is_secondary data lost
87
+ $deletedRows = $contractStatusRModel->queryContractStatus($ids, $storeIds, $websiteId);
88
+
89
+ $connection->delete($this->getTable('payline/contract_status'),$conditions);
90
+
91
+ $fields['is_primary'] = 0;
92
+ $fields['is_secondary'] = 0;
93
+ foreach ($ids as $id) {
94
+ if($isWebsiteLevel) {
95
+ $data = array(
96
+ 'contract_id' => $id,
97
+ 'website_id' => $websiteId,
98
+ 'store_id' => null,
99
+ 'is_primary' => $fields['is_primary'],
100
+ 'is_secondary' => $fields['is_secondary'],
101
+ 'is_included_wallet_list' => $optionToSet
102
+ );
103
+ // time to restore deleted info (if needed)
104
+ $backup = $contractStatusRModel->getMatchingRowByKeys( $deletedRows, $data );
105
+ if( $backup ) {
106
+ $data['is_primary'] = $backup['is_primary'];
107
+ $data['is_secondary'] = $backup['is_secondary'];
108
+ }
109
+ $connection->insert($this->getTable('payline/contract_status'),$data);
110
+ }
111
+ foreach ($storeIds as $storeId) {
112
+ $data = array(
113
+ 'contract_id' => $id,
114
+ 'website_id' => null,
115
+ 'store_id' => $storeId,
116
+ 'is_primary' => $fields['is_primary'],
117
+ 'is_secondary' => $fields['is_secondary'],
118
+ 'is_included_wallet_list' => $optionToSet
119
+ );
120
+ $backup = $contractStatusRModel->getMatchingRowByKeys( $deletedRows, $data );
121
+ if( $backup ) {
122
+ $data['is_primary'] = $backup['is_primary'];
123
+ $data['is_secondary'] = $backup['is_secondary'];
124
+ }
125
+ $connection->insert($this->getTable('payline/contract_status'),$data);
126
+ }
127
+ }
128
+
129
+ // wallet subscription can be set for all point of sell. Uncomment below to avoid that.
130
+ // $this->resetContractWallet($connection, ($isWebsiteLevel ? 2 : 3), $otherContracts, $websiteId, $storeIds);
131
+
132
+ if($isWebsiteLevel) {
133
+ $count= Mage::getModel('payline/contract_status')->getCollection()
134
+ ->addFieldToFilter('is_primary',1)
135
+ ->addFieldToFilter('store_id',$storeIds)
136
+ ->getSize();
137
+ } else {
138
+ $count = Mage::getModel('payline/contract')->getCollection()->addFilterStatus(true,$storeId)->getSize();
139
+ }
140
+ }
141
+
142
+ $connection->commit();
143
+
144
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('payline')->__('Contracts modified successfully'));
145
+
146
+ } // end updateContractWalletList()
147
+
148
+ /**
149
+ * Reset contract wallet list for contracts that are not in $pointOfSell
150
+ *
151
+ * @param type $connection
152
+ * @param type $level
153
+ * @param type $ids
154
+ * @param type $websiteId
155
+ * @param type $storeIds
156
+ */
157
+ public function resetContractWallet($connection,$level,$ids,$websiteId,$storeIds) {
158
+ $fields = array();
159
+ $fields['is_primary'] = 0;
160
+ $fields['is_secondary'] = 0;
161
+ $fields['is_included_wallet_list'] = 0;
162
+
163
+ if($level == 0) {
164
+ $conditions = array();
165
+ $conditions[] = $connection->quoteInto('contract_id in (?)', $ids);
166
+ $connection->delete($this->getTable('payline/contract_status'),$conditions);
167
+
168
+ $where = $connection->quoteInto('id in (?)', $ids);
169
+ $connection->update($this->getTable('payline/contract'), $fields, $where);
170
+ } else {
171
+ $conditions = 'contract_id in ('.implode(',',$ids).') AND (';
172
+ if($level == 2) $conditions .= 'website_id = '. $websiteId . ' OR ';
173
+ $conditions .= 'store_id in (' . implode(',',$storeIds) . '))';
174
+ $connection->delete($this->getTable('payline/contract_status'),$conditions);
175
+
176
+ foreach ($ids as $id) {
177
+ if($level == 2) {
178
+ $data = array(
179
+ 'contract_id' => $id,
180
+ 'website_id' => $websiteId,
181
+ 'is_primary' => $fields['is_primary'],
182
+ 'is_secondary' => $fields['is_secondary']
183
+ );
184
+ $connection->insert($this->getTable('payline/contract_status'),$data);
185
+ }
186
+ foreach ($storeIds as $storeId) {
187
+ $data = array(
188
+ 'contract_id' => $id,
189
+ 'store_id' => $storeId,
190
+ 'is_primary' => $fields['is_primary'],
191
+ 'is_secondary' => $fields['is_secondary']
192
+ );
193
+ $connection->insert($this->getTable('payline/contract_status'),$data);
194
+ }
195
+ } // end foreach( $ids
196
+ } // end else $level
197
+ }
198
+
199
+
200
+ /**
201
+ * Get the point of sell of contracts
202
+ * @param array $contract_ids
203
+ * @return string
204
+ */
205
+ public function getPointOfSell($contract_ids) {
206
+ $read = $this->_getReadAdapter();
207
+
208
+ $select = $read->select()
209
+ ->distinct()
210
+ ->from($this->getTable('payline/contract'),array('point_of_sell'))
211
+ ->where('id in (?)', $contract_ids);
212
+
213
+ $result = $select->query();
214
+ $row = $result->fetchAll();
215
+ return $row[0]['point_of_sell'];
216
+ }
217
+
218
+ /**
219
+ * Get contract ids of contracts not int $pointOfSell
220
+ * @param string $pointOfSell
221
+ * @return array
222
+ */
223
+ public function getContractsNotIn($pointOfSell) {
224
+ $read = $this->_getReadAdapter();
225
+
226
+ $select = $read->select()
227
+ ->distinct()
228
+ ->from($this->getTable('payline/contract'),array('id'))
229
+ ->where('point_of_sell != ?', $pointOfSell);
230
+
231
+ $result = $select->query();
232
+ $row = $result->fetchAll();
233
+ $res = array();
234
+ foreach($row as $r) {
235
+ $res[] = $r['id'];
236
+ }
237
+ return $res;
238
+ }
239
+
240
+ } //end class
241
  ?>
app/code/community/Monext/Payline/Model/Mysql4/Contract/Collection.php CHANGED
@@ -31,7 +31,8 @@ class Monext_Payline_Model_Mysql4_Contract_Collection extends Mage_Core_Model_My
31
  ->columns('name', 'main_table')
32
  ->columns('number', 'main_table')
33
  ->columns('contract_type', 'main_table')
34
- ->distinct();
 
35
 
36
  return $this;
37
  }
@@ -51,8 +52,9 @@ class Monext_Payline_Model_Mysql4_Contract_Collection extends Mage_Core_Model_My
51
  ->columns('number', 'main_table')
52
  ->columns('point_of_sell', 'main_table')
53
  ->columns(array('is_primary' => new Zend_Db_Expr('IFNULL(status.is_primary,main_table.is_primary)')), 'status')
54
- ->columns(array('is_secondary' => new Zend_Db_Expr('IFNULL(status.is_secondary,main_table.is_secondary)')), 'status');
55
-
 
56
  return $this;
57
  }
58
 
@@ -71,7 +73,8 @@ class Monext_Payline_Model_Mysql4_Contract_Collection extends Mage_Core_Model_My
71
  ->columns('number', 'main_table')
72
  ->columns('point_of_sell', 'main_table')
73
  ->columns(array('is_primary' => new Zend_Db_Expr('IFNULL(status.is_primary,main_table.is_primary)')), 'status')
74
- ->columns(array('is_secondary' => new Zend_Db_Expr('IFNULL(status.is_secondary,main_table.is_secondary)')), 'status');
 
75
 
76
  return $this;
77
  }
31
  ->columns('name', 'main_table')
32
  ->columns('number', 'main_table')
33
  ->columns('contract_type', 'main_table')
34
+ ->columns('is_included_wallet_list', 'main_table')
35
+ ->distinct();
36
 
37
  return $this;
38
  }
52
  ->columns('number', 'main_table')
53
  ->columns('point_of_sell', 'main_table')
54
  ->columns(array('is_primary' => new Zend_Db_Expr('IFNULL(status.is_primary,main_table.is_primary)')), 'status')
55
+ ->columns(array('is_secondary' => new Zend_Db_Expr('IFNULL(status.is_secondary,main_table.is_secondary)')), 'status')
56
+ ->columns(array('is_included_wallet_list' => new Zend_Db_Expr('IFNULL(status.is_included_wallet_list,main_table.is_included_wallet_list)')), 'status');
57
+
58
  return $this;
59
  }
60
 
73
  ->columns('number', 'main_table')
74
  ->columns('point_of_sell', 'main_table')
75
  ->columns(array('is_primary' => new Zend_Db_Expr('IFNULL(status.is_primary,main_table.is_primary)')), 'status')
76
+ ->columns(array('is_secondary' => new Zend_Db_Expr('IFNULL(status.is_secondary,main_table.is_secondary)')), 'status')
77
+ ->columns(array('is_included_wallet_list' => new Zend_Db_Expr('IFNULL(status.is_included_wallet_list,main_table.is_included_wallet_list)')), 'status');
78
 
79
  return $this;
80
  }
app/code/community/Monext/Payline/Model/Mysql4/Contract/Status.php CHANGED
@@ -47,8 +47,7 @@ class Monext_Payline_Model_Mysql4_Contract_Status extends Mage_Core_Model_Mysql4
47
  $storeIds = Mage::getModel('core/store')->load($store_code)->getId();
48
  $storeIds = array($storeIds);
49
  }
50
-
51
- $connection = $this->_getWriteAdapter();
52
  $connection->beginTransaction();
53
  $fields = array();
54
  switch($status) {
@@ -82,27 +81,37 @@ class Monext_Payline_Model_Mysql4_Contract_Status extends Mage_Core_Model_Mysql4
82
  } else {
83
  $conditions = 'contract_id in ('.implode(',',$ids).') AND (';
84
  if($isWebsiteLevel) $conditions .= 'website_id = '. $websiteId . ' OR ';
85
- $conditions .= 'store_id in (' . implode(',',$storeIds) . '))';
 
86
  $connection->delete($this->getTable('payline/contract_status'),$conditions);
87
 
88
  foreach ($ids as $id) {
89
  if($isWebsiteLevel) {
90
  $data = array(
91
- 'contract_id' => $id,
92
- 'website_id' => $websiteId,
93
- 'is_primary' => $fields['is_primary'],
94
- 'is_secondary' => $fields['is_secondary']
 
95
  );
 
 
 
 
96
  $connection->insert($this->getTable('payline/contract_status'),$data);
97
  }
98
  foreach ($storeIds as $storeId) {
99
  $data = array(
100
- 'contract_id' => $id,
101
- 'store_id' => $storeId,
102
- 'is_primary' => $fields['is_primary'],
103
- 'is_secondary' => $fields['is_secondary']
 
104
  );
105
-
 
 
 
106
  $connection->insert($this->getTable('payline/contract_status'),$data);
107
  }
108
  }
@@ -142,8 +151,8 @@ class Monext_Payline_Model_Mysql4_Contract_Status extends Mage_Core_Model_Mysql4
142
  public function resetContractStatus($connection,$level,$ids,$websiteId,$storeIds) {
143
  $fields = array();
144
  $fields['is_primary'] = 0;
145
- $fields['is_secondary'] = 0;
146
-
147
  if($level == 0) {
148
  $conditions = array();
149
  $conditions[] = $connection->quoteInto('contract_id in (?)', $ids);
@@ -155,26 +164,37 @@ class Monext_Payline_Model_Mysql4_Contract_Status extends Mage_Core_Model_Mysql4
155
  $conditions = 'contract_id in ('.implode(',',$ids).') AND (';
156
  if($level == 2) $conditions .= 'website_id = '. $websiteId . ' OR ';
157
  $conditions .= 'store_id in (' . implode(',',$storeIds) . '))';
158
- $connection->delete($this->getTable('payline/contract_status'),$conditions);
 
 
159
 
160
  foreach ($ids as $id) {
161
  if($level == 2) {
162
  $data = array(
163
  'contract_id' => $id,
164
  'website_id' => $websiteId,
 
165
  'is_primary' => $fields['is_primary'],
166
  'is_secondary' => $fields['is_secondary']
167
  );
 
 
 
 
168
  $connection->insert($this->getTable('payline/contract_status'),$data);
169
  }
170
  foreach ($storeIds as $storeId) {
171
  $data = array(
172
  'contract_id' => $id,
173
  'store_id' => $storeId,
 
174
  'is_primary' => $fields['is_primary'],
175
  'is_secondary' => $fields['is_secondary']
176
  );
177
-
 
 
 
178
  $connection->insert($this->getTable('payline/contract_status'),$data);
179
  }
180
  }
@@ -188,20 +208,7 @@ class Monext_Payline_Model_Mysql4_Contract_Status extends Mage_Core_Model_Mysql4
188
  * @return array
189
  */
190
  public function getContractsNotIn($pointOfSell) {
191
- $read = $this->_getReadAdapter();
192
-
193
- $select = $read->select()
194
- ->distinct()
195
- ->from($this->getTable('payline/contract'),array('id'))
196
- ->where('point_of_sell != ?', $pointOfSell);
197
-
198
- $result = $select->query();
199
- $row = $result->fetchAll();
200
- $res = array();
201
- foreach($row as $r) {
202
- $res[] = $r['id'];
203
- }
204
- return $res;
205
  }
206
 
207
 
@@ -211,18 +218,54 @@ class Monext_Payline_Model_Mysql4_Contract_Status extends Mage_Core_Model_Mysql4
211
  * @return string
212
  */
213
  public function getPointOfSell($contract_ids) {
214
- $read = $this->_getReadAdapter();
215
-
216
- $select = $read->select()
217
- ->distinct()
218
- ->from($this->getTable('payline/contract'),array('point_of_sell'))
219
- ->where('id in (?)', $contract_ids);
220
-
221
-
222
- $result = $select->query();
223
- $row = $result->fetchAll();
224
- return $row[0]['point_of_sell'];
225
  }
226
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
  }
228
  ?>
47
  $storeIds = Mage::getModel('core/store')->load($store_code)->getId();
48
  $storeIds = array($storeIds);
49
  }
50
+ $connection = $this->_getWriteAdapter();
 
51
  $connection->beginTransaction();
52
  $fields = array();
53
  switch($status) {
81
  } else {
82
  $conditions = 'contract_id in ('.implode(',',$ids).') AND (';
83
  if($isWebsiteLevel) $conditions .= 'website_id = '. $websiteId . ' OR ';
84
+ $conditions .= 'store_id in (' . implode(',',$storeIds) . '))';
85
+ $deletedRows = $this->queryContractStatus($ids, $storeIds, $websiteId);
86
  $connection->delete($this->getTable('payline/contract_status'),$conditions);
87
 
88
  foreach ($ids as $id) {
89
  if($isWebsiteLevel) {
90
  $data = array(
91
+ 'contract_id' => $id,
92
+ 'website_id' => $websiteId,
93
+ 'store_id' => null,
94
+ 'is_primary' => $fields['is_primary'],
95
+ 'is_secondary' => $fields['is_secondary']
96
  );
97
+ $backup = $this->getMatchingRowByKeys( $deletedRows, $data );
98
+ if( $backup ) {
99
+ $data['is_included_wallet_list'] = $backup['is_included_wallet_list'];
100
+ }
101
  $connection->insert($this->getTable('payline/contract_status'),$data);
102
  }
103
  foreach ($storeIds as $storeId) {
104
  $data = array(
105
+ 'contract_id' => $id,
106
+ 'store_id' => $storeId,
107
+ 'website_id' => null,
108
+ 'is_primary' => $fields['is_primary'],
109
+ 'is_secondary' => $fields['is_secondary']
110
  );
111
+ $backup = $this->getMatchingRowByKeys( $deletedRows, $data );
112
+ if( $backup ) {
113
+ $data['is_included_wallet_list'] = $backup['is_included_wallet_list'];
114
+ }
115
  $connection->insert($this->getTable('payline/contract_status'),$data);
116
  }
117
  }
151
  public function resetContractStatus($connection,$level,$ids,$websiteId,$storeIds) {
152
  $fields = array();
153
  $fields['is_primary'] = 0;
154
+ $fields['is_secondary'] = 0;
155
+
156
  if($level == 0) {
157
  $conditions = array();
158
  $conditions[] = $connection->quoteInto('contract_id in (?)', $ids);
164
  $conditions = 'contract_id in ('.implode(',',$ids).') AND (';
165
  if($level == 2) $conditions .= 'website_id = '. $websiteId . ' OR ';
166
  $conditions .= 'store_id in (' . implode(',',$storeIds) . '))';
167
+ $deletedRows = $this->queryContractStatus($ids, $storeIds, $websiteId);
168
+
169
+ $connection->delete($this->getTable('payline/contract_status'),$conditions);
170
 
171
  foreach ($ids as $id) {
172
  if($level == 2) {
173
  $data = array(
174
  'contract_id' => $id,
175
  'website_id' => $websiteId,
176
+ 'store_id' => null,
177
  'is_primary' => $fields['is_primary'],
178
  'is_secondary' => $fields['is_secondary']
179
  );
180
+ $backup = $this->getMatchingRowByKeys( $deletedRows, $data );
181
+ if( $backup ) {
182
+ $data['is_included_wallet_list'] = $backup['is_included_wallet_list'];
183
+ }
184
  $connection->insert($this->getTable('payline/contract_status'),$data);
185
  }
186
  foreach ($storeIds as $storeId) {
187
  $data = array(
188
  'contract_id' => $id,
189
  'store_id' => $storeId,
190
+ 'website_id' => null,
191
  'is_primary' => $fields['is_primary'],
192
  'is_secondary' => $fields['is_secondary']
193
  );
194
+ $backup = $this->getMatchingRowByKeys( $deletedRows, $data );
195
+ if( $backup ) {
196
+ $data['is_included_wallet_list'] = $backup['is_included_wallet_list'];
197
+ }
198
  $connection->insert($this->getTable('payline/contract_status'),$data);
199
  }
200
  }
208
  * @return array
209
  */
210
  public function getContractsNotIn($pointOfSell) {
211
+ return Mage::getResourceModel('payline/contract')->getContractsNotIn( $pointOfSell );
 
 
 
 
 
 
 
 
 
 
 
 
 
212
  }
213
 
214
 
218
  * @return string
219
  */
220
  public function getPointOfSell($contract_ids) {
221
+ return Mage::getResourceModel('payline/contract')->getPointOfSell( $contract_ids );
 
 
 
 
 
 
 
 
 
 
222
  }
223
+
224
+ /**
225
+ * Return contract_status rows by contract ids, store ids and website id
226
+ * @param $contractIds {array} contain n contract_status.contract_id
227
+ * @param $storeIds {array} contain n contact_status.store_id
228
+ * @param $websiteId {int} website id
229
+ * @return {array} Return an array of rows returned by the query
230
+ */
231
+ public function queryContractStatus($contractIds, $storeIds, $websiteId)
232
+ {
233
+ $read = $this->_getReadAdapter();
234
+ $select = $read
235
+ ->select()
236
+ // ->distinct()
237
+ ->from( $this->getTable('payline/contract_status') );
238
+
239
+ $condition = 'contract_id IN ('. implode(',',$contractIds) .') AND (';
240
+ if( isset( $websiteId ) ) { $condition .= 'website_id='.$websiteId.' OR '; }
241
+ $condition .= 'store_id IN ('. implode(',', $storeIds) . ') )';
242
+ $select->where( $condition );
243
+ return $select->query()->fetchAll();
244
+ }
245
+
246
+ /**
247
+ * Return the matching array $matchMe in $rows.
248
+ *The match is done by checking the contract_status db table keys
249
+ * @param $rows
250
+ * @param $matchMe
251
+ * @return array The matching array or false
252
+ */
253
+ public function getMatchingRowByKeys($rows, $matchMe)
254
+ {
255
+ $matchCounter = 0;
256
+ foreach( $rows as $row ) {
257
+ if( $row['contract_id'] == $matchMe['contract_id'] ) {
258
+ $matchCounter++;
259
+ $matchCounter = $row['store_id'] == $matchMe['store_id'] ? $matchCounter + 1 : $matchCounter;
260
+ $matchCounter = $row['website_id'] == $matchMe['website_id'] ? $matchCounter + 1 : $matchCounter;
261
+ }
262
+
263
+ if( $matchCounter == 3 ) {return $row; }
264
+ else { $matchCounter = 0; }
265
+ }
266
+ // no match
267
+ return false;
268
+ }
269
+
270
  }
271
  ?>
app/code/community/Monext/Payline/Model/Observer.php CHANGED
@@ -5,38 +5,41 @@ class Monext_Payline_Model_Observer
5
 
6
  public function createInvoiceWhenStatusChange(Varien_Event_Observer $observer)
7
  {
8
- $order = $observer->getEvent()->getOrder();
9
- if ($this->_canCreateInvoice($order)) {
10
- $transId = $order->getPayment()->getCcTransId();
11
- if (!empty($transId)) {
12
- $array = array('transactionId' => $transId,
13
- 'orderRef' => $order->getRealOrderId(),
14
- 'startDate' => '',
15
- 'endDate' => '',
16
- 'transactionHistory' => '',
17
- 'version' => Monext_Payline_Helper_Data::VERSION);
18
- try {
19
- $mode = $this->_getMode($order);
20
- $res = Mage::helper('payline')->initPayline($mode)->getTransactionDetails($array);
21
- if (isset($res['payment']['action'])) {
22
- $order->setCreateInvoice(true);
23
- $action = $res['payment']['action'];
24
- if ($mode == 'NX') {
25
- $action = Monext_Payline_Model_Cpt::ACTION_AUTH_CAPTURE;
26
- }
27
- Mage::helper('payline')->createInvoice($action, $order);
28
- }
29
- } catch (Exception $e) {
30
- Mage::logException($e);
31
- Mage::helper('payline/logger')->log(
32
- '[createInvoiceWhenStatusChange] '
33
- .'['.$order->getIncrementId().'] '
34
- .'['.$transId.'] '
35
- .$e->getMessage()
36
- );
37
- }
38
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  }
 
 
 
 
 
 
 
 
 
 
 
40
  }
41
 
42
  protected function _getMode($order)
@@ -55,7 +58,7 @@ class Monext_Payline_Model_Observer
55
  protected function _canCreateInvoice($order)
56
  {
57
  $result = false;
58
- if ($order->getCreateInvoice() !== true) {
59
  $paymentMethod = $order->getPayment()->getMethod();
60
  if (strstr($paymentMethod, 'Payline') !== false) {
61
  $mode = $this->_getMode($order);
@@ -71,6 +74,42 @@ class Monext_Payline_Model_Observer
71
  }
72
  return $result;
73
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
 
75
  public function saveQuoteNxFees(Varien_Event_Observer $observer)
76
  {
@@ -238,6 +277,4 @@ class Monext_Payline_Model_Observer
238
 
239
  $controller->getResponse()->setBody(Mage::helper('core')->jsonEncode($response));
240
  }
241
-
242
  }
243
-
5
 
6
  public function createInvoiceWhenStatusChange(Varien_Event_Observer $observer)
7
  {
8
+ // infinite loop protection
9
+ if( is_null( Mage::registry('payline_create_invoice') ) ) {
10
+ $order = $observer->getEvent()->getOrder();
11
+ if ( $this->_canCreateInvoice( $order ) ) {
12
+ $this->_createInvoice( $order );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  }
14
+ // capture or not, that is the question
15
+ $paymentMethod = $order->getPayment()->getMethod();
16
+ $paymentActionConf = Mage::getStoreConfig('payment/'.$paymentMethod.'/payline_payment_action');
17
+ // if payment action user conf == authorization => need to capture
18
+ if( $paymentActionConf == "100" ) {
19
+ $fireCaptureOption = Mage::getStoreConfig('payment/'.$paymentMethod.'/capture_payment_when_i_said');
20
+ // if status match w/ user conf && !PaylineNX
21
+ if( $order->getStatus() == $fireCaptureOption && $paymentMethod != 'PaylineNX' ) {
22
+ $invoice = $this->_getInvoiceFromOrder( $order );
23
+ if( $invoice ) { $invoice->setState( Mage_Sales_Model_Order_Invoice::STATE_OPEN ); }
24
+ if( $invoice && $invoice->parentCanCapture() ) { // invoice present && ok => capture
25
+ Mage::register('payline_create_invoice', true);
26
+ $invoice->capture();
27
+ Mage::unregister('payline_create_invoice');
28
+ }
29
+ } // end if status matches
30
+ } // end if( $paymentActionConf == 100 )
31
  }
32
+
33
+ } // end createInvoiceWhenStatusChange()
34
+
35
+ /**
36
+ * Return the invoice's order data or false if not exist or NX payment
37
+ */
38
+ protected function _getInvoiceFromOrder($order)
39
+ {
40
+ $invoice = $order->getInvoiceCollection();
41
+ $invoice = sizeof($invoice) == 1 ? $invoice->getFirstItem() : false;
42
+ return $invoice;
43
  }
44
 
45
  protected function _getMode($order)
58
  protected function _canCreateInvoice($order)
59
  {
60
  $result = false;
61
+ if ( $order->canInvoice() ) {
62
  $paymentMethod = $order->getPayment()->getMethod();
63
  if (strstr($paymentMethod, 'Payline') !== false) {
64
  $mode = $this->_getMode($order);
74
  }
75
  return $result;
76
  }
77
+
78
+ protected function _createInvoice($order)
79
+ {
80
+ $transId = $order->getPayment()->getCcTransId();
81
+ if (!empty($transId)) {
82
+ $array = array(
83
+ 'transactionId' => $transId,
84
+ 'orderRef' => $order->getRealOrderId(),
85
+ 'startDate' => '',
86
+ 'endDate' => '',
87
+ 'transactionHistory' => '',
88
+ 'version' => Monext_Payline_Helper_Data::VERSION,
89
+ 'archiveSearch' => ''
90
+ );
91
+ try {
92
+ $mode = $this->_getMode($order);
93
+ $res = Mage::helper('payline')->initPayline($mode)->getTransactionDetails($array);
94
+ if (isset($res['payment']['action'])) {
95
+ $order->setCreateInvoice(true);
96
+ $action = $res['payment']['action'];
97
+ if ($mode == 'NX') {
98
+ $action = Monext_Payline_Model_Cpt::ACTION_AUTH_CAPTURE;
99
+ }
100
+ Mage::helper('payline')->createInvoice($action, $order);
101
+ }
102
+ } catch (Exception $e) {
103
+ Mage::logException($e);
104
+ Mage::helper('payline/logger')->log(
105
+ '[createInvoiceWhenStatusChange] '
106
+ .'['.$order->getIncrementId().'] '
107
+ .'['.$transId.'] '
108
+ .$e->getMessage()
109
+ );
110
+ }
111
+ }
112
+ }
113
 
114
  public function saveQuoteNxFees(Varien_Event_Observer $observer)
115
  {
277
 
278
  $controller->getResponse()->setBody(Mage::helper('core')->jsonEncode($response));
279
  }
 
280
  }
 
app/code/community/Monext/Payline/Model/Order/Invoice.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Monext_Payline_Model_Order_Invoice extends Mage_Sales_Model_Order_Invoice
3
+ {
4
+ /**
5
+ * Override parent to add the admin BO conf
6
+ * @return bool true if can capture, otherwise false
7
+ */
8
+ public function canCapture()
9
+ {
10
+ $canCapture = parent::canCapture();
11
+ $paymentMethod = $this->getOrder()->getPayment()->getMethod();
12
+ $paymentActionConf = Mage::getStoreConfig('payment/'.$paymentMethod.'/payline_payment_action');
13
+ $result = true;
14
+ // if only auth (100), check if it's time to capture
15
+ if( $paymentActionConf == "100" ) {
16
+ $fireCaptureOption = Mage::getStoreConfig('payment/'.$paymentMethod.'/capture_payment_when_i_said');
17
+ $result = ( strcasecmp('invoice', $fireCaptureOption) == 0 );
18
+ }
19
+ return $canCapture && $result ;
20
+ }
21
+
22
+ public function parentCanCapture()
23
+ {
24
+ return parent::canCapture();
25
+ }
26
+ }
app/code/community/Monext/Payline/Model/Order/Payment.php ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Monext_Payline_Model_Order_Payment extends Mage_Sales_Model_Order_Payment
3
+ {
4
+ /* @Override
5
+ * Exec parent, then set order status according to user conf
6
+ */
7
+ public function capture($invoice)
8
+ {
9
+ parent::capture( $invoice );
10
+
11
+ $msgError = '[Monext_Payline_Model_Order_Payment#capture] ERROR Unable to set order status';
12
+
13
+ if( $invoice->getTransactionId() ) {
14
+ $order = $this->getOrder();
15
+ $method = str_replace( 'Payline', '', $order->getPayment()->getMethod() );
16
+ $paylineSDK = Mage::helper('payline')->initPayline( $method );
17
+ // get the last transaction id in order to get the details from payline in order to get the action, then i die
18
+ $transId = Mage::getModel('sales/order_payment_transaction')
19
+ ->getCollection()
20
+ ->addFieldToFilter('order_id', $order->getId() )
21
+ ->setOrder('txn_id', 'DESC')
22
+ ->getFirstItem()
23
+ ->getTxnId();
24
+
25
+ $array_details = array();
26
+ $array_details['orderRef'] = $order->getRealOrderId();
27
+ $array_details['transactionId'] = $transId;
28
+ $array_details['startDate'] = '';
29
+ $array_details['endDate'] = '';
30
+ $array_details['transactionHistory']= '';
31
+ $array_details['version'] = Monext_Payline_Helper_Data::VERSION;
32
+ $array_details['archiveSearch'] = '';
33
+ $transDetails = $paylineSDK->getTransactionDetails( $array_details );
34
+
35
+ if( isset( $transDetails ) ) {
36
+ $isReAuth = $transDetails['payment']['action'] == Monext_Payline_Model_Cpt::ACTION_RE_AUTH ? true:false;
37
+ Mage::helper('payline')->setOrderStatusAccordingToPaymentMode(
38
+ $order, $transDetails['payment']['action'], $isReAuth );
39
+ $order->save();
40
+
41
+ } else {
42
+ Mage::log( $msgError );
43
+ }
44
+ } else {
45
+ Mage::log( $msgError );
46
+ }
47
+
48
+ return $this;
49
+ }
50
+ }
app/code/community/Monext/Payline/PaylinePHPKit/lib/Payline.wsdl CHANGED
@@ -1,5 +1,5 @@
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <wsdl:definitions targetNamespace="http://impl.ws.payline.experian.com" xmlns:impl="http://impl.ws.payline.experian.com" xmlns:intf="http://impl.ws.payline.experian.com" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns1="http://obj.ws.payline.experian.com">
3
  <wsdl:types>
4
  <schema elementFormDefault="qualified" targetNamespace="http://impl.ws.payline.experian.com" xmlns="http://www.w3.org/2001/XMLSchema">
5
  <import namespace="http://obj.ws.payline.experian.com"/>
@@ -8,10 +8,12 @@
8
  <annotation>
9
  <documentation>
10
  This element is the request for the
11
- doWebPayment method
 
12
  </documentation>
13
  </annotation>
14
  <sequence>
 
15
  <element name="payment" nillable="false" type="tns1:payment"/>
16
  <element name="returnURL" nillable="false" type="xsd:string"/>
17
  <element name="cancelURL" nillable="false" type="xsd:string"/>
@@ -27,6 +29,7 @@
27
  <element name="securityMode" nillable="true" type="xsd:string"/>
28
  <element name="recurring" nillable="true" type="tns1:recurring"/>
29
  <element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
 
30
  </sequence>
31
  </complexType>
32
  </element>
@@ -34,14 +37,16 @@
34
  <complexType>
35
  <annotation>
36
  <documentation>
37
- This element is the reponse from the
38
- doWebPayment method
39
  </documentation>
40
  </annotation>
41
  <sequence>
42
  <element name="result" nillable="false" type="tns1:result"/>
43
  <element name="token" nillable="false" type="xsd:string"/>
44
  <element name="redirectURL" nillable="false" type="xsd:string"/>
 
 
 
45
  </sequence>
46
  </complexType>
47
  </element>
@@ -49,8 +54,7 @@
49
  <complexType>
50
  <annotation>
51
  <documentation>
52
- This element is the reponse from the
53
- getWebPayment method
54
  </documentation>
55
  </annotation>
56
  <sequence>
@@ -63,8 +67,7 @@
63
  <complexType>
64
  <annotation>
65
  <documentation>
66
- This element is the reponse from the
67
- doWebPayment method
68
  </documentation>
69
  </annotation>
70
  <sequence>
@@ -73,11 +76,17 @@
73
  <element name="payment" nillable="false" type="tns1:payment"/>
74
  <element name="authorization" nillable="false" type="tns1:authorization"/>
75
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
 
76
  <element name="billingRecordList" nillable="true" type="tns1:billingRecordList"/>
77
  <element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
78
  <element name="card" type="tns1:cardOut"/>
79
  <element name="extendedCard" type="tns1:extendedCardType"/>
80
  <element name="order" type="tns1:order"/>
 
 
 
 
 
81
  </sequence>
82
  </complexType>
83
  </element>
@@ -85,8 +94,7 @@
85
  <complexType>
86
  <annotation>
87
  <documentation>
88
- This element is the request for the
89
- doAuthorization method
90
  </documentation>
91
  </annotation>
92
  <sequence>
@@ -99,6 +107,7 @@
99
  <element name="owner" nillable="true" type="tns1:owner"/>
100
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
101
  <element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
 
102
  </sequence>
103
  </complexType>
104
  </element>
@@ -106,8 +115,7 @@
106
  <complexType>
107
  <annotation>
108
  <documentation>
109
- This element is the reponse from the
110
- doAuthorization method
111
  </documentation>
112
  </annotation>
113
  <sequence>
@@ -116,6 +124,7 @@
116
  <element name="authorization" nillable="false" type="tns1:authorization"/>
117
  <element name="card" type="tns1:cardOut"/>
118
  <element name="extendedCard" type="tns1:extendedCardType"/>
 
119
  </sequence>
120
  </complexType>
121
  </element>
@@ -123,15 +132,16 @@
123
  <complexType>
124
  <annotation>
125
  <documentation>
126
- This element is the request for the
127
- doCapture method
128
  </documentation>
129
  </annotation>
130
  <sequence>
 
131
  <element name="transactionID" nillable="false" type="xsd:string"/>
132
  <element name="payment" nillable="false" type="tns1:payment"/>
133
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
134
  <element name="sequenceNumber" nillable="true" type="xsd:string"/>
 
135
  </sequence>
136
  </complexType>
137
  </element>
@@ -139,8 +149,7 @@
139
  <complexType>
140
  <annotation>
141
  <documentation>
142
- This element is the reponse from the
143
- doCapture method
144
  </documentation>
145
  </annotation>
146
  <sequence>
@@ -162,6 +171,7 @@
162
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
163
  <element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
164
  <element name="authorization" nillable="false" type="tns1:authorization"/>
 
165
  </sequence>
166
  </complexType>
167
  </element>
@@ -179,16 +189,17 @@
179
  <complexType>
180
  <annotation>
181
  <documentation>
182
- This element is the request for the doRefund
183
- method
184
  </documentation>
185
  </annotation>
186
  <sequence>
 
187
  <element name="transactionID" nillable="false" type="xsd:string"/>
188
  <element name="payment" nillable="false" type="tns1:payment"/>
189
  <element name="comment" nillable="true" type="xsd:string"/>
190
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
191
  <element name="sequenceNumber" nillable="true" type="xsd:string"/>
 
192
  </sequence>
193
  </complexType>
194
  </element>
@@ -196,8 +207,7 @@
196
  <complexType>
197
  <annotation>
198
  <documentation>
199
- This element is the reponse from the
200
- doRefund method
201
  </documentation>
202
  </annotation>
203
  <sequence>
@@ -210,13 +220,14 @@
210
  <complexType>
211
  <annotation>
212
  <documentation>
213
- This element is the request for the doReset
214
- method
215
  </documentation>
216
  </annotation>
217
  <sequence>
 
218
  <element name="transactionID" nillable="false" type="xsd:string"/>
219
  <element name="comment" nillable="true" type="xsd:string"/>
 
220
  </sequence>
221
  </complexType>
222
  </element>
@@ -224,8 +235,7 @@
224
  <complexType>
225
  <annotation>
226
  <documentation>
227
- This element is the reponse from the doReset
228
- method
229
  </documentation>
230
  </annotation>
231
  <sequence>
@@ -238,8 +248,7 @@
238
  <complexType>
239
  <annotation>
240
  <documentation>
241
- This element is the request for the doCredit
242
- method
243
  </documentation>
244
  </annotation>
245
  <sequence>
@@ -251,6 +260,7 @@
251
  <element name="buyer" nillable="true" type="tns1:buyer"/>
252
  <element name="owner" nillable="true" type="tns1:owner"/>
253
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
 
254
  </sequence>
255
  </complexType>
256
  </element>
@@ -258,8 +268,7 @@
258
  <complexType>
259
  <annotation>
260
  <documentation>
261
- This element is the reponse from the
262
- doCredit method
263
  </documentation>
264
  </annotation>
265
  <sequence>
@@ -270,138 +279,23 @@
270
  </sequence>
271
  </complexType>
272
  </element>
273
- <element name="doMassCaptureRequest">
274
- <complexType>
275
- <annotation>
276
- <documentation>
277
- This element is the request for the
278
- doMassCapture method
279
- </documentation>
280
- </annotation>
281
- <sequence>
282
- <element name="captureAuthorizationList" nillable="true" type="tns1:captureAuthorizationList"/>
283
- <element name="comment" nillable="true" type="xsd:string"/>
284
- </sequence>
285
- </complexType>
286
- </element>
287
- <element name="doMassCaptureResponse">
288
- <complexType>
289
- <annotation>
290
- <documentation>
291
- This element is the reponse from the
292
- doMassCapture method
293
- </documentation>
294
- </annotation>
295
- <sequence>
296
- <element name="result" nillable="false" type="tns1:result"/>
297
- <element name="massTraitmentID" nillable="false" type="xsd:string"/>
298
- <element name="date" nillable="false" type="xsd:string"/>
299
- </sequence>
300
- </complexType>
301
- </element>
302
- <element name="doMassRefundRequest">
303
- <complexType>
304
- <annotation>
305
- <documentation>
306
- This element is the request for the
307
- doMassRefund method
308
- </documentation>
309
- </annotation>
310
- <sequence>
311
- <element name="refundAuthorizationList" nillable="true" type="tns1:refundAuthorizationList"/>
312
- <element name="comment" nillable="true" type="xsd:string"/>
313
- </sequence>
314
- </complexType>
315
- </element>
316
- <element name="doMassRefundResponse">
317
- <complexType>
318
- <annotation>
319
- <documentation>
320
- This element is the reponse from the
321
- doMassRefund method
322
- </documentation>
323
- </annotation>
324
- <sequence>
325
- <element name="result" nillable="false" type="tns1:result"/>
326
- <element name="massTraitmentID" nillable="false" type="xsd:string"/>
327
- <element name="date" nillable="false" type="xsd:string"/>
328
- </sequence>
329
- </complexType>
330
- </element>
331
- <element name="doMassResetRequest">
332
- <complexType>
333
- <annotation>
334
- <documentation>
335
- This element is the request for the
336
- doMassRefund method
337
- </documentation>
338
- </annotation>
339
- <sequence>
340
- <element name="resetAuthorizationList" nillable="true" type="tns1:resetAuthorizationList"/>
341
- <element name="comment" nillable="true" type="xsd:string"/>
342
- </sequence>
343
- </complexType>
344
- </element>
345
- <element name="doMassResetResponse">
346
- <complexType>
347
- <annotation>
348
- <documentation>
349
- This element is the reponse from the
350
- doMassReset method
351
- </documentation>
352
- </annotation>
353
- <sequence>
354
- <element name="result" nillable="false" type="tns1:result"/>
355
- <element name="massTraitmentID" nillable="false" type="xsd:string"/>
356
- <element name="date" nillable="false" type="xsd:string"/>
357
- </sequence>
358
- </complexType>
359
- </element>
360
- <element name="getMassTraitmentDetailsRequest">
361
- <complexType>
362
- <annotation>
363
- <documentation>
364
- This element is the request for the
365
- getMassTraitmentDetails method
366
- </documentation>
367
- </annotation>
368
- <sequence>
369
- <element name="massTraitmentID" nillable="false" type="xsd:string"/>
370
- </sequence>
371
- </complexType>
372
- </element>
373
- <element name="getMassTraitmentDetailsResponse">
374
- <complexType>
375
- <annotation>
376
- <documentation>
377
- This element is the reponse from the
378
- getMassTraitmentDetails method
379
- </documentation>
380
- </annotation>
381
- <sequence>
382
- <element name="result" nillable="false" type="tns1:result"/>
383
- <element name="massTraitementID" nillable="false" type="xsd:string"/>
384
- <element name="totalLinesNumber" nillable="true" type="xsd:string"/>
385
- <element name="failedLinesNumber" nillable="true" type="xsd:string"/>
386
- <element name="failedListObject" nillable="true" type="tns1:failedListObject"/>
387
- </sequence>
388
- </complexType>
389
- </element>
390
  <element name="createWalletRequest">
391
  <complexType>
392
  <annotation>
393
  <documentation>
394
- This element is the request for the
395
- createWallet method
396
  </documentation>
397
  </annotation>
398
  <sequence>
399
  <element name="version" nillable="false" type="xsd:string"/>
400
  <element name="contractNumber" nillable="false" type="xsd:string"/>
401
  <element name="wallet" nillable="false" type="tns1:wallet"/>
 
402
  <element name="owner" nillable="true" type="tns1:owner"/>
403
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
404
  <element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
 
 
405
  </sequence>
406
  </complexType>
407
  </element>
@@ -409,14 +303,14 @@
409
  <complexType>
410
  <annotation>
411
  <documentation>
412
- This element is the reponse from the
413
- createWallet method
414
  </documentation>
415
  </annotation>
416
  <sequence>
417
  <element name="result" nillable="false" type="tns1:result"/>
418
  <element name="card" type="tns1:cardOut"/>
419
  <element name="extendedCard" type="tns1:extendedCardType"/>
 
420
  </sequence>
421
  </complexType>
422
  </element>
@@ -424,8 +318,7 @@
424
  <complexType>
425
  <annotation>
426
  <documentation>
427
- This element is the request for the
428
- updateWallet method
429
  </documentation>
430
  </annotation>
431
  <sequence>
@@ -433,9 +326,12 @@
433
  <element name="contractNumber" nillable="false" type="xsd:string"/>
434
  <element name="cardInd" nillable="true" type="xsd:string"/>
435
  <element name="wallet" nillable="false" type="tns1:wallet"/>
 
436
  <element name="owner" nillable="true" type="tns1:owner"/>
437
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
438
  <element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
 
 
439
  </sequence>
440
  </complexType>
441
  </element>
@@ -443,14 +339,14 @@
443
  <complexType>
444
  <annotation>
445
  <documentation>
446
- This element is the reponse from the
447
- updateWallet method
448
  </documentation>
449
  </annotation>
450
  <sequence>
451
  <element name="result" nillable="false" type="tns1:result"/>
452
  <element name="card" type="tns1:cardOut"/>
453
  <element name="extendedCard" type="tns1:extendedCardType"/>
 
454
  </sequence>
455
  </complexType>
456
  </element>
@@ -458,8 +354,7 @@
458
  <complexType>
459
  <annotation>
460
  <documentation>
461
- This element is the request for the
462
- getWallet method
463
  </documentation>
464
  </annotation>
465
  <sequence>
@@ -467,6 +362,7 @@
467
  <element name="contractNumber" nillable="false" type="xsd:string"/>
468
  <element name="walletId" nillable="false" type="xsd:string"/>
469
  <element name="cardInd" nillable="true" type="xsd:string"/>
 
470
  </sequence>
471
  </complexType>
472
  </element>
@@ -474,8 +370,7 @@
474
  <complexType>
475
  <annotation>
476
  <documentation>
477
- This element is the reponse from the
478
- getWallet method
479
  </documentation>
480
  </annotation>
481
  <sequence>
@@ -487,6 +382,8 @@
487
  <element name="disableStatus" nillable="true" type="xsd:string"/>
488
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
489
  <element name="extendedCard" nillable="true" type="tns1:extendedCardType"/>
 
 
490
  </sequence>
491
  </complexType>
492
  </element>
@@ -494,8 +391,7 @@
494
  <complexType>
495
  <annotation>
496
  <documentation>
497
- This element is the request for the
498
- getCards method
499
  </documentation>
500
  </annotation>
501
  <sequence>
@@ -509,8 +405,7 @@
509
  <complexType>
510
  <annotation>
511
  <documentation>
512
- This element is the reponse from the
513
- getCards method
514
  </documentation>
515
  </annotation>
516
  <sequence>
@@ -525,8 +420,7 @@
525
  <complexType>
526
  <annotation>
527
  <documentation>
528
- This element is the request for the
529
- disableWallet method
530
  </documentation>
531
  </annotation>
532
  <sequence>
@@ -540,8 +434,7 @@
540
  <complexType>
541
  <annotation>
542
  <documentation>
543
- This element is the reponse from the
544
- disableWallet method
545
  </documentation>
546
  </annotation>
547
  <sequence>
@@ -554,8 +447,7 @@
554
  <complexType>
555
  <annotation>
556
  <documentation>
557
- This element is the request for the
558
- enableWallet method
559
  </documentation>
560
  </annotation>
561
  <sequence>
@@ -569,8 +461,7 @@
569
  <complexType>
570
  <annotation>
571
  <documentation>
572
- This element is the reponse from the
573
- enableWallet method
574
  </documentation>
575
  </annotation>
576
  <sequence>
@@ -582,16 +473,17 @@
582
  <complexType>
583
  <annotation>
584
  <documentation>
585
- This element is the request for the
586
- doImmediateWalletPayment method
587
  </documentation>
588
  </annotation>
589
  <sequence>
 
590
  <element name="payment" nillable="false" type="tns1:payment"/>
591
  <element name="order" nillable="false" type="tns1:order"/>
592
  <element name="walletId" nillable="false" type="xsd:string"/>
593
  <element name="cardInd" nillable="true" type="xsd:string"/>
594
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
 
595
  </sequence>
596
  </complexType>
597
  </element>
@@ -599,8 +491,7 @@
599
  <complexType>
600
  <annotation>
601
  <documentation>
602
- This element is the reponse from the
603
- doImmediateWalletPayment method
604
  </documentation>
605
  </annotation>
606
  <sequence>
@@ -614,11 +505,11 @@
614
  <complexType>
615
  <annotation>
616
  <documentation>
617
- This element is the request for the
618
- doScheduledWalletPayment method
619
  </documentation>
620
  </annotation>
621
  <sequence>
 
622
  <element name="payment" nillable="false" type="tns1:payment"/>
623
  <element name="orderRef" nillable="true" type="xsd:string"/>
624
  <element name="orderDate" nillable="true" type="xsd:string"/>
@@ -627,6 +518,7 @@
627
  <element name="cardInd" nillable="true" type="xsd:string"/>
628
  <element name="order" nillable="true" type="tns1:order"/>
629
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
 
630
  </sequence>
631
  </complexType>
632
  </element>
@@ -634,8 +526,7 @@
634
  <complexType>
635
  <annotation>
636
  <documentation>
637
- This element is the reponse from the
638
- doScheduledWalletPayment method
639
  </documentation>
640
  </annotation>
641
  <sequence>
@@ -648,11 +539,11 @@
648
  <complexType>
649
  <annotation>
650
  <documentation>
651
- This element is the request for the
652
- doRecurrentWalletPayment method
653
  </documentation>
654
  </annotation>
655
  <sequence>
 
656
  <element name="payment" nillable="false" type="tns1:payment"/>
657
  <element name="orderRef" nillable="false" type="xsd:string"/>
658
  <element name="orderDate" nillable="false" type="xsd:string"/>
@@ -662,6 +553,7 @@
662
  <element name="recurring" nillable="false" type="tns1:recurring"/>
663
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
664
  <element name="order" nillable="true" type="tns1:order"/>
 
665
  </sequence>
666
  </complexType>
667
  </element>
@@ -669,8 +561,7 @@
669
  <complexType>
670
  <annotation>
671
  <documentation>
672
- This element is the reponse from the
673
- doRecurrentWalletPayment method
674
  </documentation>
675
  </annotation>
676
  <sequence>
@@ -684,11 +575,11 @@
684
  <complexType>
685
  <annotation>
686
  <documentation>
687
- This element is the request for the
688
- getPaymentRecord method
689
  </documentation>
690
  </annotation>
691
  <sequence>
 
692
  <element name="contractNumber" nillable="false" type="xsd:string"/>
693
  <element name="paymentRecordId" nillable="false" type="xsd:string"/>
694
  </sequence>
@@ -698,8 +589,7 @@
698
  <complexType>
699
  <annotation>
700
  <documentation>
701
- This element is the reponse from the
702
- getPaymentRecord method
703
  </documentation>
704
  </annotation>
705
  <sequence>
@@ -718,8 +608,7 @@
718
  <complexType>
719
  <annotation>
720
  <documentation>
721
- This element is the request for the
722
- disablePaymentRecord method
723
  </documentation>
724
  </annotation>
725
  <sequence>
@@ -732,12 +621,51 @@
732
  <complexType>
733
  <annotation>
734
  <documentation>
735
- This element is the reponse from the
736
- disablePaymentRecord method
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
737
  </documentation>
738
  </annotation>
739
  <sequence>
740
  <element name="result" nillable="false" type="tns1:result"/>
 
 
741
  </sequence>
742
  </complexType>
743
  </element>
@@ -745,11 +673,11 @@
745
  <complexType>
746
  <annotation>
747
  <documentation>
748
- This element is the request for the
749
- createWebWallet method
750
  </documentation>
751
  </annotation>
752
  <sequence>
 
753
  <element name="contractNumber" nillable="false" type="xsd:string"/>
754
  <element name="selectedContractList" nillable="true" type="tns1:selectedContractList"/>
755
  <element name="updatePersonalDetails" nillable="true" type="xsd:string"/>
@@ -763,6 +691,7 @@
763
  <element name="notificationURL" nillable="true" type="xsd:string"/>
764
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
765
  <element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
 
766
  </sequence>
767
  </complexType>
768
  </element>
@@ -770,8 +699,7 @@
770
  <complexType>
771
  <annotation>
772
  <documentation>
773
- This element is the reponse from the
774
- createWebWallet method
775
  </documentation>
776
  </annotation>
777
  <sequence>
@@ -785,17 +713,18 @@
785
  <complexType>
786
  <annotation>
787
  <documentation>
788
- This element is the request for the
789
- updateWebWallet method
790
  </documentation>
791
  </annotation>
792
  <sequence>
 
793
  <element name="contractNumber" nillable="false" type="xsd:string"/>
794
  <element name="cardInd" nillable="true" type="xsd:string"/>
795
  <element name="walletId" nillable="false" type="xsd:string"/>
796
  <element name="updatePersonalDetails" nillable="true" type="xsd:string"/>
797
  <element name="updateOwnerDetails" nillable="true" type="xsd:string"/>
798
  <element name="updatePaymentDetails" nillable="true" type="xsd:string"/>
 
799
  <element name="languageCode" nillable="true" type="xsd:string"/>
800
  <element name="customPaymentPageCode" nillable="true" type="xsd:string"/>
801
  <element name="securityMode" nillable="true" type="xsd:string"/>
@@ -804,6 +733,7 @@
804
  <element name="notificationURL" nillable="true" type="xsd:string"/>
805
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
806
  <element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
 
807
  </sequence>
808
  </complexType>
809
  </element>
@@ -811,8 +741,7 @@
811
  <complexType>
812
  <annotation>
813
  <documentation>
814
- This element is the reponse from the
815
- updateWebWallet method
816
  </documentation>
817
  </annotation>
818
  <sequence>
@@ -826,8 +755,7 @@
826
  <complexType>
827
  <annotation>
828
  <documentation>
829
- This element is the request for the
830
- getWebWallet method
831
  </documentation>
832
  </annotation>
833
  <sequence>
@@ -840,8 +768,7 @@
840
  <complexType>
841
  <annotation>
842
  <documentation>
843
- This element is the reponse from the
844
- getWebWallet method
845
  </documentation>
846
  </annotation>
847
  <sequence>
@@ -850,6 +777,9 @@
850
  <element name="owner" nillable="true" type="tns1:owner"/>
851
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
852
  <element name="extendedCard" type="tns1:extendedCardType"/>
 
 
 
853
  </sequence>
854
  </complexType>
855
  </element>
@@ -857,8 +787,7 @@
857
  <complexType>
858
  <annotation>
859
  <documentation>
860
- This element is the request for the
861
- getTransactionDetails method
862
  </documentation>
863
  </annotation>
864
  <sequence>
@@ -868,6 +797,7 @@
868
  <element name="startDate" nillable="true" type="xsd:string"/>
869
  <element name="endDate" nillable="true" type="xsd:string"/>
870
  <element name="transactionHistory" nillable="true" type="xsd:string"/>
 
871
  </sequence>
872
  </complexType>
873
  </element>
@@ -875,8 +805,7 @@
875
  <complexType>
876
  <annotation>
877
  <documentation>
878
- This element is the response for the
879
- getTransactionDetails method
880
  </documentation>
881
  </annotation>
882
  <sequence>
@@ -891,6 +820,7 @@
891
  <element name="extendedCard" type="tns1:extendedCardType"/>
892
  <element name="associatedTransactionsList" nillable="true" type="tns1:associatedTransactionsList"/>
893
  <element name="statusHistoryList" nillable="true" type="tns1:statusHistoryList"/>
 
894
  </sequence>
895
  </complexType>
896
  </element>
@@ -898,11 +828,11 @@
898
  <complexType>
899
  <annotation>
900
  <documentation>
901
- This element is the request for the
902
- transactionsSearch method
903
  </documentation>
904
  </annotation>
905
  <sequence>
 
906
  <element name="transactionId" nillable="true" type="xsd:string"/>
907
  <element name="orderRef" nillable="true" type="xsd:string"/>
908
  <element name="startDate" nillable="true" type="xsd:string"/>
@@ -921,6 +851,7 @@
921
  <element name="maxAmount" nillable="true" type="xsd:string"/>
922
  <element name="walletId" nillable="true" type="xsd:string"/>
923
  <element name="sequenceNumber" nillable="true" type="xsd:string"/>
 
924
  </sequence>
925
  </complexType>
926
  </element>
@@ -928,8 +859,7 @@
928
  <complexType>
929
  <annotation>
930
  <documentation>
931
- This element is the response for the
932
- transactionsSearch method
933
  </documentation>
934
  </annotation>
935
  <sequence>
@@ -942,8 +872,7 @@
942
  <complexType>
943
  <annotation>
944
  <documentation>
945
- This element is the request for the
946
- verifyEnrollment method
947
  </documentation>
948
  </annotation>
949
  <sequence>
@@ -959,8 +888,7 @@
959
  <complexType>
960
  <annotation>
961
  <documentation>
962
- This element is the reponse from the
963
- verifyEnrollment method
964
  </documentation>
965
  </annotation>
966
  <sequence>
@@ -982,8 +910,7 @@
982
  <complexType>
983
  <annotation>
984
  <documentation>
985
- This element is the request for the
986
- doAuthentication method
987
  </documentation>
988
  </annotation>
989
  <sequence>
@@ -998,8 +925,7 @@
998
  <complexType>
999
  <annotation>
1000
  <documentation>
1001
- This element is the reponse from the
1002
- doAuthentication method
1003
  </documentation>
1004
  </annotation>
1005
  <sequence>
@@ -1013,8 +939,7 @@
1013
  <complexType>
1014
  <annotation>
1015
  <documentation>
1016
- This element is the request for the
1017
- createMerchant method
1018
  </documentation>
1019
  </annotation>
1020
  <sequence>
@@ -1022,7 +947,8 @@
1022
  <element name="publicName" nillable="true" type="xsd:string"/>
1023
  <element name="currency">
1024
  <annotation>
1025
- <documentation>currency in ISO 4217 numeric format</documentation>
 
1026
  </annotation>
1027
  <simpleType>
1028
  <restriction base="xsd:string">
@@ -1038,7 +964,9 @@
1038
  <choice>
1039
  <element name="SIRET">
1040
  <annotation>
1041
- <documentation>Systeme d identification du Repertoire des ENtreprises</documentation>
 
 
1042
  </annotation>
1043
  <simpleType>
1044
  <restriction base="xsd:string">
@@ -1048,7 +976,8 @@
1048
  </element>
1049
  <element name="other" type="xsd:string">
1050
  <annotation>
1051
- <documentation>to use if country is not France</documentation>
 
1052
  </annotation>
1053
  </element>
1054
  </choice>
@@ -1075,7 +1004,8 @@
1075
  </element>
1076
  <element name="partner" nillable="true" type="xsd:string">
1077
  <annotation>
1078
- <documentation>Billing partner. 1:monext, 2:cetib, 3:payline.com</documentation>
 
1079
  </annotation>
1080
  </element>
1081
  </sequence>
@@ -1085,13 +1015,12 @@
1085
  <complexType>
1086
  <annotation>
1087
  <documentation>
1088
- This element is the reponse from the
1089
- createMerchant method
1090
  </documentation>
1091
  </annotation>
1092
  <sequence>
1093
  <element name="result" nillable="false" type="tns1:result"/>
1094
- <element name="connectionData" nillable="false" type="tns1:connectionData"/>
1095
  </sequence>
1096
  </complexType>
1097
  </element>
@@ -1099,15 +1028,16 @@
1099
  <complexType>
1100
  <annotation>
1101
  <documentation>
1102
- This element is the request for the
1103
- doScoringCheque method
1104
  </documentation>
1105
  </annotation>
1106
  <sequence>
1107
- <element name="payment" nillable="false" type="tns1:payment"/>
 
1108
  <element name="cheque" nillable="false" type="tns1:cheque"/>
1109
  <element name="order" nillable="false" type="tns1:order"/>
1110
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
 
1111
  </sequence>
1112
  </complexType>
1113
  </element>
@@ -1115,23 +1045,21 @@
1115
  <complexType>
1116
  <annotation>
1117
  <documentation>
1118
- This element is the reponse from the
1119
- doScoringCheque method
1120
  </documentation>
1121
  </annotation>
1122
  <sequence>
1123
  <element name="result" nillable="false" type="tns1:result"/>
1124
  <element name="transaction" nillable="false" type="tns1:transaction"/>
1125
- <element name="scoringCheque" nillable="false" type="tns1:scoringCheque"/>
1126
  </sequence>
1127
  </complexType>
1128
  </element>
1129
- <element name="getEncryptionKeyRequest">
1130
  <complexType>
1131
  <annotation>
1132
  <documentation>
1133
- This element is the request for the
1134
- getEncryptionKeyRequest method
1135
  </documentation>
1136
  </annotation>
1137
  </complexType>
@@ -1140,13 +1068,12 @@
1140
  <complexType>
1141
  <annotation>
1142
  <documentation>
1143
- This element is the reponse from the
1144
- getEncryptionKeyResponse method
1145
  </documentation>
1146
  </annotation>
1147
  <sequence>
1148
  <element name="result" nillable="false" type="tns1:result"/>
1149
- <element name="key" nillable="false" type="tns1:key"/>
1150
  </sequence>
1151
  </complexType>
1152
  </element>
@@ -1154,16 +1081,16 @@
1154
  <complexType>
1155
  <annotation>
1156
  <documentation>
1157
- This element is the request for the
1158
- doReAuthorization method
1159
  </documentation>
1160
  </annotation>
1161
  <sequence>
 
1162
  <element name="transactionID" nillable="false" type="xsd:string"/>
1163
  <element name="payment" nillable="false" type="tns1:payment"/>
1164
- <element name="order" nillable="true" type="tns1:order"/>
1165
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
1166
-
1167
  </sequence>
1168
  </complexType>
1169
  </element>
@@ -1171,8 +1098,7 @@
1171
  <complexType>
1172
  <annotation>
1173
  <documentation>
1174
- This element is the reponse from the
1175
- doReAuthorization method
1176
  </documentation>
1177
  </annotation>
1178
  <sequence>
@@ -1187,9 +1113,12 @@
1187
  <complexType>
1188
  <annotation>
1189
  <documentation>
1190
- This element is the request for the getMerchantSettings method
1191
  </documentation>
1192
  </annotation>
 
 
 
1193
  </complexType>
1194
  </element>
1195
  <element name="getMerchantSettingsResponse">
@@ -1211,12 +1140,11 @@
1211
  </sequence>
1212
  </complexType>
1213
  </element>
1214
- <element name="getBalanceRequest">
1215
  <complexType>
1216
  <annotation>
1217
  <documentation>
1218
- This element is the request for the
1219
- getBalance method
1220
  </documentation>
1221
  </annotation>
1222
  <sequence>
@@ -1229,8 +1157,7 @@
1229
  <complexType>
1230
  <annotation>
1231
  <documentation>
1232
- This element is the reponse from the
1233
- getBalance method
1234
  </documentation>
1235
  </annotation>
1236
  <sequence>
@@ -1251,8 +1178,7 @@
1251
  <complexType name="result">
1252
  <annotation>
1253
  <documentation>
1254
- This element contains information about the
1255
- process
1256
  </documentation>
1257
  </annotation>
1258
  <sequence>
@@ -1267,24 +1193,24 @@
1267
  <element name="type" nillable="false" type="xsd:string"/>
1268
  <element name="expirationDate" nillable="false" type="xsd:string"/>
1269
  <element name="cardholder" nillable="false" type="xsd:string"/>
 
1270
  </sequence>
1271
  </complexType>
1272
-
1273
  <complexType name="extendedCardType">
1274
  <sequence>
1275
  <element name="country" nillable="true" type="xsd:string"/>
1276
  <element name="isCvd" nillable="true" type="xsd:string"/>
1277
  <element name="bank" nillable="true" type="xsd:string"/>
1278
- <element name="type " nillable="true" type="xsd:string"/>
1279
- <element name="network " nillable="true" type="xsd:string"/>
1280
- <element name="product " nillable="true" type="xsd:string"/>
1281
  </sequence>
1282
  </complexType>
1283
  <complexType name="order">
1284
  <annotation>
1285
  <documentation>
1286
- This element contains information about the
1287
- order
1288
  </documentation>
1289
  </annotation>
1290
  <sequence>
@@ -1296,13 +1222,14 @@
1296
  <element name="currency" nillable="false" type="xsd:string"/>
1297
  <element name="date" nillable="false" type="xsd:string"/>
1298
  <element name="details" nillable="true" type="tns1:details"/>
 
 
1299
  </sequence>
1300
  </complexType>
1301
  <complexType name="key">
1302
  <annotation>
1303
  <documentation>
1304
- This element contains information about the
1305
- encryptionKey
1306
  </documentation>
1307
  </annotation>
1308
  <sequence>
@@ -1326,8 +1253,7 @@
1326
  <complexType name="orderDetail">
1327
  <annotation>
1328
  <documentation>
1329
- This element contains information about the
1330
- order product
1331
  </documentation>
1332
  </annotation>
1333
  <sequence>
@@ -1340,8 +1266,7 @@
1340
  <complexType name="privateData">
1341
  <annotation>
1342
  <documentation>
1343
- This element contains information about the
1344
- merchant private data
1345
  </documentation>
1346
  </annotation>
1347
  <sequence>
@@ -1352,8 +1277,7 @@
1352
  <complexType name="transaction">
1353
  <annotation>
1354
  <documentation>
1355
- This element contains information about the
1356
- transaction
1357
  </documentation>
1358
  </annotation>
1359
  <sequence>
@@ -1370,8 +1294,7 @@
1370
  <complexType name="payment">
1371
  <annotation>
1372
  <documentation>
1373
- This element contains information about the
1374
- payment
1375
  </documentation>
1376
  </annotation>
1377
  <sequence>
@@ -1386,8 +1309,7 @@
1386
  <complexType name="authorization">
1387
  <annotation>
1388
  <documentation>
1389
- This element contains information about the
1390
- authorization
1391
  </documentation>
1392
  </annotation>
1393
  <sequence>
@@ -1412,13 +1334,13 @@
1412
  <element name="password" nillable="true" type="xsd:string"/>
1413
  <element name="cardPresent" nillable="true" type="xsd:string"/>
1414
  <element name="cardholder" nillable="true" type="xsd:string"/>
 
1415
  </sequence>
1416
  </complexType>
1417
  <complexType name="buyer">
1418
  <annotation>
1419
  <documentation>
1420
- This element contains information about the
1421
- buyer
1422
  </documentation>
1423
  </annotation>
1424
  <sequence>
@@ -1426,6 +1348,7 @@
1426
  <element name="firstName" nillable="true" type="xsd:string"/>
1427
  <element name="email" nillable="true" type="xsd:string"/>
1428
  <element name="shippingAdress" nillable="true" type="tns1:address"/>
 
1429
  <element name="accountCreateDate" nillable="true" type="xsd:string"/>
1430
  <element name="accountAverageAmount" nillable="true" type="xsd:string"/>
1431
  <element name="accountOrderCount" nillable="true" type="xsd:string"/>
@@ -1441,8 +1364,7 @@
1441
  <complexType name="owner">
1442
  <annotation>
1443
  <documentation>
1444
- This element contains information about the
1445
- owner
1446
  </documentation>
1447
  </annotation>
1448
  <sequence>
@@ -1455,8 +1377,7 @@
1455
  <complexType name="address">
1456
  <annotation>
1457
  <documentation>
1458
- This element contains information about the
1459
- address
1460
  </documentation>
1461
  </annotation>
1462
  <sequence>
@@ -1472,8 +1393,7 @@
1472
  <complexType name="addressOwner">
1473
  <annotation>
1474
  <documentation>
1475
- This element contains information about the
1476
- address
1477
  </documentation>
1478
  </annotation>
1479
  <sequence>
@@ -1487,8 +1407,7 @@
1487
  <complexType name="capture">
1488
  <annotation>
1489
  <documentation>
1490
- This element contains information about the
1491
- capture
1492
  </documentation>
1493
  </annotation>
1494
  <sequence>
@@ -1499,8 +1418,7 @@
1499
  <complexType name="refund">
1500
  <annotation>
1501
  <documentation>
1502
- This element contains information about the
1503
- refund
1504
  </documentation>
1505
  </annotation>
1506
  <sequence>
@@ -1528,6 +1446,16 @@
1528
  <element maxOccurs="100" minOccurs="0" name="privateData" type="tns1:privateData"/>
1529
  </sequence>
1530
  </complexType>
 
 
 
 
 
 
 
 
 
 
1531
  <complexType name="cardsList">
1532
  <annotation>
1533
  <documentation>
@@ -1568,32 +1496,10 @@
1568
  <element maxOccurs="5000" minOccurs="1" name="transactionID" type="xsd:string"/>
1569
  </sequence>
1570
  </complexType>
1571
- <complexType name="failedListObject">
1572
- <annotation>
1573
- <documentation>
1574
- An array of mass element failed
1575
- </documentation>
1576
- </annotation>
1577
- <sequence>
1578
- <element maxOccurs="5000" minOccurs="1" name="failedObject" type="tns1:transaction"/>
1579
- </sequence>
1580
- </complexType>
1581
- <complexType name="failedObject">
1582
- <annotation>
1583
- <documentation>
1584
- This element contains failedObject
1585
- </documentation>
1586
- </annotation>
1587
- <sequence>
1588
- <element name="transactionID" nillable="false" type="xsd:string"/>
1589
- <element name="result" nillable="false" type="tns1:result"/>
1590
- </sequence>
1591
- </complexType>
1592
  <complexType name="recurring">
1593
  <annotation>
1594
  <documentation>
1595
- This element contains element for recurring
1596
- operation
1597
  </documentation>
1598
  </annotation>
1599
  <sequence>
@@ -1608,8 +1514,7 @@
1608
  <complexType name="billingRecord">
1609
  <annotation>
1610
  <documentation>
1611
- This element contains element for a billing
1612
- record
1613
  </documentation>
1614
  </annotation>
1615
  <sequence>
@@ -1693,8 +1598,7 @@
1693
  <complexType name="authentication3DSecure">
1694
  <annotation>
1695
  <documentation>
1696
- This element contains element for a 3DSecure
1697
- transaction
1698
  </documentation>
1699
  </annotation>
1700
  <sequence>
@@ -1781,7 +1685,7 @@
1781
  <complexType name="subscription">
1782
  <annotation>
1783
  <documentation>
1784
- This element contains information about the payline package subscribed by the merchant
1785
  </documentation>
1786
  </annotation>
1787
  <sequence>
@@ -1842,7 +1746,7 @@
1842
  <complexType name="technicalData">
1843
  <annotation>
1844
  <documentation>
1845
- This element contains technical data used to define acquirer service
1846
  </documentation>
1847
  </annotation>
1848
  <sequence>
@@ -1895,6 +1799,18 @@
1895
  </element>
1896
  </sequence>
1897
  </complexType>
 
 
 
 
 
 
 
 
 
 
 
 
1898
  <complexType name="ticketSend">
1899
  <annotation>
1900
  <documentation>
@@ -1945,6 +1861,16 @@
1945
  </complexType>
1946
  </element>
1947
  <element name="virtualTerminal" nillable="true" type="tns1:virtualTerminal"/>
 
 
 
 
 
 
 
 
 
 
1948
  </sequence>
1949
  </complexType>
1950
  <complexType name="virtualTerminal">
@@ -1977,12 +1903,14 @@
1977
  </complexType>
1978
  <complexType name="virtualTerminalFunction">
1979
  <annotation>
1980
- <documentation>functions availbe in virtual terminal</documentation>
 
1981
  </annotation>
1982
  <sequence>
1983
  <element name="function">
1984
  <annotation>
1985
- <documentation>Please refer to Payline documentation</documentation>
 
1986
  </annotation>
1987
  <simpleType>
1988
  <restriction base="xsd:string">
@@ -2001,7 +1929,8 @@
2001
  <complexType>
2002
  <attribute name="id">
2003
  <annotation>
2004
- <documentation>Parameter ID. Refer to payline documentation</documentation>
 
2005
  </annotation>
2006
  </attribute>
2007
  </complexType>
@@ -2012,8 +1941,7 @@
2012
  <complexType name="cheque">
2013
  <annotation>
2014
  <documentation>
2015
- This element contains information about the
2016
- cheque
2017
  </documentation>
2018
  </annotation>
2019
  <sequence>
@@ -2023,7 +1951,7 @@
2023
  <complexType name="contribution">
2024
  <annotation>
2025
  <documentation>
2026
- This element contains all information about contrinution
2027
  </documentation>
2028
  </annotation>
2029
  <sequence>
@@ -2038,8 +1966,7 @@
2038
  <complexType name="associatedTransactions">
2039
  <annotation>
2040
  <documentation>
2041
- This element contains information about the
2042
- associated transactions
2043
  </documentation>
2044
  </annotation>
2045
  <sequence>
@@ -2051,7 +1978,7 @@
2051
  <element name="originTransactionId" nillable="false" type="xsd:string"/>
2052
  </sequence>
2053
  </complexType>
2054
-
2055
  <complexType name="associatedTransactionsList">
2056
  <annotation>
2057
  <documentation>
@@ -2062,12 +1989,11 @@
2062
  <element maxOccurs="100" minOccurs="0" name="associatedTransactions" type="tns1:associatedTransactions"/>
2063
  </sequence>
2064
  </complexType>
2065
-
2066
  <complexType name="statusHistory">
2067
  <annotation>
2068
  <documentation>
2069
- This element contains information about the
2070
- status History
2071
  </documentation>
2072
  </annotation>
2073
  <sequence>
@@ -2079,7 +2005,7 @@
2079
  <element name="originTransactionId" nillable="false" type="xsd:string"/>
2080
  </sequence>
2081
  </complexType>
2082
-
2083
  <complexType name="statusHistoryList">
2084
  <annotation>
2085
  <documentation>
@@ -2090,319 +2016,309 @@
2090
  <element maxOccurs="100" minOccurs="0" name="statusHistory" type="tns1:statusHistory"/>
2091
  </sequence>
2092
  </complexType>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2093
  </schema>
2094
  </wsdl:types>
2095
- <wsdl:message name="createWalletResponse">
2096
- <wsdl:part name="parameters" element="impl:createWalletResponse">
2097
  </wsdl:part>
2098
  </wsdl:message>
2099
- <wsdl:message name="updateWalletResponse">
2100
- <wsdl:part name="parameters" element="impl:updateWalletResponse">
2101
  </wsdl:part>
2102
  </wsdl:message>
2103
- <wsdl:message name="getMassTraitmentDetailsResponse">
2104
- <wsdl:part name="parameters" element="impl:getMassTraitmentDetailsResponse">
2105
  </wsdl:part>
2106
  </wsdl:message>
2107
- <wsdl:message name="transactionsSearchResponse">
2108
- <wsdl:part name="parameters" element="impl:transactionsSearchResponse">
2109
  </wsdl:part>
2110
  </wsdl:message>
2111
- <wsdl:message name="enableWalletRequest">
2112
- <wsdl:part name="parameters" element="impl:enableWalletRequest">
2113
  </wsdl:part>
2114
  </wsdl:message>
2115
- <wsdl:message name="getEncryptionKeyResponse">
2116
- <wsdl:part name="parameters" element="impl:getEncryptionKeyResponse">
2117
  </wsdl:part>
2118
  </wsdl:message>
2119
- <wsdl:message name="getCardsResponse">
2120
- <wsdl:part name="parameters" element="impl:getCardsResponse">
2121
  </wsdl:part>
2122
  </wsdl:message>
2123
- <wsdl:message name="getPaymentRecordRequest">
2124
- <wsdl:part name="parameters" element="impl:getPaymentRecordRequest">
2125
- </wsdl:part>
2126
- </wsdl:message>
2127
- <wsdl:message name="getTransactionDetailsResponse">
2128
- <wsdl:part name="parameters" element="impl:getTransactionDetailsResponse">
2129
- </wsdl:part>
2130
- </wsdl:message>
2131
- <wsdl:message name="doAuthorizationResponse">
2132
- <wsdl:part name="parameters" element="impl:doAuthorizationResponse">
2133
- </wsdl:part>
2134
- </wsdl:message>
2135
- <wsdl:message name="doMassRefundResponse">
2136
- <wsdl:part name="parameters" element="impl:doMassRefundResponse">
2137
- </wsdl:part>
2138
- </wsdl:message>
2139
- <wsdl:message name="getWebPaymentDetailsResponse">
2140
- <wsdl:part name="parameters" element="impl:getWebPaymentDetailsResponse">
2141
  </wsdl:part>
2142
  </wsdl:message>
2143
- <wsdl:message name="getMassTraitmentDetailsRequest">
2144
- <wsdl:part name="parameters" element="impl:getMassTraitmentDetailsRequest">
2145
  </wsdl:part>
2146
  </wsdl:message>
2147
- <wsdl:message name="getCardsRequest">
2148
- <wsdl:part name="parameters" element="impl:getCardsRequest">
2149
  </wsdl:part>
2150
  </wsdl:message>
2151
- <wsdl:message name="doScheduledWalletPaymentRequest">
2152
- <wsdl:part name="parameters" element="impl:doScheduledWalletPaymentRequest">
2153
  </wsdl:part>
2154
  </wsdl:message>
2155
- <wsdl:message name="doCaptureRequest">
2156
- <wsdl:part name="parameters" element="impl:doCaptureRequest">
2157
  </wsdl:part>
2158
  </wsdl:message>
2159
  <wsdl:message name="disableWalletRequest">
2160
  <wsdl:part name="parameters" element="impl:disableWalletRequest">
2161
  </wsdl:part>
2162
  </wsdl:message>
2163
- <wsdl:message name="disablePaymentRecordResponse">
2164
- <wsdl:part name="parameters" element="impl:disablePaymentRecordResponse">
2165
  </wsdl:part>
2166
  </wsdl:message>
2167
- <wsdl:message name="doCaptureResponse">
2168
- <wsdl:part name="parameters" element="impl:doCaptureResponse">
2169
  </wsdl:part>
2170
  </wsdl:message>
2171
  <wsdl:message name="createWebWalletRequest">
2172
  <wsdl:part name="parameters" element="impl:createWebWalletRequest">
2173
  </wsdl:part>
2174
  </wsdl:message>
2175
- <wsdl:message name="createWalletRequest">
2176
- <wsdl:part name="parameters" element="impl:createWalletRequest">
2177
  </wsdl:part>
2178
  </wsdl:message>
2179
- <wsdl:message name="enableWalletResponse">
2180
- <wsdl:part name="parameters" element="impl:enableWalletResponse">
2181
  </wsdl:part>
2182
  </wsdl:message>
2183
- <wsdl:message name="getBalanceRequest">
2184
- <wsdl:part name="parameters" element="impl:getBalanceRequest">
2185
  </wsdl:part>
2186
  </wsdl:message>
2187
- <wsdl:message name="createMerchantRequest">
2188
- <wsdl:part name="parameters" element="impl:createMerchantRequest">
2189
  </wsdl:part>
2190
  </wsdl:message>
2191
- <wsdl:message name="transactionsSearchRequest">
2192
- <wsdl:part name="parameters" element="impl:transactionsSearchRequest">
2193
  </wsdl:part>
2194
  </wsdl:message>
2195
- <wsdl:message name="getWebPaymentDetailsRequest">
2196
- <wsdl:part name="parameters" element="impl:getWebPaymentDetailsRequest">
2197
  </wsdl:part>
2198
  </wsdl:message>
2199
- <wsdl:message name="doWebPaymentResponse">
2200
- <wsdl:part name="parameters" element="impl:doWebPaymentResponse">
2201
  </wsdl:part>
2202
  </wsdl:message>
2203
- <wsdl:message name="createWebWalletResponse">
2204
- <wsdl:part name="parameters" element="impl:createWebWalletResponse">
2205
  </wsdl:part>
2206
  </wsdl:message>
2207
- <wsdl:message name="getWalletRequest">
2208
- <wsdl:part name="parameters" element="impl:getWalletRequest">
2209
  </wsdl:part>
2210
  </wsdl:message>
2211
- <wsdl:message name="getPaymentRecordResponse">
2212
- <wsdl:part name="parameters" element="impl:getPaymentRecordResponse">
2213
  </wsdl:part>
2214
  </wsdl:message>
2215
- <wsdl:message name="doDebitRequest">
2216
- <wsdl:part name="parameters" element="impl:doDebitRequest">
2217
  </wsdl:part>
2218
  </wsdl:message>
2219
- <wsdl:message name="getWebWalletResponse">
2220
- <wsdl:part name="parameters" element="impl:getWebWalletResponse">
2221
  </wsdl:part>
2222
  </wsdl:message>
2223
- <wsdl:message name="getBalanceResponse">
2224
- <wsdl:part name="parameters" element="impl:getBalanceResponse">
2225
  </wsdl:part>
2226
  </wsdl:message>
2227
- <wsdl:message name="getEncryptionKeyRequest">
2228
- <wsdl:part name="parameters" element="impl:getEncryptionKeyRequest">
2229
  </wsdl:part>
2230
  </wsdl:message>
2231
- <wsdl:message name="getWebWalletRequest">
2232
- <wsdl:part name="parameters" element="impl:getWebWalletRequest">
2233
  </wsdl:part>
2234
  </wsdl:message>
2235
  <wsdl:message name="updateWebWalletRequest">
2236
  <wsdl:part name="parameters" element="impl:updateWebWalletRequest">
2237
  </wsdl:part>
2238
  </wsdl:message>
2239
- <wsdl:message name="doMassCaptureRequest">
2240
- <wsdl:part name="parameters" element="impl:doMassCaptureRequest">
2241
- </wsdl:part>
2242
- </wsdl:message>
2243
- <wsdl:message name="doReAuthorizationRequest">
2244
- <wsdl:part name="parameters" element="impl:doReAuthorizationRequest">
2245
- </wsdl:part>
2246
- </wsdl:message>
2247
- <wsdl:message name="doMassResetResponse">
2248
- <wsdl:part name="parameters" element="impl:doMassResetResponse">
2249
  </wsdl:part>
2250
  </wsdl:message>
2251
- <wsdl:message name="doResetRequest">
2252
- <wsdl:part name="parameters" element="impl:doResetRequest">
2253
  </wsdl:part>
2254
  </wsdl:message>
2255
- <wsdl:message name="disablePaymentRecordRequest">
2256
- <wsdl:part name="parameters" element="impl:disablePaymentRecordRequest">
2257
  </wsdl:part>
2258
  </wsdl:message>
2259
- <wsdl:message name="disableWalletResponse">
2260
- <wsdl:part name="parameters" element="impl:disableWalletResponse">
2261
  </wsdl:part>
2262
  </wsdl:message>
2263
- <wsdl:message name="doImmediateWalletPaymentRequest">
2264
- <wsdl:part name="parameters" element="impl:doImmediateWalletPaymentRequest">
2265
  </wsdl:part>
2266
  </wsdl:message>
2267
- <wsdl:message name="verifyEnrollmentResponse">
2268
- <wsdl:part name="parameters" element="impl:verifyEnrollmentResponse">
2269
  </wsdl:part>
2270
  </wsdl:message>
2271
  <wsdl:message name="updateWalletRequest">
2272
  <wsdl:part name="parameters" element="impl:updateWalletRequest">
2273
  </wsdl:part>
2274
  </wsdl:message>
2275
- <wsdl:message name="doRecurrentWalletPaymentResponse">
2276
- <wsdl:part name="parameters" element="impl:doRecurrentWalletPaymentResponse">
2277
  </wsdl:part>
2278
  </wsdl:message>
2279
- <wsdl:message name="doDebitResponse">
2280
- <wsdl:part name="parameters" element="impl:doDebitResponse">
2281
  </wsdl:part>
2282
  </wsdl:message>
2283
- <wsdl:message name="updateWebWalletResponse">
2284
- <wsdl:part name="parameters" element="impl:updateWebWalletResponse">
2285
  </wsdl:part>
2286
  </wsdl:message>
2287
- <wsdl:message name="doMassCaptureResponse">
2288
- <wsdl:part name="parameters" element="impl:doMassCaptureResponse">
2289
  </wsdl:part>
2290
  </wsdl:message>
2291
- <wsdl:message name="doRefundResponse">
2292
- <wsdl:part name="parameters" element="impl:doRefundResponse">
2293
  </wsdl:part>
2294
  </wsdl:message>
2295
- <wsdl:message name="doCreditRequest">
2296
- <wsdl:part name="parameters" element="impl:doCreditRequest">
2297
  </wsdl:part>
2298
  </wsdl:message>
2299
- <wsdl:message name="doRecurrentWalletPaymentRequest">
2300
- <wsdl:part name="parameters" element="impl:doRecurrentWalletPaymentRequest">
2301
  </wsdl:part>
2302
  </wsdl:message>
2303
- <wsdl:message name="doReAuthorizationResponse">
2304
- <wsdl:part name="parameters" element="impl:doReAuthorizationResponse">
2305
  </wsdl:part>
2306
  </wsdl:message>
2307
- <wsdl:message name="getWalletResponse">
2308
- <wsdl:part name="parameters" element="impl:getWalletResponse">
2309
  </wsdl:part>
2310
  </wsdl:message>
2311
- <wsdl:message name="getMerchantSettingsResponse">
2312
- <wsdl:part name="parameters" element="impl:getMerchantSettingsResponse">
2313
  </wsdl:part>
2314
  </wsdl:message>
2315
- <wsdl:message name="verifyAuthenticationRequest">
2316
- <wsdl:part name="parameters" element="impl:verifyAuthenticationRequest">
2317
  </wsdl:part>
2318
  </wsdl:message>
2319
- <wsdl:message name="verifyEnrollmentRequest">
2320
- <wsdl:part name="parameters" element="impl:verifyEnrollmentRequest">
2321
  </wsdl:part>
2322
  </wsdl:message>
2323
- <wsdl:message name="doAuthorizationRequest">
2324
- <wsdl:part name="parameters" element="impl:doAuthorizationRequest">
2325
  </wsdl:part>
2326
  </wsdl:message>
2327
- <wsdl:message name="getTransactionDetailsRequest">
2328
- <wsdl:part name="parameters" element="impl:getTransactionDetailsRequest">
2329
  </wsdl:part>
2330
  </wsdl:message>
2331
- <wsdl:message name="doRefundRequest">
2332
- <wsdl:part name="parameters" element="impl:doRefundRequest">
2333
  </wsdl:part>
2334
  </wsdl:message>
2335
- <wsdl:message name="createMerchantResponse">
2336
- <wsdl:part name="parameters" element="impl:createMerchantResponse">
2337
  </wsdl:part>
2338
  </wsdl:message>
2339
- <wsdl:message name="doScoringChequeResponse">
2340
- <wsdl:part name="parameters" element="impl:doScoringChequeResponse">
2341
  </wsdl:part>
2342
  </wsdl:message>
2343
- <wsdl:message name="doMassResetRequest">
2344
- <wsdl:part name="parameters" element="impl:doMassResetRequest">
2345
  </wsdl:part>
2346
  </wsdl:message>
2347
- <wsdl:message name="doScoringChequeRequest">
2348
- <wsdl:part name="parameters" element="impl:doScoringChequeRequest">
2349
  </wsdl:part>
2350
  </wsdl:message>
2351
- <wsdl:message name="doWebPaymentRequest">
2352
- <wsdl:part name="parameters" element="impl:doWebPaymentRequest">
2353
  </wsdl:part>
2354
  </wsdl:message>
2355
- <wsdl:message name="doResetResponse">
2356
- <wsdl:part name="parameters" element="impl:doResetResponse">
2357
  </wsdl:part>
2358
  </wsdl:message>
2359
- <wsdl:message name="doImmediateWalletPaymentResponse">
2360
- <wsdl:part name="parameters" element="impl:doImmediateWalletPaymentResponse">
2361
  </wsdl:part>
2362
  </wsdl:message>
2363
- <wsdl:message name="doMassRefundRequest">
2364
- <wsdl:part name="parameters" element="impl:doMassRefundRequest">
2365
  </wsdl:part>
2366
  </wsdl:message>
2367
- <wsdl:message name="doCreditResponse">
2368
- <wsdl:part name="parameters" element="impl:doCreditResponse">
2369
  </wsdl:part>
2370
  </wsdl:message>
2371
- <wsdl:message name="getMerchantSettingsRequest">
2372
- <wsdl:part name="parameters" element="impl:getMerchantSettingsRequest">
2373
  </wsdl:part>
2374
  </wsdl:message>
2375
- <wsdl:message name="doScheduledWalletPaymentResponse">
2376
- <wsdl:part name="parameters" element="impl:doScheduledWalletPaymentResponse">
2377
  </wsdl:part>
2378
  </wsdl:message>
2379
- <wsdl:message name="verifyAuthenticationResponse">
2380
- <wsdl:part name="parameters" element="impl:verifyAuthenticationResponse">
2381
  </wsdl:part>
2382
  </wsdl:message>
2383
- <wsdl:portType name="MassPaymentAPI">
2384
- <wsdl:operation name="doMassCapture">
2385
- <wsdl:input name="doMassCaptureRequest" message="impl:doMassCaptureRequest">
2386
- </wsdl:input>
2387
- <wsdl:output name="doMassCaptureResponse" message="impl:doMassCaptureResponse">
2388
- </wsdl:output>
2389
- </wsdl:operation>
2390
- <wsdl:operation name="doMassRefund">
2391
- <wsdl:input name="doMassRefundRequest" message="impl:doMassRefundRequest">
2392
- </wsdl:input>
2393
- <wsdl:output name="doMassRefundResponse" message="impl:doMassRefundResponse">
2394
- </wsdl:output>
2395
- </wsdl:operation>
2396
- <wsdl:operation name="doMassReset">
2397
- <wsdl:input name="doMassResetRequest" message="impl:doMassResetRequest">
2398
  </wsdl:input>
2399
- <wsdl:output name="doMassResetResponse" message="impl:doMassResetResponse">
2400
  </wsdl:output>
2401
  </wsdl:operation>
2402
- <wsdl:operation name="getMassTraitmentDetails">
2403
- <wsdl:input name="getMassTraitmentDetailsRequest" message="impl:getMassTraitmentDetailsRequest">
2404
  </wsdl:input>
2405
- <wsdl:output name="getMassTraitmentDetailsResponse" message="impl:getMassTraitmentDetailsResponse">
2406
  </wsdl:output>
2407
  </wsdl:operation>
2408
  </wsdl:portType>
@@ -2419,6 +2335,12 @@
2419
  <wsdl:output name="getWebPaymentDetailsResponse" message="impl:getWebPaymentDetailsResponse">
2420
  </wsdl:output>
2421
  </wsdl:operation>
 
 
 
 
 
 
2422
  <wsdl:operation name="createWebWallet">
2423
  <wsdl:input name="createWebWalletRequest" message="impl:createWebWalletRequest">
2424
  </wsdl:input>
@@ -2590,59 +2512,6 @@
2590
  </wsdl:output>
2591
  </wsdl:operation>
2592
  </wsdl:portType>
2593
- <wsdl:portType name="ExtendedAPI">
2594
- <wsdl:operation name="getTransactionDetails">
2595
- <wsdl:input name="getTransactionDetailsRequest" message="impl:getTransactionDetailsRequest">
2596
- </wsdl:input>
2597
- <wsdl:output name="getTransactionDetailsResponse" message="impl:getTransactionDetailsResponse">
2598
- </wsdl:output>
2599
- </wsdl:operation>
2600
- <wsdl:operation name="transactionsSearch">
2601
- <wsdl:input name="transactionsSearchRequest" message="impl:transactionsSearchRequest">
2602
- </wsdl:input>
2603
- <wsdl:output name="transactionsSearchResponse" message="impl:transactionsSearchResponse">
2604
- </wsdl:output>
2605
- </wsdl:operation>
2606
- </wsdl:portType>
2607
- <wsdl:binding name="MassPaymentAPISoapBinding" type="impl:MassPaymentAPI">
2608
- <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
2609
- <wsdl:operation name="doMassCapture">
2610
- <wsdlsoap:operation soapAction="doMassCapture"/>
2611
- <wsdl:input>
2612
- <wsdlsoap:body use="literal"/>
2613
- </wsdl:input>
2614
- <wsdl:output>
2615
- <wsdlsoap:body use="literal"/>
2616
- </wsdl:output>
2617
- </wsdl:operation>
2618
- <wsdl:operation name="doMassRefund">
2619
- <wsdlsoap:operation soapAction="doMassRefund"/>
2620
- <wsdl:input>
2621
- <wsdlsoap:body use="literal"/>
2622
- </wsdl:input>
2623
- <wsdl:output>
2624
- <wsdlsoap:body use="literal"/>
2625
- </wsdl:output>
2626
- </wsdl:operation>
2627
- <wsdl:operation name="doMassReset">
2628
- <wsdlsoap:operation soapAction="doMassReset"/>
2629
- <wsdl:input>
2630
- <wsdlsoap:body use="literal"/>
2631
- </wsdl:input>
2632
- <wsdl:output>
2633
- <wsdlsoap:body use="literal"/>
2634
- </wsdl:output>
2635
- </wsdl:operation>
2636
- <wsdl:operation name="getMassTraitmentDetails">
2637
- <wsdlsoap:operation soapAction="getMassTraitmentDetails"/>
2638
- <wsdl:input>
2639
- <wsdlsoap:body use="literal"/>
2640
- </wsdl:input>
2641
- <wsdl:output>
2642
- <wsdlsoap:body use="literal"/>
2643
- </wsdl:output>
2644
- </wsdl:operation>
2645
- </wsdl:binding>
2646
  <wsdl:binding name="DirectPaymentAPISoapBinding" type="impl:DirectPaymentAPI">
2647
  <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
2648
  <wsdl:operation name="doAuthorization">
@@ -2912,6 +2781,15 @@
2912
  <wsdlsoap:body use="literal"/>
2913
  </wsdl:output>
2914
  </wsdl:operation>
 
 
 
 
 
 
 
 
 
2915
  <wsdl:operation name="createWebWallet">
2916
  <wsdlsoap:operation soapAction="createWebWallet"/>
2917
  <wsdl:input>
@@ -2941,12 +2819,12 @@
2941
  </wsdl:operation>
2942
  </wsdl:binding>
2943
  <wsdl:service name="WebPaymentAPI">
2944
- <wsdl:port name="WebPaymentAPI_homo" binding="impl:WebPaymentAPISoapBinding">
2945
  <wsdlsoap:address location=""/>
2946
  </wsdl:port>
2947
  </wsdl:service>
2948
  <wsdl:service name="ExtendedAPI">
2949
- <wsdl:port name="ExtendedAPI_homo" binding="impl:ExtendedAPISoapBinding">
2950
  <wsdlsoap:address location=""/>
2951
  </wsdl:port>
2952
  </wsdl:service>
1
  <?xml version="1.0" encoding="UTF-8"?>
2
+ <wsdl:definitions targetNamespace="http://impl.ws.payline.experian.com" xmlns:tns1="http://obj.ws.payline.experian.com" xmlns:impl="http://impl.ws.payline.experian.com" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:intf="http://impl.ws.payline.experian.com">
3
  <wsdl:types>
4
  <schema elementFormDefault="qualified" targetNamespace="http://impl.ws.payline.experian.com" xmlns="http://www.w3.org/2001/XMLSchema">
5
  <import namespace="http://obj.ws.payline.experian.com"/>
8
  <annotation>
9
  <documentation>
10
  This element is the request for the
11
+ doWebPayment
12
+ method
13
  </documentation>
14
  </annotation>
15
  <sequence>
16
+ <element name="version" nillable="false" type="xsd:string"/>
17
  <element name="payment" nillable="false" type="tns1:payment"/>
18
  <element name="returnURL" nillable="false" type="xsd:string"/>
19
  <element name="cancelURL" nillable="false" type="xsd:string"/>
29
  <element name="securityMode" nillable="true" type="xsd:string"/>
30
  <element name="recurring" nillable="true" type="tns1:recurring"/>
31
  <element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
32
+ <element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
33
  </sequence>
34
  </complexType>
35
  </element>
37
  <complexType>
38
  <annotation>
39
  <documentation>
40
+ This element is the reponse from the doWebPayment method
 
41
  </documentation>
42
  </annotation>
43
  <sequence>
44
  <element name="result" nillable="false" type="tns1:result"/>
45
  <element name="token" nillable="false" type="xsd:string"/>
46
  <element name="redirectURL" nillable="false" type="xsd:string"/>
47
+ <element name="stepCode" nillable="true" type="xsd:string"/>
48
+ <element name="reqCode" nillable="true" type="xsd:string"/>
49
+ <element name="method" nillable="true" type="xsd:string"/>
50
  </sequence>
51
  </complexType>
52
  </element>
54
  <complexType>
55
  <annotation>
56
  <documentation>
57
+ This element is the reponse from the getWebPayment method
 
58
  </documentation>
59
  </annotation>
60
  <sequence>
67
  <complexType>
68
  <annotation>
69
  <documentation>
70
+ This element is the reponse from the doWebPayment method
 
71
  </documentation>
72
  </annotation>
73
  <sequence>
76
  <element name="payment" nillable="false" type="tns1:payment"/>
77
  <element name="authorization" nillable="false" type="tns1:authorization"/>
78
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
79
+ <element name="paymentRecordId" nillable="false" type="xsd:string"/>
80
  <element name="billingRecordList" nillable="true" type="tns1:billingRecordList"/>
81
  <element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
82
  <element name="card" type="tns1:cardOut"/>
83
  <element name="extendedCard" type="tns1:extendedCardType"/>
84
  <element name="order" type="tns1:order"/>
85
+ <element name="paymentAdditionalList" nillable="true" type="tns1:paymentAdditionalList"/>
86
+ <element name="media" nillable="true" type="xsd:string"/>
87
+ <element name="numberOfAttempt" nillable="true" type="xsd:string"/>
88
+ <element name="wallet" nillable="true" type="tns1:wallet"/>
89
+ <element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
90
  </sequence>
91
  </complexType>
92
  </element>
94
  <complexType>
95
  <annotation>
96
  <documentation>
97
+ This element is the request for the doAuthorization method
 
98
  </documentation>
99
  </annotation>
100
  <sequence>
107
  <element name="owner" nillable="true" type="tns1:owner"/>
108
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
109
  <element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
110
+ <element name="media" nillable="true" type="xsd:string"/>
111
  </sequence>
112
  </complexType>
113
  </element>
115
  <complexType>
116
  <annotation>
117
  <documentation>
118
+ This element is the reponse from the doAuthorization method
 
119
  </documentation>
120
  </annotation>
121
  <sequence>
124
  <element name="authorization" nillable="false" type="tns1:authorization"/>
125
  <element name="card" type="tns1:cardOut"/>
126
  <element name="extendedCard" type="tns1:extendedCardType"/>
127
+ <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
128
  </sequence>
129
  </complexType>
130
  </element>
132
  <complexType>
133
  <annotation>
134
  <documentation>
135
+ This element is the request for the doCapture method
 
136
  </documentation>
137
  </annotation>
138
  <sequence>
139
+ <element name="version" nillable="false" type="xsd:string"/>
140
  <element name="transactionID" nillable="false" type="xsd:string"/>
141
  <element name="payment" nillable="false" type="tns1:payment"/>
142
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
143
  <element name="sequenceNumber" nillable="true" type="xsd:string"/>
144
+ <element name="media" nillable="true" type="xsd:string"/>
145
  </sequence>
146
  </complexType>
147
  </element>
149
  <complexType>
150
  <annotation>
151
  <documentation>
152
+ This element is the reponse from the doCapture method
 
153
  </documentation>
154
  </annotation>
155
  <sequence>
171
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
172
  <element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
173
  <element name="authorization" nillable="false" type="tns1:authorization"/>
174
+ <element name="media" nillable="true" type="xsd:string"/>
175
  </sequence>
176
  </complexType>
177
  </element>
189
  <complexType>
190
  <annotation>
191
  <documentation>
192
+ This element is the request for the doRefund method
 
193
  </documentation>
194
  </annotation>
195
  <sequence>
196
+ <element name="version" nillable="false" type="xsd:string"/>
197
  <element name="transactionID" nillable="false" type="xsd:string"/>
198
  <element name="payment" nillable="false" type="tns1:payment"/>
199
  <element name="comment" nillable="true" type="xsd:string"/>
200
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
201
  <element name="sequenceNumber" nillable="true" type="xsd:string"/>
202
+ <element name="media" nillable="true" type="xsd:string"/>
203
  </sequence>
204
  </complexType>
205
  </element>
207
  <complexType>
208
  <annotation>
209
  <documentation>
210
+ This element is the reponse from the doRefund method
 
211
  </documentation>
212
  </annotation>
213
  <sequence>
220
  <complexType>
221
  <annotation>
222
  <documentation>
223
+ This element is the request for the doReset method
 
224
  </documentation>
225
  </annotation>
226
  <sequence>
227
+ <element name="version" nillable="false" type="xsd:string"/>
228
  <element name="transactionID" nillable="false" type="xsd:string"/>
229
  <element name="comment" nillable="true" type="xsd:string"/>
230
+ <element name="media" nillable="true" type="xsd:string"/>
231
  </sequence>
232
  </complexType>
233
  </element>
235
  <complexType>
236
  <annotation>
237
  <documentation>
238
+ This element is the reponse from the doReset method
 
239
  </documentation>
240
  </annotation>
241
  <sequence>
248
  <complexType>
249
  <annotation>
250
  <documentation>
251
+ This element is the request for the doCredit method
 
252
  </documentation>
253
  </annotation>
254
  <sequence>
260
  <element name="buyer" nillable="true" type="tns1:buyer"/>
261
  <element name="owner" nillable="true" type="tns1:owner"/>
262
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
263
+ <element name="media" nillable="true" type="xsd:string"/>
264
  </sequence>
265
  </complexType>
266
  </element>
268
  <complexType>
269
  <annotation>
270
  <documentation>
271
+ This element is the reponse from the doCredit method
 
272
  </documentation>
273
  </annotation>
274
  <sequence>
279
  </sequence>
280
  </complexType>
281
  </element>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
282
  <element name="createWalletRequest">
283
  <complexType>
284
  <annotation>
285
  <documentation>
286
+ This element is the request for the createWallet method
 
287
  </documentation>
288
  </annotation>
289
  <sequence>
290
  <element name="version" nillable="false" type="xsd:string"/>
291
  <element name="contractNumber" nillable="false" type="xsd:string"/>
292
  <element name="wallet" nillable="false" type="tns1:wallet"/>
293
+ <element name="buyer" nillable="true" type="tns1:buyer"/>
294
  <element name="owner" nillable="true" type="tns1:owner"/>
295
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
296
  <element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
297
+ <element name="media" nillable="true" type="xsd:string"/>
298
+ <element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
299
  </sequence>
300
  </complexType>
301
  </element>
303
  <complexType>
304
  <annotation>
305
  <documentation>
306
+ This element is the reponse from the createWallet method
 
307
  </documentation>
308
  </annotation>
309
  <sequence>
310
  <element name="result" nillable="false" type="tns1:result"/>
311
  <element name="card" type="tns1:cardOut"/>
312
  <element name="extendedCard" type="tns1:extendedCardType"/>
313
+ <element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
314
  </sequence>
315
  </complexType>
316
  </element>
318
  <complexType>
319
  <annotation>
320
  <documentation>
321
+ This element is the request for the updateWallet method
 
322
  </documentation>
323
  </annotation>
324
  <sequence>
326
  <element name="contractNumber" nillable="false" type="xsd:string"/>
327
  <element name="cardInd" nillable="true" type="xsd:string"/>
328
  <element name="wallet" nillable="false" type="tns1:wallet"/>
329
+ <element name="buyer" nillable="true" type="tns1:buyer"/>
330
  <element name="owner" nillable="true" type="tns1:owner"/>
331
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
332
  <element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
333
+ <element name="media" nillable="true" type="xsd:string"/>
334
+ <element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
335
  </sequence>
336
  </complexType>
337
  </element>
339
  <complexType>
340
  <annotation>
341
  <documentation>
342
+ This element is the reponse from the updateWallet method
 
343
  </documentation>
344
  </annotation>
345
  <sequence>
346
  <element name="result" nillable="false" type="tns1:result"/>
347
  <element name="card" type="tns1:cardOut"/>
348
  <element name="extendedCard" type="tns1:extendedCardType"/>
349
+ <element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
350
  </sequence>
351
  </complexType>
352
  </element>
354
  <complexType>
355
  <annotation>
356
  <documentation>
357
+ This element is the request for the getWallet method
 
358
  </documentation>
359
  </annotation>
360
  <sequence>
362
  <element name="contractNumber" nillable="false" type="xsd:string"/>
363
  <element name="walletId" nillable="false" type="xsd:string"/>
364
  <element name="cardInd" nillable="true" type="xsd:string"/>
365
+ <element name="media" nillable="true" type="xsd:string"/>
366
  </sequence>
367
  </complexType>
368
  </element>
370
  <complexType>
371
  <annotation>
372
  <documentation>
373
+ This element is the reponse from the getWallet method
 
374
  </documentation>
375
  </annotation>
376
  <sequence>
382
  <element name="disableStatus" nillable="true" type="xsd:string"/>
383
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
384
  <element name="extendedCard" nillable="true" type="tns1:extendedCardType"/>
385
+ <element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
386
+ <element name="media" nillable="true" type="xsd:string"/>
387
  </sequence>
388
  </complexType>
389
  </element>
391
  <complexType>
392
  <annotation>
393
  <documentation>
394
+ This element is the request for the getCards method
 
395
  </documentation>
396
  </annotation>
397
  <sequence>
405
  <complexType>
406
  <annotation>
407
  <documentation>
408
+ This element is the reponse from the getCards method
 
409
  </documentation>
410
  </annotation>
411
  <sequence>
420
  <complexType>
421
  <annotation>
422
  <documentation>
423
+ This element is the request for the disableWallet method
 
424
  </documentation>
425
  </annotation>
426
  <sequence>
434
  <complexType>
435
  <annotation>
436
  <documentation>
437
+ This element is the reponse from the disableWallet method
 
438
  </documentation>
439
  </annotation>
440
  <sequence>
447
  <complexType>
448
  <annotation>
449
  <documentation>
450
+ This element is the request for the enableWallet method
 
451
  </documentation>
452
  </annotation>
453
  <sequence>
461
  <complexType>
462
  <annotation>
463
  <documentation>
464
+ This element is the reponse from the enableWallet method
 
465
  </documentation>
466
  </annotation>
467
  <sequence>
473
  <complexType>
474
  <annotation>
475
  <documentation>
476
+ This element is the request for the doImmediateWalletPayment method
 
477
  </documentation>
478
  </annotation>
479
  <sequence>
480
+ <element name="version" nillable="false" type="xsd:string"/>
481
  <element name="payment" nillable="false" type="tns1:payment"/>
482
  <element name="order" nillable="false" type="tns1:order"/>
483
  <element name="walletId" nillable="false" type="xsd:string"/>
484
  <element name="cardInd" nillable="true" type="xsd:string"/>
485
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
486
+ <element name="media" nillable="true" type="xsd:string"/>
487
  </sequence>
488
  </complexType>
489
  </element>
491
  <complexType>
492
  <annotation>
493
  <documentation>
494
+ This element is the reponse from the doImmediateWalletPayment method
 
495
  </documentation>
496
  </annotation>
497
  <sequence>
505
  <complexType>
506
  <annotation>
507
  <documentation>
508
+ This element is the request for the doScheduledWalletPayment method
 
509
  </documentation>
510
  </annotation>
511
  <sequence>
512
+ <element name="version" nillable="false" type="xsd:string"/>
513
  <element name="payment" nillable="false" type="tns1:payment"/>
514
  <element name="orderRef" nillable="true" type="xsd:string"/>
515
  <element name="orderDate" nillable="true" type="xsd:string"/>
518
  <element name="cardInd" nillable="true" type="xsd:string"/>
519
  <element name="order" nillable="true" type="tns1:order"/>
520
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
521
+ <element name="media" nillable="true" type="xsd:string"/>
522
  </sequence>
523
  </complexType>
524
  </element>
526
  <complexType>
527
  <annotation>
528
  <documentation>
529
+ This element is the reponse from the doScheduledWalletPayment method
 
530
  </documentation>
531
  </annotation>
532
  <sequence>
539
  <complexType>
540
  <annotation>
541
  <documentation>
542
+ This element is the request for the doRecurrentWalletPayment method
 
543
  </documentation>
544
  </annotation>
545
  <sequence>
546
+ <element name="version" nillable="false" type="xsd:string"/>
547
  <element name="payment" nillable="false" type="tns1:payment"/>
548
  <element name="orderRef" nillable="false" type="xsd:string"/>
549
  <element name="orderDate" nillable="false" type="xsd:string"/>
553
  <element name="recurring" nillable="false" type="tns1:recurring"/>
554
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
555
  <element name="order" nillable="true" type="tns1:order"/>
556
+ <element name="media" nillable="true" type="xsd:string"/>
557
  </sequence>
558
  </complexType>
559
  </element>
561
  <complexType>
562
  <annotation>
563
  <documentation>
564
+ This element is the reponse from the doRecurrentWalletPayment method
 
565
  </documentation>
566
  </annotation>
567
  <sequence>
575
  <complexType>
576
  <annotation>
577
  <documentation>
578
+ This element is the request for the getPaymentRecord method
 
579
  </documentation>
580
  </annotation>
581
  <sequence>
582
+ <element name="version" nillable="false" type="xsd:string"/>
583
  <element name="contractNumber" nillable="false" type="xsd:string"/>
584
  <element name="paymentRecordId" nillable="false" type="xsd:string"/>
585
  </sequence>
589
  <complexType>
590
  <annotation>
591
  <documentation>
592
+ This element is the reponse from the getPaymentRecord method
 
593
  </documentation>
594
  </annotation>
595
  <sequence>
608
  <complexType>
609
  <annotation>
610
  <documentation>
611
+ This element is the request for the disablePaymentRecord method
 
612
  </documentation>
613
  </annotation>
614
  <sequence>
621
  <complexType>
622
  <annotation>
623
  <documentation>
624
+ This element is the reponse from the disablePaymentRecord method
625
+ </documentation>
626
+ </annotation>
627
+ <sequence>
628
+ <element name="result" nillable="false" type="tns1:result"/>
629
+ </sequence>
630
+ </complexType>
631
+ </element>
632
+ <element name="manageWebWalletRequest">
633
+ <complexType>
634
+ <annotation>
635
+ <documentation>
636
+ This element is the request for the manageWebWallet method
637
+ </documentation>
638
+ </annotation>
639
+ <sequence>
640
+ <element name="version" nillable="false" type="xsd:string"/>
641
+ <element name="contractNumber" nillable="false" type="xsd:string"/>
642
+ <element name="selectedContractList" nillable="true" type="tns1:selectedContractList"/>
643
+ <element name="updatePersonalDetails" nillable="true" type="xsd:string"/>
644
+ <element name="buyer" nillable="false" type="tns1:buyer"/>
645
+ <element name="owner" nillable="true" type="tns1:owner"/>
646
+ <element name="languageCode" nillable="true" type="xsd:string"/>
647
+ <element name="customPaymentPageCode" nillable="true" type="xsd:string"/>
648
+ <element name="securityMode" nillable="true" type="xsd:string"/>
649
+ <element name="returnURL" nillable="false" type="xsd:string"/>
650
+ <element name="cancelURL" nillable="false" type="xsd:string"/>
651
+ <element name="notificationURL" nillable="true" type="xsd:string"/>
652
+ <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
653
+ <element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
654
+ <element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
655
+ </sequence>
656
+ </complexType>
657
+ </element>
658
+ <element name="manageWebWalletResponse">
659
+ <complexType>
660
+ <annotation>
661
+ <documentation>
662
+ This element is the reponse from the manageWebWallet method
663
  </documentation>
664
  </annotation>
665
  <sequence>
666
  <element name="result" nillable="false" type="tns1:result"/>
667
+ <element name="token" nillable="false" type="xsd:string"/>
668
+ <element name="redirectURL" nillable="false" type="xsd:string"/>
669
  </sequence>
670
  </complexType>
671
  </element>
673
  <complexType>
674
  <annotation>
675
  <documentation>
676
+ This element is the request for the createWebWallet method
 
677
  </documentation>
678
  </annotation>
679
  <sequence>
680
+ <element name="version" nillable="false" type="xsd:string"/>
681
  <element name="contractNumber" nillable="false" type="xsd:string"/>
682
  <element name="selectedContractList" nillable="true" type="tns1:selectedContractList"/>
683
  <element name="updatePersonalDetails" nillable="true" type="xsd:string"/>
691
  <element name="notificationURL" nillable="true" type="xsd:string"/>
692
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
693
  <element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
694
+ <element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
695
  </sequence>
696
  </complexType>
697
  </element>
699
  <complexType>
700
  <annotation>
701
  <documentation>
702
+ This element is the reponse from the createWebWallet method
 
703
  </documentation>
704
  </annotation>
705
  <sequence>
713
  <complexType>
714
  <annotation>
715
  <documentation>
716
+ This element is the request for the updateWebWallet method
 
717
  </documentation>
718
  </annotation>
719
  <sequence>
720
+ <element name="version" nillable="false" type="xsd:string"/>
721
  <element name="contractNumber" nillable="false" type="xsd:string"/>
722
  <element name="cardInd" nillable="true" type="xsd:string"/>
723
  <element name="walletId" nillable="false" type="xsd:string"/>
724
  <element name="updatePersonalDetails" nillable="true" type="xsd:string"/>
725
  <element name="updateOwnerDetails" nillable="true" type="xsd:string"/>
726
  <element name="updatePaymentDetails" nillable="true" type="xsd:string"/>
727
+ <element name="buyer" nillable="true" type="tns1:buyer"/>
728
  <element name="languageCode" nillable="true" type="xsd:string"/>
729
  <element name="customPaymentPageCode" nillable="true" type="xsd:string"/>
730
  <element name="securityMode" nillable="true" type="xsd:string"/>
733
  <element name="notificationURL" nillable="true" type="xsd:string"/>
734
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
735
  <element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
736
+ <element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
737
  </sequence>
738
  </complexType>
739
  </element>
741
  <complexType>
742
  <annotation>
743
  <documentation>
744
+ This element is the reponse from the updateWebWallet method
 
745
  </documentation>
746
  </annotation>
747
  <sequence>
755
  <complexType>
756
  <annotation>
757
  <documentation>
758
+ This element is the request for the getWebWallet method
 
759
  </documentation>
760
  </annotation>
761
  <sequence>
768
  <complexType>
769
  <annotation>
770
  <documentation>
771
+ This element is the reponse from the getWebWallet method
 
772
  </documentation>
773
  </annotation>
774
  <sequence>
777
  <element name="owner" nillable="true" type="tns1:owner"/>
778
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
779
  <element name="extendedCard" type="tns1:extendedCardType"/>
780
+ <element name="media" nillable="true" type="xsd:string"/>
781
+ <element name="numberOfAttempt" nillable="true" type="xsd:string"/>
782
+ <element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
783
  </sequence>
784
  </complexType>
785
  </element>
787
  <complexType>
788
  <annotation>
789
  <documentation>
790
+ This element is the request for the getTransactionDetails method
 
791
  </documentation>
792
  </annotation>
793
  <sequence>
797
  <element name="startDate" nillable="true" type="xsd:string"/>
798
  <element name="endDate" nillable="true" type="xsd:string"/>
799
  <element name="transactionHistory" nillable="true" type="xsd:string"/>
800
+ <element name="archiveSearch" nillable="true" type="xsd:string"/>
801
  </sequence>
802
  </complexType>
803
  </element>
805
  <complexType>
806
  <annotation>
807
  <documentation>
808
+ This element is the response for the getTransactionDetails method
 
809
  </documentation>
810
  </annotation>
811
  <sequence>
820
  <element name="extendedCard" type="tns1:extendedCardType"/>
821
  <element name="associatedTransactionsList" nillable="true" type="tns1:associatedTransactionsList"/>
822
  <element name="statusHistoryList" nillable="true" type="tns1:statusHistoryList"/>
823
+ <element name="media" nillable="true" type="xsd:string"/>
824
  </sequence>
825
  </complexType>
826
  </element>
828
  <complexType>
829
  <annotation>
830
  <documentation>
831
+ This element is the request for the transactionsSearch method
 
832
  </documentation>
833
  </annotation>
834
  <sequence>
835
+ <element name="version" nillable="false" type="xsd:string"/>
836
  <element name="transactionId" nillable="true" type="xsd:string"/>
837
  <element name="orderRef" nillable="true" type="xsd:string"/>
838
  <element name="startDate" nillable="true" type="xsd:string"/>
851
  <element name="maxAmount" nillable="true" type="xsd:string"/>
852
  <element name="walletId" nillable="true" type="xsd:string"/>
853
  <element name="sequenceNumber" nillable="true" type="xsd:string"/>
854
+ <element name="token" nillable="true" type="xsd:string"/>
855
  </sequence>
856
  </complexType>
857
  </element>
859
  <complexType>
860
  <annotation>
861
  <documentation>
862
+ This element is the response for the transactionsSearch method
 
863
  </documentation>
864
  </annotation>
865
  <sequence>
872
  <complexType>
873
  <annotation>
874
  <documentation>
875
+ This element is the request for the verifyEnrollment method
 
876
  </documentation>
877
  </annotation>
878
  <sequence>
888
  <complexType>
889
  <annotation>
890
  <documentation>
891
+ This element is the reponse from the verifyEnrollment method
 
892
  </documentation>
893
  </annotation>
894
  <sequence>
910
  <complexType>
911
  <annotation>
912
  <documentation>
913
+ This element is the request for the doAuthentication method
 
914
  </documentation>
915
  </annotation>
916
  <sequence>
925
  <complexType>
926
  <annotation>
927
  <documentation>
928
+ This element is the reponse from the doAuthentication method
 
929
  </documentation>
930
  </annotation>
931
  <sequence>
939
  <complexType>
940
  <annotation>
941
  <documentation>
942
+ This element is the request for the createMerchant method
 
943
  </documentation>
944
  </annotation>
945
  <sequence>
947
  <element name="publicName" nillable="true" type="xsd:string"/>
948
  <element name="currency">
949
  <annotation>
950
+ <documentation>currency in ISO 4217 numeric format
951
+ </documentation>
952
  </annotation>
953
  <simpleType>
954
  <restriction base="xsd:string">
964
  <choice>
965
  <element name="SIRET">
966
  <annotation>
967
+ <documentation>Systeme d identification du Repertoire des
968
+ ENtreprises
969
+ </documentation>
970
  </annotation>
971
  <simpleType>
972
  <restriction base="xsd:string">
976
  </element>
977
  <element name="other" type="xsd:string">
978
  <annotation>
979
+ <documentation>to use if country is not France
980
+ </documentation>
981
  </annotation>
982
  </element>
983
  </choice>
1004
  </element>
1005
  <element name="partner" nillable="true" type="xsd:string">
1006
  <annotation>
1007
+ <documentation>Billing partner. 1:monext, 2:cetib, 3:payline.com
1008
+ </documentation>
1009
  </annotation>
1010
  </element>
1011
  </sequence>
1015
  <complexType>
1016
  <annotation>
1017
  <documentation>
1018
+ This element is the reponse from the createMerchant method
 
1019
  </documentation>
1020
  </annotation>
1021
  <sequence>
1022
  <element name="result" nillable="false" type="tns1:result"/>
1023
+ <element name="connectionData" nillable="false" type="tns1:connectionData"/>
1024
  </sequence>
1025
  </complexType>
1026
  </element>
1028
  <complexType>
1029
  <annotation>
1030
  <documentation>
1031
+ This element is the request for the doScoringCheque method
 
1032
  </documentation>
1033
  </annotation>
1034
  <sequence>
1035
+ <element name="version" nillable="false" type="xsd:string"/>
1036
+ <element name="payment" nillable="false" type="tns1:payment"/>
1037
  <element name="cheque" nillable="false" type="tns1:cheque"/>
1038
  <element name="order" nillable="false" type="tns1:order"/>
1039
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
1040
+ <element name="media" nillable="true" type="xsd:string"/>
1041
  </sequence>
1042
  </complexType>
1043
  </element>
1045
  <complexType>
1046
  <annotation>
1047
  <documentation>
1048
+ This element is the reponse from the doScoringCheque method
 
1049
  </documentation>
1050
  </annotation>
1051
  <sequence>
1052
  <element name="result" nillable="false" type="tns1:result"/>
1053
  <element name="transaction" nillable="false" type="tns1:transaction"/>
1054
+ <element name="scoringCheque" nillable="false" type="tns1:scoringCheque"/>
1055
  </sequence>
1056
  </complexType>
1057
  </element>
1058
+ <element name="getEncryptionKeyRequest">
1059
  <complexType>
1060
  <annotation>
1061
  <documentation>
1062
+ This element is the request for the getEncryptionKeyRequest method
 
1063
  </documentation>
1064
  </annotation>
1065
  </complexType>
1068
  <complexType>
1069
  <annotation>
1070
  <documentation>
1071
+ This element is the reponse from the getEncryptionKeyResponse method
 
1072
  </documentation>
1073
  </annotation>
1074
  <sequence>
1075
  <element name="result" nillable="false" type="tns1:result"/>
1076
+ <element name="key" nillable="false" type="tns1:key"/>
1077
  </sequence>
1078
  </complexType>
1079
  </element>
1081
  <complexType>
1082
  <annotation>
1083
  <documentation>
1084
+ This element is the request for the doReAuthorization method
 
1085
  </documentation>
1086
  </annotation>
1087
  <sequence>
1088
+ <element name="version" nillable="false" type="xsd:string"/>
1089
  <element name="transactionID" nillable="false" type="xsd:string"/>
1090
  <element name="payment" nillable="false" type="tns1:payment"/>
1091
+ <element name="order" nillable="true" type="tns1:order"/>
1092
  <element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
1093
+ <element name="media" nillable="true" type="xsd:string"/>
1094
  </sequence>
1095
  </complexType>
1096
  </element>
1098
  <complexType>
1099
  <annotation>
1100
  <documentation>
1101
+ This element is the reponse from the doReAuthorization method
 
1102
  </documentation>
1103
  </annotation>
1104
  <sequence>
1113
  <complexType>
1114
  <annotation>
1115
  <documentation>
1116
+ This element is the request for the getMerchantSettings method
1117
  </documentation>
1118
  </annotation>
1119
+ <sequence>
1120
+ <element name="version" nillable="true" type="xsd:string"/>
1121
+ </sequence>
1122
  </complexType>
1123
  </element>
1124
  <element name="getMerchantSettingsResponse">
1140
  </sequence>
1141
  </complexType>
1142
  </element>
1143
+ <element name="getBalanceRequest">
1144
  <complexType>
1145
  <annotation>
1146
  <documentation>
1147
+ This element is the request for the getBalance method
 
1148
  </documentation>
1149
  </annotation>
1150
  <sequence>
1157
  <complexType>
1158
  <annotation>
1159
  <documentation>
1160
+ This element is the reponse from the getBalance method
 
1161
  </documentation>
1162
  </annotation>
1163
  <sequence>
1178
  <complexType name="result">
1179
  <annotation>
1180
  <documentation>
1181
+ This element contains information about the process
 
1182
  </documentation>
1183
  </annotation>
1184
  <sequence>
1193
  <element name="type" nillable="false" type="xsd:string"/>
1194
  <element name="expirationDate" nillable="false" type="xsd:string"/>
1195
  <element name="cardholder" nillable="false" type="xsd:string"/>
1196
+ <element name="token" nillable="false" type="xsd:string"/>
1197
  </sequence>
1198
  </complexType>
1199
+
1200
  <complexType name="extendedCardType">
1201
  <sequence>
1202
  <element name="country" nillable="true" type="xsd:string"/>
1203
  <element name="isCvd" nillable="true" type="xsd:string"/>
1204
  <element name="bank" nillable="true" type="xsd:string"/>
1205
+ <element name="type" nillable="true" type="xsd:string"/>
1206
+ <element name="network" nillable="true" type="xsd:string"/>
1207
+ <element name="product" nillable="true" type="xsd:string"/>
1208
  </sequence>
1209
  </complexType>
1210
  <complexType name="order">
1211
  <annotation>
1212
  <documentation>
1213
+ This element contains information about the order
 
1214
  </documentation>
1215
  </annotation>
1216
  <sequence>
1222
  <element name="currency" nillable="false" type="xsd:string"/>
1223
  <element name="date" nillable="false" type="xsd:string"/>
1224
  <element name="details" nillable="true" type="tns1:details"/>
1225
+ <element name="deliveryTime" nillable="true" type="xsd:string"/>
1226
+ <element name="deliveryMode" nillable="true" type="xsd:string"/>
1227
  </sequence>
1228
  </complexType>
1229
  <complexType name="key">
1230
  <annotation>
1231
  <documentation>
1232
+ This element contains information about the encryptionKey
 
1233
  </documentation>
1234
  </annotation>
1235
  <sequence>
1253
  <complexType name="orderDetail">
1254
  <annotation>
1255
  <documentation>
1256
+ This element contains information about the order product
 
1257
  </documentation>
1258
  </annotation>
1259
  <sequence>
1266
  <complexType name="privateData">
1267
  <annotation>
1268
  <documentation>
1269
+ This element contains information about the merchant private data
 
1270
  </documentation>
1271
  </annotation>
1272
  <sequence>
1277
  <complexType name="transaction">
1278
  <annotation>
1279
  <documentation>
1280
+ This element contains information about the transaction
 
1281
  </documentation>
1282
  </annotation>
1283
  <sequence>
1294
  <complexType name="payment">
1295
  <annotation>
1296
  <documentation>
1297
+ This element contains information about the payment
 
1298
  </documentation>
1299
  </annotation>
1300
  <sequence>
1309
  <complexType name="authorization">
1310
  <annotation>
1311
  <documentation>
1312
+ This element contains information about the authorization
 
1313
  </documentation>
1314
  </annotation>
1315
  <sequence>
1334
  <element name="password" nillable="true" type="xsd:string"/>
1335
  <element name="cardPresent" nillable="true" type="xsd:string"/>
1336
  <element name="cardholder" nillable="true" type="xsd:string"/>
1337
+ <element name="token" nillable="true" type="xsd:string"/>
1338
  </sequence>
1339
  </complexType>
1340
  <complexType name="buyer">
1341
  <annotation>
1342
  <documentation>
1343
+ This element contains information about the buyer
 
1344
  </documentation>
1345
  </annotation>
1346
  <sequence>
1348
  <element name="firstName" nillable="true" type="xsd:string"/>
1349
  <element name="email" nillable="true" type="xsd:string"/>
1350
  <element name="shippingAdress" nillable="true" type="tns1:address"/>
1351
+ <element name="billingAddress" nillable="true" type="tns1:address"/>
1352
  <element name="accountCreateDate" nillable="true" type="xsd:string"/>
1353
  <element name="accountAverageAmount" nillable="true" type="xsd:string"/>
1354
  <element name="accountOrderCount" nillable="true" type="xsd:string"/>
1364
  <complexType name="owner">
1365
  <annotation>
1366
  <documentation>
1367
+ This element contains information about the owner
 
1368
  </documentation>
1369
  </annotation>
1370
  <sequence>
1377
  <complexType name="address">
1378
  <annotation>
1379
  <documentation>
1380
+ This element contains information about the address
 
1381
  </documentation>
1382
  </annotation>
1383
  <sequence>
1393
  <complexType name="addressOwner">
1394
  <annotation>
1395
  <documentation>
1396
+ This element contains information about the address
 
1397
  </documentation>
1398
  </annotation>
1399
  <sequence>
1407
  <complexType name="capture">
1408
  <annotation>
1409
  <documentation>
1410
+ This element contains information about the capture
 
1411
  </documentation>
1412
  </annotation>
1413
  <sequence>
1418
  <complexType name="refund">
1419
  <annotation>
1420
  <documentation>
1421
+ This element contains information about the refund
 
1422
  </documentation>
1423
  </annotation>
1424
  <sequence>
1446
  <element maxOccurs="100" minOccurs="0" name="privateData" type="tns1:privateData"/>
1447
  </sequence>
1448
  </complexType>
1449
+ <complexType name="contractNumberWalletList">
1450
+ <annotation>
1451
+ <documentation>
1452
+ An array of contract number of a wallet
1453
+ </documentation>
1454
+ </annotation>
1455
+ <sequence>
1456
+ <element maxOccurs="10" minOccurs="0" name="contractNumberWallet" type="xsd:string"/>
1457
+ </sequence>
1458
+ </complexType>
1459
  <complexType name="cardsList">
1460
  <annotation>
1461
  <documentation>
1496
  <element maxOccurs="5000" minOccurs="1" name="transactionID" type="xsd:string"/>
1497
  </sequence>
1498
  </complexType>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1499
  <complexType name="recurring">
1500
  <annotation>
1501
  <documentation>
1502
+ This element contains element for recurring operation
 
1503
  </documentation>
1504
  </annotation>
1505
  <sequence>
1514
  <complexType name="billingRecord">
1515
  <annotation>
1516
  <documentation>
1517
+ This element contains element for a billing record
 
1518
  </documentation>
1519
  </annotation>
1520
  <sequence>
1598
  <complexType name="authentication3DSecure">
1599
  <annotation>
1600
  <documentation>
1601
+ This element contains element for a 3DSecure transaction
 
1602
  </documentation>
1603
  </annotation>
1604
  <sequence>
1685
  <complexType name="subscription">
1686
  <annotation>
1687
  <documentation>
1688
+ This element contains information about the payline package subscribed by the merchant
1689
  </documentation>
1690
  </annotation>
1691
  <sequence>
1746
  <complexType name="technicalData">
1747
  <annotation>
1748
  <documentation>
1749
+ This element contains technical data used to define acquirer service
1750
  </documentation>
1751
  </annotation>
1752
  <sequence>
1799
  </element>
1800
  </sequence>
1801
  </complexType>
1802
+ <complexType name="customPaymentPageCode">
1803
+ <annotation>
1804
+ <documentation>
1805
+ This element contains all information about customPaymentPageCode
1806
+ </documentation>
1807
+ </annotation>
1808
+ <sequence>
1809
+ <element name="code" nillable="true" type="xsd:string"/>
1810
+ <element name="label" nillable="true" type="xsd:string"/>
1811
+ <element name="type" nillable="true" type="xsd:string"/>
1812
+ </sequence>
1813
+ </complexType>
1814
  <complexType name="ticketSend">
1815
  <annotation>
1816
  <documentation>
1861
  </complexType>
1862
  </element>
1863
  <element name="virtualTerminal" nillable="true" type="tns1:virtualTerminal"/>
1864
+ <element name="customPaymentPageCodeList">
1865
+ <annotation>
1866
+ <documentation>list of custom payment page code</documentation>
1867
+ </annotation>
1868
+ <complexType>
1869
+ <sequence>
1870
+ <element maxOccurs="unbounded" minOccurs="0" name="customPaymentPageCode" type="tns1:customPaymentPageCode"/>
1871
+ </sequence>
1872
+ </complexType>
1873
+ </element>
1874
  </sequence>
1875
  </complexType>
1876
  <complexType name="virtualTerminal">
1903
  </complexType>
1904
  <complexType name="virtualTerminalFunction">
1905
  <annotation>
1906
+ <documentation>functions availbe in virtual terminal
1907
+ </documentation>
1908
  </annotation>
1909
  <sequence>
1910
  <element name="function">
1911
  <annotation>
1912
+ <documentation>Please refer to Payline documentation
1913
+ </documentation>
1914
  </annotation>
1915
  <simpleType>
1916
  <restriction base="xsd:string">
1929
  <complexType>
1930
  <attribute name="id">
1931
  <annotation>
1932
+ <documentation>Parameter ID. Refer to payline documentation
1933
+ </documentation>
1934
  </annotation>
1935
  </attribute>
1936
  </complexType>
1941
  <complexType name="cheque">
1942
  <annotation>
1943
  <documentation>
1944
+ This element contains information about the cheque
 
1945
  </documentation>
1946
  </annotation>
1947
  <sequence>
1951
  <complexType name="contribution">
1952
  <annotation>
1953
  <documentation>
1954
+ This element contains all information about contrinution
1955
  </documentation>
1956
  </annotation>
1957
  <sequence>
1966
  <complexType name="associatedTransactions">
1967
  <annotation>
1968
  <documentation>
1969
+ This element contains information about the associated transactions
 
1970
  </documentation>
1971
  </annotation>
1972
  <sequence>
1978
  <element name="originTransactionId" nillable="false" type="xsd:string"/>
1979
  </sequence>
1980
  </complexType>
1981
+
1982
  <complexType name="associatedTransactionsList">
1983
  <annotation>
1984
  <documentation>
1989
  <element maxOccurs="100" minOccurs="0" name="associatedTransactions" type="tns1:associatedTransactions"/>
1990
  </sequence>
1991
  </complexType>
1992
+
1993
  <complexType name="statusHistory">
1994
  <annotation>
1995
  <documentation>
1996
+ This element contains information about the status History
 
1997
  </documentation>
1998
  </annotation>
1999
  <sequence>
2005
  <element name="originTransactionId" nillable="false" type="xsd:string"/>
2006
  </sequence>
2007
  </complexType>
2008
+
2009
  <complexType name="statusHistoryList">
2010
  <annotation>
2011
  <documentation>
2016
  <element maxOccurs="100" minOccurs="0" name="statusHistory" type="tns1:statusHistory"/>
2017
  </sequence>
2018
  </complexType>
2019
+ <complexType name="paymentAdditional">
2020
+ <annotation>
2021
+ <documentation>
2022
+ This element contains information about the paymentAdditional
2023
+ </documentation>
2024
+ </annotation>
2025
+ <sequence>
2026
+ <element name="transaction" nillable="false" type="tns1:transaction"/>
2027
+ <element name="payment" nillable="false" type="tns1:payment"/>
2028
+ <element name="authorization" nillable="false" type="tns1:authorization"/>
2029
+ <element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
2030
+ <element name="card" nillable="true" type="tns1:cardOut"/>
2031
+ <element name="extendedCard" nillable="true" type="tns1:extendedCardType"/>
2032
+ </sequence>
2033
+ </complexType>
2034
+
2035
+ <complexType name="paymentAdditionalList">
2036
+ <annotation>
2037
+ <documentation>
2038
+ An array of paymentAdditionalList
2039
+ </documentation>
2040
+ </annotation>
2041
+ <sequence>
2042
+ <element maxOccurs="100" minOccurs="0" name="paymentAdditional" type="tns1:paymentAdditional"/>
2043
+ </sequence>
2044
+ </complexType>
2045
  </schema>
2046
  </wsdl:types>
2047
+ <wsdl:message name="verifyEnrollmentRequest">
2048
+ <wsdl:part name="parameters" element="impl:verifyEnrollmentRequest">
2049
  </wsdl:part>
2050
  </wsdl:message>
2051
+ <wsdl:message name="doCreditRequest">
2052
+ <wsdl:part name="parameters" element="impl:doCreditRequest">
2053
  </wsdl:part>
2054
  </wsdl:message>
2055
+ <wsdl:message name="getCardsRequest">
2056
+ <wsdl:part name="parameters" element="impl:getCardsRequest">
2057
  </wsdl:part>
2058
  </wsdl:message>
2059
+ <wsdl:message name="doResetResponse">
2060
+ <wsdl:part name="parameters" element="impl:doResetResponse">
2061
  </wsdl:part>
2062
  </wsdl:message>
2063
+ <wsdl:message name="doCreditResponse">
2064
+ <wsdl:part name="parameters" element="impl:doCreditResponse">
2065
  </wsdl:part>
2066
  </wsdl:message>
2067
+ <wsdl:message name="disableWalletResponse">
2068
+ <wsdl:part name="parameters" element="impl:disableWalletResponse">
2069
  </wsdl:part>
2070
  </wsdl:message>
2071
+ <wsdl:message name="createWebWalletResponse">
2072
+ <wsdl:part name="parameters" element="impl:createWebWalletResponse">
2073
  </wsdl:part>
2074
  </wsdl:message>
2075
+ <wsdl:message name="verifyAuthenticationRequest">
2076
+ <wsdl:part name="parameters" element="impl:verifyAuthenticationRequest">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2077
  </wsdl:part>
2078
  </wsdl:message>
2079
+ <wsdl:message name="verifyEnrollmentResponse">
2080
+ <wsdl:part name="parameters" element="impl:verifyEnrollmentResponse">
2081
  </wsdl:part>
2082
  </wsdl:message>
2083
+ <wsdl:message name="getWebPaymentDetailsRequest">
2084
+ <wsdl:part name="parameters" element="impl:getWebPaymentDetailsRequest">
2085
  </wsdl:part>
2086
  </wsdl:message>
2087
+ <wsdl:message name="getEncryptionKeyRequest">
2088
+ <wsdl:part name="parameters" element="impl:getEncryptionKeyRequest">
2089
  </wsdl:part>
2090
  </wsdl:message>
2091
+ <wsdl:message name="doAuthorizationResponse">
2092
+ <wsdl:part name="parameters" element="impl:doAuthorizationResponse">
2093
  </wsdl:part>
2094
  </wsdl:message>
2095
  <wsdl:message name="disableWalletRequest">
2096
  <wsdl:part name="parameters" element="impl:disableWalletRequest">
2097
  </wsdl:part>
2098
  </wsdl:message>
2099
+ <wsdl:message name="getEncryptionKeyResponse">
2100
+ <wsdl:part name="parameters" element="impl:getEncryptionKeyResponse">
2101
  </wsdl:part>
2102
  </wsdl:message>
2103
+ <wsdl:message name="doScoringChequeRequest">
2104
+ <wsdl:part name="parameters" element="impl:doScoringChequeRequest">
2105
  </wsdl:part>
2106
  </wsdl:message>
2107
  <wsdl:message name="createWebWalletRequest">
2108
  <wsdl:part name="parameters" element="impl:createWebWalletRequest">
2109
  </wsdl:part>
2110
  </wsdl:message>
2111
+ <wsdl:message name="createWalletResponse">
2112
+ <wsdl:part name="parameters" element="impl:createWalletResponse">
2113
  </wsdl:part>
2114
  </wsdl:message>
2115
+ <wsdl:message name="getMerchantSettingsRequest">
2116
+ <wsdl:part name="parameters" element="impl:getMerchantSettingsRequest">
2117
  </wsdl:part>
2118
  </wsdl:message>
2119
+ <wsdl:message name="doReAuthorizationResponse">
2120
+ <wsdl:part name="parameters" element="impl:doReAuthorizationResponse">
2121
  </wsdl:part>
2122
  </wsdl:message>
2123
+ <wsdl:message name="getWebWalletRequest">
2124
+ <wsdl:part name="parameters" element="impl:getWebWalletRequest">
2125
  </wsdl:part>
2126
  </wsdl:message>
2127
+ <wsdl:message name="getWebPaymentDetailsResponse">
2128
+ <wsdl:part name="parameters" element="impl:getWebPaymentDetailsResponse">
2129
  </wsdl:part>
2130
  </wsdl:message>
2131
+ <wsdl:message name="createWalletRequest">
2132
+ <wsdl:part name="parameters" element="impl:createWalletRequest">
2133
  </wsdl:part>
2134
  </wsdl:message>
2135
+ <wsdl:message name="getBalanceRequest">
2136
+ <wsdl:part name="parameters" element="impl:getBalanceRequest">
2137
  </wsdl:part>
2138
  </wsdl:message>
2139
+ <wsdl:message name="getPaymentRecordRequest">
2140
+ <wsdl:part name="parameters" element="impl:getPaymentRecordRequest">
2141
  </wsdl:part>
2142
  </wsdl:message>
2143
+ <wsdl:message name="getTransactionDetailsRequest">
2144
+ <wsdl:part name="parameters" element="impl:getTransactionDetailsRequest">
2145
  </wsdl:part>
2146
  </wsdl:message>
2147
+ <wsdl:message name="createMerchantResponse">
2148
+ <wsdl:part name="parameters" element="impl:createMerchantResponse">
2149
  </wsdl:part>
2150
  </wsdl:message>
2151
+ <wsdl:message name="doDebitResponse">
2152
+ <wsdl:part name="parameters" element="impl:doDebitResponse">
2153
  </wsdl:part>
2154
  </wsdl:message>
2155
+ <wsdl:message name="getMerchantSettingsResponse">
2156
+ <wsdl:part name="parameters" element="impl:getMerchantSettingsResponse">
2157
  </wsdl:part>
2158
  </wsdl:message>
2159
+ <wsdl:message name="getPaymentRecordResponse">
2160
+ <wsdl:part name="parameters" element="impl:getPaymentRecordResponse">
2161
  </wsdl:part>
2162
  </wsdl:message>
2163
+ <wsdl:message name="getWalletRequest">
2164
+ <wsdl:part name="parameters" element="impl:getWalletRequest">
2165
  </wsdl:part>
2166
  </wsdl:message>
2167
+ <wsdl:message name="doScoringChequeResponse">
2168
+ <wsdl:part name="parameters" element="impl:doScoringChequeResponse">
2169
  </wsdl:part>
2170
  </wsdl:message>
2171
  <wsdl:message name="updateWebWalletRequest">
2172
  <wsdl:part name="parameters" element="impl:updateWebWalletRequest">
2173
  </wsdl:part>
2174
  </wsdl:message>
2175
+ <wsdl:message name="doWebPaymentResponse">
2176
+ <wsdl:part name="parameters" element="impl:doWebPaymentResponse">
 
 
 
 
 
 
 
 
2177
  </wsdl:part>
2178
  </wsdl:message>
2179
+ <wsdl:message name="doDebitRequest">
2180
+ <wsdl:part name="parameters" element="impl:doDebitRequest">
2181
  </wsdl:part>
2182
  </wsdl:message>
2183
+ <wsdl:message name="verifyAuthenticationResponse">
2184
+ <wsdl:part name="parameters" element="impl:verifyAuthenticationResponse">
2185
  </wsdl:part>
2186
  </wsdl:message>
2187
+ <wsdl:message name="doRecurrentWalletPaymentRequest">
2188
+ <wsdl:part name="parameters" element="impl:doRecurrentWalletPaymentRequest">
2189
  </wsdl:part>
2190
  </wsdl:message>
2191
+ <wsdl:message name="doCaptureResponse">
2192
+ <wsdl:part name="parameters" element="impl:doCaptureResponse">
2193
  </wsdl:part>
2194
  </wsdl:message>
2195
+ <wsdl:message name="doRefundRequest">
2196
+ <wsdl:part name="parameters" element="impl:doRefundRequest">
2197
  </wsdl:part>
2198
  </wsdl:message>
2199
  <wsdl:message name="updateWalletRequest">
2200
  <wsdl:part name="parameters" element="impl:updateWalletRequest">
2201
  </wsdl:part>
2202
  </wsdl:message>
2203
+ <wsdl:message name="disablePaymentRecordResponse">
2204
+ <wsdl:part name="parameters" element="impl:disablePaymentRecordResponse">
2205
  </wsdl:part>
2206
  </wsdl:message>
2207
+ <wsdl:message name="doAuthorizationRequest">
2208
+ <wsdl:part name="parameters" element="impl:doAuthorizationRequest">
2209
  </wsdl:part>
2210
  </wsdl:message>
2211
+ <wsdl:message name="disablePaymentRecordRequest">
2212
+ <wsdl:part name="parameters" element="impl:disablePaymentRecordRequest">
2213
  </wsdl:part>
2214
  </wsdl:message>
2215
+ <wsdl:message name="getCardsResponse">
2216
+ <wsdl:part name="parameters" element="impl:getCardsResponse">
2217
  </wsdl:part>
2218
  </wsdl:message>
2219
+ <wsdl:message name="doScheduledWalletPaymentRequest">
2220
+ <wsdl:part name="parameters" element="impl:doScheduledWalletPaymentRequest">
2221
  </wsdl:part>
2222
  </wsdl:message>
2223
+ <wsdl:message name="updateWebWalletResponse">
2224
+ <wsdl:part name="parameters" element="impl:updateWebWalletResponse">
2225
  </wsdl:part>
2226
  </wsdl:message>
2227
+ <wsdl:message name="transactionsSearchResponse">
2228
+ <wsdl:part name="parameters" element="impl:transactionsSearchResponse">
2229
  </wsdl:part>
2230
  </wsdl:message>
2231
+ <wsdl:message name="getWebWalletResponse">
2232
+ <wsdl:part name="parameters" element="impl:getWebWalletResponse">
2233
  </wsdl:part>
2234
  </wsdl:message>
2235
+ <wsdl:message name="getTransactionDetailsResponse">
2236
+ <wsdl:part name="parameters" element="impl:getTransactionDetailsResponse">
2237
  </wsdl:part>
2238
  </wsdl:message>
2239
+ <wsdl:message name="doImmediateWalletPaymentRequest">
2240
+ <wsdl:part name="parameters" element="impl:doImmediateWalletPaymentRequest">
2241
  </wsdl:part>
2242
  </wsdl:message>
2243
+ <wsdl:message name="enableWalletResponse">
2244
+ <wsdl:part name="parameters" element="impl:enableWalletResponse">
2245
  </wsdl:part>
2246
  </wsdl:message>
2247
+ <wsdl:message name="doResetRequest">
2248
+ <wsdl:part name="parameters" element="impl:doResetRequest">
2249
  </wsdl:part>
2250
  </wsdl:message>
2251
+ <wsdl:message name="doReAuthorizationRequest">
2252
+ <wsdl:part name="parameters" element="impl:doReAuthorizationRequest">
2253
  </wsdl:part>
2254
  </wsdl:message>
2255
+ <wsdl:message name="doRecurrentWalletPaymentResponse">
2256
+ <wsdl:part name="parameters" element="impl:doRecurrentWalletPaymentResponse">
2257
  </wsdl:part>
2258
  </wsdl:message>
2259
+ <wsdl:message name="updateWalletResponse">
2260
+ <wsdl:part name="parameters" element="impl:updateWalletResponse">
2261
  </wsdl:part>
2262
  </wsdl:message>
2263
+ <wsdl:message name="doScheduledWalletPaymentResponse">
2264
+ <wsdl:part name="parameters" element="impl:doScheduledWalletPaymentResponse">
2265
  </wsdl:part>
2266
  </wsdl:message>
2267
+ <wsdl:message name="manageWebWalletRequest">
2268
+ <wsdl:part name="parameters" element="impl:manageWebWalletRequest">
2269
  </wsdl:part>
2270
  </wsdl:message>
2271
+ <wsdl:message name="getWalletResponse">
2272
+ <wsdl:part name="parameters" element="impl:getWalletResponse">
2273
  </wsdl:part>
2274
  </wsdl:message>
2275
+ <wsdl:message name="createMerchantRequest">
2276
+ <wsdl:part name="parameters" element="impl:createMerchantRequest">
2277
  </wsdl:part>
2278
  </wsdl:message>
2279
+ <wsdl:message name="transactionsSearchRequest">
2280
+ <wsdl:part name="parameters" element="impl:transactionsSearchRequest">
2281
  </wsdl:part>
2282
  </wsdl:message>
2283
+ <wsdl:message name="doCaptureRequest">
2284
+ <wsdl:part name="parameters" element="impl:doCaptureRequest">
2285
  </wsdl:part>
2286
  </wsdl:message>
2287
+ <wsdl:message name="doWebPaymentRequest">
2288
+ <wsdl:part name="parameters" element="impl:doWebPaymentRequest">
2289
  </wsdl:part>
2290
  </wsdl:message>
2291
+ <wsdl:message name="getBalanceResponse">
2292
+ <wsdl:part name="parameters" element="impl:getBalanceResponse">
2293
  </wsdl:part>
2294
  </wsdl:message>
2295
+ <wsdl:message name="doRefundResponse">
2296
+ <wsdl:part name="parameters" element="impl:doRefundResponse">
2297
  </wsdl:part>
2298
  </wsdl:message>
2299
+ <wsdl:message name="doImmediateWalletPaymentResponse">
2300
+ <wsdl:part name="parameters" element="impl:doImmediateWalletPaymentResponse">
2301
  </wsdl:part>
2302
  </wsdl:message>
2303
+ <wsdl:message name="enableWalletRequest">
2304
+ <wsdl:part name="parameters" element="impl:enableWalletRequest">
2305
  </wsdl:part>
2306
  </wsdl:message>
2307
+ <wsdl:message name="manageWebWalletResponse">
2308
+ <wsdl:part name="parameters" element="impl:manageWebWalletResponse">
2309
  </wsdl:part>
2310
  </wsdl:message>
2311
+ <wsdl:portType name="ExtendedAPI">
2312
+ <wsdl:operation name="getTransactionDetails">
2313
+ <wsdl:input name="getTransactionDetailsRequest" message="impl:getTransactionDetailsRequest">
 
 
 
 
 
 
 
 
 
 
 
 
2314
  </wsdl:input>
2315
+ <wsdl:output name="getTransactionDetailsResponse" message="impl:getTransactionDetailsResponse">
2316
  </wsdl:output>
2317
  </wsdl:operation>
2318
+ <wsdl:operation name="transactionsSearch">
2319
+ <wsdl:input name="transactionsSearchRequest" message="impl:transactionsSearchRequest">
2320
  </wsdl:input>
2321
+ <wsdl:output name="transactionsSearchResponse" message="impl:transactionsSearchResponse">
2322
  </wsdl:output>
2323
  </wsdl:operation>
2324
  </wsdl:portType>
2335
  <wsdl:output name="getWebPaymentDetailsResponse" message="impl:getWebPaymentDetailsResponse">
2336
  </wsdl:output>
2337
  </wsdl:operation>
2338
+ <wsdl:operation name="manageWebWallet">
2339
+ <wsdl:input name="manageWebWalletRequest" message="impl:manageWebWalletRequest">
2340
+ </wsdl:input>
2341
+ <wsdl:output name="manageWebWalletResponse" message="impl:manageWebWalletResponse">
2342
+ </wsdl:output>
2343
+ </wsdl:operation>
2344
  <wsdl:operation name="createWebWallet">
2345
  <wsdl:input name="createWebWalletRequest" message="impl:createWebWalletRequest">
2346
  </wsdl:input>
2512
  </wsdl:output>
2513
  </wsdl:operation>
2514
  </wsdl:portType>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2515
  <wsdl:binding name="DirectPaymentAPISoapBinding" type="impl:DirectPaymentAPI">
2516
  <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
2517
  <wsdl:operation name="doAuthorization">
2781
  <wsdlsoap:body use="literal"/>
2782
  </wsdl:output>
2783
  </wsdl:operation>
2784
+ <wsdl:operation name="manageWebWallet">
2785
+ <wsdlsoap:operation soapAction="manageWebWallet"/>
2786
+ <wsdl:input>
2787
+ <wsdlsoap:body use="literal"/>
2788
+ </wsdl:input>
2789
+ <wsdl:output>
2790
+ <wsdlsoap:body use="literal"/>
2791
+ </wsdl:output>
2792
+ </wsdl:operation>
2793
  <wsdl:operation name="createWebWallet">
2794
  <wsdlsoap:operation soapAction="createWebWallet"/>
2795
  <wsdl:input>
2819
  </wsdl:operation>
2820
  </wsdl:binding>
2821
  <wsdl:service name="WebPaymentAPI">
2822
+ <wsdl:port name="WebPaymentAPI" binding="impl:WebPaymentAPISoapBinding">
2823
  <wsdlsoap:address location=""/>
2824
  </wsdl:port>
2825
  </wsdl:service>
2826
  <wsdl:service name="ExtendedAPI">
2827
+ <wsdl:port name="ExtendedAPI" binding="impl:ExtendedAPISoapBinding">
2828
  <wsdlsoap:address location=""/>
2829
  </wsdl:port>
2830
  </wsdl:service>
app/code/community/Monext/Payline/PaylinePHPKit/lib/paylineSDK.php CHANGED
@@ -11,7 +11,7 @@ require_once('jIniFileModifier.php');
11
 
12
  class util{
13
 
14
- /**
15
  * make an array from a payline server response object.
16
  * @params : $response : Objet response from payline
17
  * @return : Object convert in an array
@@ -30,7 +30,7 @@ class util{
30
 
31
  return $response;
32
  }
33
-
34
  static function responseToArrayForGetCards($response){
35
 
36
  $array = array();
@@ -58,13 +58,13 @@ class util{
58
  //
59
  class pl_payment{
60
 
61
- // ATTRIBUTES LISTING
62
- public $amount;
63
- public $currency;
64
- public $action;
65
- public $mode;
66
- public $contractNumber;
67
- public $differedActionDate;
68
  }
69
 
70
  //
@@ -72,7 +72,7 @@ class pl_payment{
72
  //
73
  class pl_order{
74
 
75
- // ATTRIBUTES LISTING
76
  public $ref;
77
  public $origin;
78
  public $country;
@@ -95,9 +95,9 @@ class pl_order{
95
  //
96
  class pl_privateData{
97
 
98
- // ATTRIBUTES LISTING
99
- public $key ;
100
- public $value;
101
  }
102
 
103
  //
@@ -105,9 +105,9 @@ class pl_privateData{
105
  //
106
  class pl_authorization{
107
 
108
- // ATTRIBUTES LISTING
109
- public $number;
110
- public $date;
111
  }
112
 
113
  //
@@ -115,14 +115,14 @@ class pl_authorization{
115
  //
116
  class pl_address{
117
 
118
- // ATTRIBUTES LISTING
119
- public $name;
120
- public $street1;
121
- public $street2;
122
- public $cityName;
123
- public $zipCode;
124
- public $country;
125
- public $phone;
126
  }
127
 
128
  //
@@ -140,6 +140,7 @@ class pl_buyer{
140
  public $walletSecured;
141
  public $walletCardInd;
142
  public $shippingAdress;
 
143
  public $accountCreateDate;
144
  public $accountAverageAmount;
145
  public $accountOrderCount;
@@ -151,16 +152,28 @@ class pl_buyer{
151
  }
152
  }
153
 
 
 
 
 
 
 
 
 
 
 
 
 
154
  //
155
  // PL_ORDERDETAIL OBJECT DEFINITION
156
  //
157
  class pl_orderDetail{
158
 
159
- // ATTRIBUTES LISTING
160
- public $ref;
161
- public $price;
162
- public $quantity;
163
- public $comment;
164
  }
165
 
166
  //
@@ -175,11 +188,12 @@ class pl_card{
175
  public $cvx;
176
  public $ownerBirthdayDate;
177
  public $password;
178
- public $cardholder;
 
179
 
180
- function __construct($type) {
181
- $this->accountCreateDate = date('d/m/y', time());
182
- }
183
  }
184
 
185
 
@@ -188,11 +202,11 @@ class pl_card{
188
  //
189
  class pl_transaction{
190
 
191
- // ATTRIBUTES LISTING
192
- public $id;
193
- public $isPossibleFraud;
194
- public $isDuplicated;
195
- public $date;
196
  }
197
 
198
 
@@ -201,10 +215,10 @@ class pl_transaction{
201
  //
202
  class pl_result{
203
 
204
- // ATTRIBUTES LISTING
205
- public $code;
206
- public $shortMessage;
207
- public $longMessage;
208
  }
209
 
210
  //
@@ -212,23 +226,23 @@ class pl_result{
212
  //
213
  class pl_capture{
214
 
215
- // ATTRIBUTES LISTING
216
- public $transactionID;
217
- public $payment;
218
- public $sequenceNumber;
219
 
220
- function __construct() {
221
- $this->payment = new pl_payment();
222
- }
223
  }
224
 
225
  //
226
  // PL_REFUND OBJECT DEFINITION
227
  //
228
  class pl_refund extends pl_capture {
229
- function __construct() {
230
- parent::__construct();
231
- }
232
  }
233
 
234
  //
@@ -236,17 +250,17 @@ class pl_refund extends pl_capture {
236
  //
237
  class pl_wallet{
238
 
239
- // ATTRIBUTES LISTING
240
- public $walletId;
241
- public $lastName;
242
- public $firstName;
243
- public $email;
244
- public $shippingAddress;
245
- public $card;
246
- public $comment;
247
-
248
- function __construct() {
249
- }
250
  }
251
 
252
  //
@@ -254,16 +268,16 @@ class pl_wallet{
254
  //
255
  class pl_recurring{
256
 
257
- // ATTRIBUTES LISTING
258
- public $firstAmount;
259
- public $amount;
260
- public $billingCycle;
261
- public $billingLeft;
262
- public $billingDay;
263
- public $startDate;
264
-
265
- function __construct() {
266
- }
267
  }
268
 
269
  //
@@ -271,34 +285,34 @@ class pl_recurring{
271
  //
272
  class pl_authentication3DSecure{
273
 
274
- // ATTRIBUTES LISTING
275
- public $md ;
276
- public $pares ;
277
- public $xid ;
278
- public $eci ;
279
- public $cavv ;
280
- public $cavvAlgorithm ;
281
- public $vadsResult ;
282
-
283
- function __construct() {
284
- }
285
  }
286
 
287
  //
288
- // PL_BANKACCOUNTDATA
289
  //
290
  class pl_bankAccountData{
291
 
292
 
293
- // ATTRIBUTES LISTING
294
- public $countryCode ;
295
- public $bankCode ;
296
- public $accountNumber ;
297
- public $key ;
298
 
299
 
300
- function __construct() {
301
- }
302
  }
303
 
304
  //
@@ -306,11 +320,11 @@ class pl_bankAccountData{
306
  //
307
  class pl_cheque{
308
 
309
- // ATTRIBUTES LISTING
310
- public $number ;
311
 
312
- function __construct() {
313
- }
314
  }
315
 
316
  final class Log {
@@ -340,9 +354,10 @@ final class Log {
340
  // PAYLINESDK CLASS
341
  //
342
  class paylineSDK{
343
-
344
  // kit version
345
- const KIT_VERSION = 'module Magento 1.7.4';
 
346
 
347
  // trace log
348
  var $paylineTrace;
@@ -361,6 +376,12 @@ class paylineSDK{
361
 
362
  // current endpoint
363
  private $webServicesEndpoint;
 
 
 
 
 
 
364
 
365
  // SOAP ACTIONS CONSTANTS
366
  const soap_result = 'result';
@@ -372,6 +393,7 @@ class paylineSDK{
372
  const soap_transaction = 'transaction';
373
  const soap_privateData = 'privateData';
374
  const soap_buyer = 'buyer';
 
375
  const soap_address = 'address';
376
  const soap_capture = 'capture';
377
  const soap_refund = 'refund';
@@ -400,18 +422,18 @@ class paylineSDK{
400
  // WALLET
401
  public $walletIdList;
402
 
403
- // SWITCHING VAR
404
  public $NMAX_TENTATIVE = '';
405
  public $CALL_TIMEOUT = '';
406
  public $RETRY_TIMEOUT = '';
407
  public $PRIMARY = true ;
408
  public $CURRENT_NUMBER_CALL = 0;
409
  public $DEFAULT_SOCKET_TIMEOUT = 0;
410
-
411
- /**
412
- * contructor of PAYLINESDK CLASS
413
- **/
414
- function __construct($merchant_id, $acess_key, $proxy_host, $proxy_port, $proxy_login, $proxy_password, $production) {
415
  $this->writeTrace('----------------------------------------------------------');
416
  $this->writeTrace("paylineSDK::__construct($merchant_id, ".$this->maskAccessKey($acess_key).", $proxy_host, $proxy_port, $proxy_login, $proxy_password, $production)");
417
  $this->header_soap = array();
@@ -423,11 +445,14 @@ class paylineSDK{
423
  $this->header_soap['proxy_login'] = $proxy_login;
424
  $this->header_soap['proxy_password'] = $proxy_password;
425
  }
426
- $this->production = $production;
 
 
 
 
427
  $this->header_soap['style'] = SOAP_DOCUMENT;
428
  $this->header_soap['use'] = SOAP_LITERAL;
429
  $this->header_soap['version'] = paylineSDK::KIT_VERSION;
430
- $this->header_soap['connection_timeout'] = $this->CALL_TIMEOUT;
431
  $this->items = array();
432
  $this->privates = array();
433
  $this->walletIdList = array();
@@ -435,13 +460,13 @@ class paylineSDK{
435
  ini_set('user_agent', "PHP\r\nversion: ".paylineSDK::KIT_VERSION);
436
  }
437
 
438
- /**
439
- * function payment
440
- * @params : $array : array. the array keys are listed in pl_payment CLASS.
441
- * @return : SoapVar : object
442
- * @description : build pl_payment instance from $array and make SoapVar object for payment.
443
- **/
444
- protected function payment($array) {
445
  $payment = new pl_payment();
446
  if($array && is_array($array)){
447
  foreach($array as $k=>$v){
@@ -453,13 +478,13 @@ class paylineSDK{
453
  return new SoapVar($payment, SOAP_ENC_OBJECT, paylineSDK::soap_payment, paylineSDK::PAYLINE_NAMESPACE);
454
  }
455
 
456
- /**
457
- * function order
458
- * @params : $array : array. the array keys are listed in pl_order CLASS.
459
- * @return : SoapVar : object
460
- * @description : build pl_order instance from $array and make SoapVar object for order.
461
- **/
462
- protected function order($array) {
463
  $order = new pl_order();
464
  if($array && is_array($array)){
465
  foreach($array as $k=>$v){
@@ -474,13 +499,13 @@ class paylineSDK{
474
  return new SoapVar($order, SOAP_ENC_OBJECT, paylineSDK::soap_order, paylineSDK::PAYLINE_NAMESPACE);
475
  }
476
 
477
- /**
478
- * function address
479
- * @params : $address : array. the array keys are listed in pl_address CLASS.
480
- * @return : SoapVar : object
481
- * @description : build pl_address instance from $array and make SoapVar object for address.
482
- **/
483
- protected function address($array) {
484
  $address = new pl_address();
485
  if($array && is_array($array)){
486
  foreach($array as $k=>$v){
@@ -490,23 +515,48 @@ class paylineSDK{
490
  return new SoapVar($address, SOAP_ENC_OBJECT, paylineSDK::soap_address, paylineSDK::PAYLINE_NAMESPACE);
491
  }
492
 
493
- /**
494
- * function buyer
495
- * @params : $array : array. the array keys are listed in pl_buyer CLASS.
496
- * @params : $address : array. the array keys are listed in pl_address CLASS.
497
- * @return : SoapVar : object
498
- * @description : build pl_buyer instance from $array and $address and make SoapVar object for buyer.
499
- **/
500
- protected function buyer($array,$address) {
 
501
  $buyer = new pl_buyer();
502
  if($array && is_array($array)){
503
  foreach($array as $k=>$v){
504
  if(array_key_exists($k, $buyer)&&(strlen($v)))$buyer->$k = $v;
505
  }
506
  }
507
- $buyer->shippingAdress = $this->address($address);
 
508
  return new SoapVar($buyer, SOAP_ENC_OBJECT, paylineSDK::soap_buyer, paylineSDK::PAYLINE_NAMESPACE);
509
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
510
 
511
  /**
512
  * function contracts
@@ -535,13 +585,13 @@ class paylineSDK{
535
  return null;
536
  }
537
 
538
- /**
539
- * function authentification 3Dsecure
540
- * @params : $array : array. the array keys are listed in pl_card CLASS.
541
- * @return : SoapVar : object
542
- * @description : build pl_authentication3DSecure instance from $array and make SoapVar object for authentication3DSecure.
543
- **/
544
- protected function authentication3DSecure($array) {
545
  $authentication3DSecure = new pl_authentication3DSecure($array);
546
  if($array && is_array($array)){
547
  foreach($array as $k=>$v){
@@ -553,13 +603,13 @@ class paylineSDK{
553
  return new SoapVar($authentication3DSecure, SOAP_ENC_OBJECT, paylineSDK::soap_authentication3DSecure, paylineSDK::PAYLINE_NAMESPACE);
554
  }
555
 
556
- /**
557
- * function authorization
558
- * @params : $array : array. the array keys are listed in pl_card CLASS.
559
- * @return : SoapVar : object
560
- * @description : build pl_authentication3DSecure instance from $array and make SoapVar object for authentication3DSecure.
561
- **/
562
- protected function authorization($array) {
563
  $authorization = new pl_authorization($array);
564
  if($array && is_array($array)){
565
  foreach($array as $k=>$v){
@@ -571,13 +621,13 @@ class paylineSDK{
571
  return new SoapVar($authorization, SOAP_ENC_OBJECT, paylineSDK::soap_authorization, paylineSDK::PAYLINE_NAMESPACE);
572
  }
573
 
574
- /**
575
- * function card
576
- * @params : $array : array. the array keys are listed in pl_card CLASS.
577
- * @return : SoapVar : object
578
- * @description : build pl_card instance from $array and make SoapVar object for card.
579
- **/
580
- protected function card($array) {
581
  $card = new pl_card($array['type']);
582
  if($array && is_array($array)){
583
  foreach($array as $k=>$v){
@@ -588,14 +638,16 @@ class paylineSDK{
588
  }
589
  return new SoapVar($card, SOAP_ENC_OBJECT, paylineSDK::soap_card, paylineSDK::PAYLINE_NAMESPACE);
590
  }
591
-
592
- /**
593
- * function bankAccountData
594
- * @params : $array : array. the array keys are listed in pl_bankAccountData CLASS.
595
- * @return : SoapVar : object
596
- * @description : build pl_bankAccountData instance from $array and make SoapVar object for bankAccountData.
597
- **/
598
- protected function bankAccountData($array) {
 
 
599
  $bankAccountData = new pl_bankAccountData($array);
600
  if($array && is_array($array)){
601
  foreach($array as $k=>$v){
@@ -606,14 +658,14 @@ class paylineSDK{
606
  }
607
  return new SoapVar(null, SOAP_ENC_OBJECT, paylineSDK::soap_bankAccountData, paylineSDK::PAYLINE_NAMESPACE);
608
  }
609
-
610
- /**
611
- * function cheque
612
- * @params : $array : array. the array keys are listed in pl_cheque CLASS.
613
- * @return : SoapVar : object
614
- * @description : build pl_authentication3DSecure instance from $array and make SoapVar object for cheque.
615
- **/
616
- protected function cheque($array) {
617
  $cheque = new pl_cheque($array);
618
  if($array && is_array($array)){
619
  foreach($array as $k=>$v){
@@ -650,7 +702,7 @@ class paylineSDK{
650
 
651
  return $wallet;
652
  }
653
-
654
  /**
655
  * function recurring
656
  * @params : array : array. the array keys are listed in pl_recurring CLASS.
@@ -669,7 +721,7 @@ class paylineSDK{
669
  }
670
  else return null;
671
  }
672
-
673
  /**
674
  * function setItem
675
  * @params : $item : array. the array keys are listed in PL_ORDERDETAIL CLASS.
@@ -753,7 +805,7 @@ class paylineSDK{
753
  $this->PRIMARY = false;
754
  $this->CURRENT_NUMBER_CALL = 0;
755
  $this->header_soap['connection_timeout'] = $this->CALL_TIMEOUT;
756
- if(PRODUCTION){
757
  $this->webServicesEndpoint = paylineSDK::PROD_ENDPOINT_HD;
758
  }else{
759
  $this->webServicesEndpoint = paylineSDK::HOMO_ENDPOINT_HD;
@@ -1127,6 +1179,8 @@ class paylineSDK{
1127
  $client = new SoapClient(dirname(__FILE__).'/'.paylineSDK::WSDL, $this->header_soap);
1128
  $client->__setLocation ($this->webServicesEndpoint.$PaylineAPI);
1129
  $this->writeTrace("webServiceRequest($Method) - Location : ".$this->webServicesEndpoint.$PaylineAPI);
 
 
1130
 
1131
  switch($Method){
1132
  case 'createMerchant':
@@ -1210,6 +1264,9 @@ class paylineSDK{
1210
  case 'getWebWallet':
1211
  $WSresponse = $client->getWebWallet($WSRequest);
1212
  break;
 
 
 
1213
  case 'transactionsSearch':
1214
  $WSresponse = $client->transactionsSearch($WSRequest);
1215
  break;
@@ -1262,12 +1319,17 @@ class paylineSDK{
1262
  }
1263
 
1264
  public function createWallet($array){
 
1265
  $WSRequest = array (
 
1266
  'contractNumber' => $array['contractNumber'],
 
 
 
1267
  'privateDataList' => $this->privates,
1268
  'authentication3DSecure' =>$this->authentication3DSecure($array['3DSecure']),
1269
- 'wallet' => $this->wallet($array['wallet'],$array['address'],$array['card']),
1270
- 'version' => $array['version']
1271
  );
1272
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'createWallet');
1273
  }
@@ -1281,18 +1343,24 @@ class paylineSDK{
1281
  if(isset($array['customPaymentPageCode'])&& strlen($array['customPaymentPageCode'])) $this->customPaymentPageCode = $array['customPaymentPageCode'];
1282
  if(isset($array['languageCode'])&& strlen($array['languageCode'])) $this->languageCode = $array['languageCode'];
1283
  if(isset($array['securityMode'])&& strlen($array['securityMode'])) $this->securityMode = $array['securityMode'];
 
 
1284
  $WSRequest = array (
 
1285
  'contractNumber' => $array['contractNumber'],
1286
  'selectedContractList' => $this->contracts($array['contracts']),
1287
  'updatePersonalDetails' => $array['updatePersonalDetails'],
1288
- 'buyer' => $this->buyer($array['buyer'],$array['address']),
 
 
 
1289
  'returnURL' => $this->returnURL,
1290
  'cancelURL' => $this->cancelURL,
1291
  'notificationURL' => $this->notificationURL,
1292
- 'languageCode' => $this->languageCode,
1293
- 'customPaymentPageCode' => $this->customPaymentPageCode,
1294
  'customPaymentTemplateURL' => $this->customPaymentTemplateURL,
1295
- 'securityMode' => $this->securityMode);
 
1296
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::WEB_API,'createWebWallet');
1297
  }
1298
 
@@ -1314,127 +1382,159 @@ class paylineSDK{
1314
  }
1315
 
1316
  public function doAuthorization($array){
 
 
 
1317
  $WSRequest = array (
 
1318
  'payment' => $this->payment($array['payment']),
1319
  'card' => $this->card($array['card']),
1320
  'order' => $this->order($array['order']),
1321
- 'buyer' => $this->buyer($array['buyer'],$array['address']),
1322
  'privateDataList' => $this->privates,
1323
  'authentication3DSecure' =>$this->authentication3DSecure($array['3DSecure']),
1324
  'bankAccountData' => $this->bankAccountData($array['BankAccountData']),
1325
- 'version' => $array['version']
1326
  );
1327
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doAuthorization');
1328
  }
1329
 
1330
  public function doCapture($array){
1331
  $WSRequest = array (
 
1332
  'transactionID' =>$array['transactionID'],
1333
  'payment' => $this->payment($array['payment']),
1334
  'privateDataList' => $this->privates,
1335
- 'sequenceNumber'=>$array['sequenceNumber']);
 
 
1336
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doCapture');
1337
  }
1338
 
1339
  public function doCredit($array){
 
 
 
1340
  $WSRequest = array (
 
1341
  'payment' => $this->payment($array['payment']),
1342
  'card' => $this->card($array['card']),
1343
- 'buyer' => $this->buyer($array['buyer'],$array['address']),
1344
  'privateDataList' => $this->privates,
1345
  'order' => $this->order($array['order']),
1346
  'comment' =>$array['comment'],
1347
- 'version' => $array['version']
1348
  );
1349
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doCredit');
1350
  }
1351
 
1352
  public function doDebit($array){
 
 
 
1353
  $WSRequest = array (
 
1354
  'payment' => $this->payment($array['payment']),
1355
  'card' => $this->card($array['card']),
1356
  'order' => $this->order($array['order']),
1357
  'privateDataList' => $this->privates,
1358
- 'buyer' => $this->buyer($array['buyer'],$array['address']),
1359
  'authentication3DSecure' =>$this->authentication3DSecure($array['3DSecure']),
1360
  'authorization' =>$this->authorization($array['authorization']),
1361
- 'version' => $array['version']
1362
  );
1363
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doDebit');
1364
  }
1365
 
1366
  public function doImmediateWalletPayment($array){
1367
  $WSRequest = array (
 
1368
  'payment' => $this->payment($array['payment']),
1369
  'order' => $this->order($array['order']),
1370
  'walletId' => $array['walletId'],
 
1371
  'privateDataList' => $this->privates,
1372
- 'cardInd' => $array['cardInd']
1373
  );
1374
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doImmediateWalletPayment');
1375
  }
1376
 
1377
  public function doReAuthorization($array){
1378
  $WSRequest = array (
 
1379
  'transactionID' => $array['transactionID'],
1380
  'payment' => $this->payment($array['payment']),
1381
  'order' => $this->order($array['order']),
1382
- 'privateDataList' => $this->privates
 
1383
  );
1384
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doReAuthorization');
1385
  }
1386
 
1387
  public function doRecurrentWalletPayment($array){
1388
  $WSRequest = array (
 
1389
  'payment' => $this->payment($array['payment']),
1390
  'orderRef' => $array['orderRef'],
1391
  'orderDate' => $array['orderDate'],
1392
- 'order' => $this->order($array['order']),
1393
- 'privateDataList' => $this->privates,
1394
- 'walletId' => $array['walletId'],
1395
  'scheduledDate' => $array['scheduled'],
 
 
1396
  'recurring' => $this->recurring($array['recurring']),
1397
- 'cardInd' => $array['cardInd']
 
 
1398
  );
1399
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doRecurrentWalletPayment');
1400
  }
1401
 
1402
  public function doRefund($array){
1403
  $WSRequest = array (
 
1404
  'transactionID' =>$array['transactionID'],
1405
  'payment' =>$this->payment($array['payment']),
1406
  'comment' =>$array['comment'],
1407
  'privateDataList' => $this->privates,
1408
- 'sequenceNumber'=>$array['sequenceNumber']);
 
 
1409
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doRefund');
1410
  }
1411
 
1412
  public function doReset($array){
1413
  $WSRequest = array (
1414
- 'transactionID' =>$array['transactionID'],
1415
- 'comment' =>$array['comment']);
 
 
 
1416
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doReset');
1417
  }
1418
 
1419
  public function doScheduledWalletPayment($array){
1420
  $WSRequest = array (
 
1421
  'payment' => $this->payment($array['payment']),
1422
  'orderRef' => $array['orderRef'],
1423
  'orderDate' => $array['orderDate'],
1424
- 'order' => $this->order($array['order']),
1425
- 'walletId' => $array['walletId'],
1426
  'scheduledDate' => $array['scheduled'],
1427
- 'cardInd' => $array['cardInd']
 
 
 
 
1428
  );
1429
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doScheduledWalletPayment');
1430
  }
1431
 
1432
  public function doScoringCheque($array){
1433
  $WSRequest = array (
1434
- 'cheque' => $this->cheque($array['cheque']),
1435
  'payment' => $this->payment($array['payment']),
 
1436
  'order' => $this->order($array['order']),
1437
- 'privateDataList' => $this->privates
 
1438
  );
1439
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doScoringCheque');
1440
  }
@@ -1450,24 +1550,29 @@ class paylineSDK{
1450
  if(!isset($array['payment']))$array['payment'] = null;
1451
  if(!isset($array['contracts'])||!strlen($array['contracts'][0]))$array['contracts'] = '';
1452
  if(!isset($array['secondContracts'])||!strlen($array['secondContracts'][0]))$array['secondContracts'] = '';
 
1453
  if(!isset($array['buyer']))$array['buyer'] = null;
1454
- if(!isset($array['address']))$array['address'] = null;
 
1455
  if(!isset($array['recurring']))$array['recurring'] = null;
1456
  $WSRequest = array (
1457
- 'payment' => $this->payment($array['payment']),
1458
- 'returnURL' => $this->returnURL,
1459
- 'cancelURL' => $this->cancelURL,
1460
- 'order' => $this->order($array['order']),
1461
- 'notificationURL' => $this->notificationURL,
1462
- 'customPaymentTemplateURL' => $this->customPaymentTemplateURL,
1463
- 'selectedContractList' => $this->contracts($array['contracts']),
1464
- 'secondSelectedContractList' => $this->secondContracts($array['secondContracts']),
1465
- 'privateDataList' => $this->privates,
1466
- 'languageCode' => $this->languageCode,
1467
- 'customPaymentPageCode' => $this->customPaymentPageCode,
1468
- 'buyer' => $this->buyer($array['buyer'],$array['address']),
1469
- 'securityMode' => $this->securityMode);
1470
-
 
 
 
1471
  if(isset($array['payment']['mode'])){
1472
  if(($array['payment']['mode'] == "REC") || ($array['payment']['mode'] == "NX")) {
1473
  $WSRequest['recurring'] = $this->recurring($array['recurring']);
@@ -1508,12 +1613,15 @@ class paylineSDK{
1508
  }
1509
 
1510
  public function getMerchantSettings($array){
1511
- $WSRequest = array();
 
 
1512
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'getMerchantSettings');
1513
  }
1514
 
1515
  public function getPaymentRecord($array){
1516
  $WSRequest = array (
 
1517
  'contractNumber' => $array['contractNumber'],
1518
  'paymentRecordId' => $array['paymentRecordId']
1519
  );
@@ -1521,21 +1629,23 @@ class paylineSDK{
1521
  }
1522
  public function getTransactionDetails($array){
1523
  $WSRequest = array (
 
1524
  'transactionId' => $array['transactionId'],
1525
  'orderRef' => $array['orderRef'],
1526
  'startDate' => $array['startDate'],
1527
- 'transactionHistory' => $array['transactionHistory'],
1528
  'endDate' => $array['endDate'],
1529
- 'version' => $array['version']
 
1530
  );
1531
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::EXTENDED_API,'getTransactionDetails');
1532
  }
1533
  public function getWallet($array){
1534
  $WSRequest = array (
 
1535
  'contractNumber' => $array['contractNumber'],
1536
  'walletId' => $array['walletId'],
1537
  'cardInd' => $array['cardInd'],
1538
- 'version' => $array['version']
1539
  );
1540
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'getWallet');
1541
  }
@@ -1550,13 +1660,49 @@ class paylineSDK{
1550
  return $this->webServiceRequest($array,$array,paylineSDK::WEB_API,'getWebWallet');
1551
  }
1552
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1553
  public function transactionsSearch($array){
1554
  $WSRequest = array (
 
1555
  'transactionId' => $array['transactionId'],
1556
  'orderRef' => $array['orderRef'],
1557
  'startDate' => $array['startDate'],
1558
  'endDate' => $array['endDate'],
 
1559
  'authorizationNumber' => $array['authorizationNumber'],
 
1560
  'paymentMean' => $array['paymentMean'],
1561
  'transactionType' => $array['transactionType'],
1562
  'name' => $array['name'],
@@ -1567,20 +1713,24 @@ class paylineSDK{
1567
  'minAmount' => $array['minAmount'],
1568
  'maxAmount' => $array['maxAmount'],
1569
  'walletId' => $array['walletId'],
1570
- 'contractNumber' => $array['contractNumber'],
1571
- 'returnCode' => $array['returnCode']
1572
  );
1573
- return $this->webServiceRequest($array,$array,paylineSDK::EXTENDED_API,'transactionsSearch');
1574
  }
1575
 
1576
  public function updateWallet($array){
1577
  $WSRequest = array (
 
1578
  'contractNumber' => $array['contractNumber'],
 
 
 
 
1579
  'privateDataList' => $this->privates,
1580
  'authentication3DSecure' =>$this->authentication3DSecure($array['3DSecure']),
1581
- 'wallet' => $this->wallet($array['wallet'],$array['address'],$array['card']),
1582
- 'cardInd' => $array['cardInd'],
1583
- 'version' => $array['version']
1584
  );
1585
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'updateWallet');
1586
  }
@@ -1593,20 +1743,25 @@ class paylineSDK{
1593
  if(isset($array['customPaymentPageCode'])&& strlen($array['customPaymentPageCode'])) $this->customPaymentPageCode = $array['customPaymentPageCode'];
1594
  if(isset($array['languageCode'])&& strlen($array['languageCode'])) $this->languageCode = $array['languageCode'];
1595
  if(isset($array['securityMode'])&& strlen($array['securityMode'])) $this->securityMode = $array['securityMode'];
 
1596
  $WSRequest = array (
1597
- 'contractNumber' => $array['contractNumber'],
1598
- 'walletId' => $array['walletId'],
1599
- 'updatePersonalDetails' => $array['updatePersonalDetails'],
1600
- 'updatePaymentDetails' => $array['updatePaymentDetails'],
1601
- 'languageCode' => $this->languageCode,
1602
- 'customPaymentPageCode' => $this->customPaymentPageCode,
1603
- 'securityMode' => $this->securityMode,
1604
- 'returnURL' => $this->returnURL,
1605
- 'cancelURL' => $this->cancelURL,
1606
- 'notificationURL' => $this->notificationURL,
1607
- 'privateDataList' => $this->privates,
1608
- 'customPaymentTemplateURL' => $this->customPaymentTemplateURL,
1609
- 'cardInd' => $array['cardInd']
 
 
 
 
1610
  );
1611
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::WEB_API,'updateWebWallet');
1612
  }
@@ -1630,7 +1785,5 @@ class paylineSDK{
1630
  );
1631
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'verifyEnrollment');
1632
  }
1633
-
1634
-
1635
  }
1636
  ?>
11
 
12
  class util{
13
 
14
+ /**
15
  * make an array from a payline server response object.
16
  * @params : $response : Objet response from payline
17
  * @return : Object convert in an array
30
 
31
  return $response;
32
  }
33
+
34
  static function responseToArrayForGetCards($response){
35
 
36
  $array = array();
58
  //
59
  class pl_payment{
60
 
61
+ // ATTRIBUTES LISTING
62
+ public $amount;
63
+ public $currency;
64
+ public $action;
65
+ public $mode;
66
+ public $contractNumber;
67
+ public $differedActionDate;
68
  }
69
 
70
  //
72
  //
73
  class pl_order{
74
 
75
+ // ATTRIBUTES LISTING
76
  public $ref;
77
  public $origin;
78
  public $country;
95
  //
96
  class pl_privateData{
97
 
98
+ // ATTRIBUTES LISTING
99
+ public $key ;
100
+ public $value;
101
  }
102
 
103
  //
105
  //
106
  class pl_authorization{
107
 
108
+ // ATTRIBUTES LISTING
109
+ public $number;
110
+ public $date;
111
  }
112
 
113
  //
115
  //
116
  class pl_address{
117
 
118
+ // ATTRIBUTES LISTING
119
+ public $name;
120
+ public $street1;
121
+ public $street2;
122
+ public $cityName;
123
+ public $zipCode;
124
+ public $country;
125
+ public $phone;
126
  }
127
 
128
  //
140
  public $walletSecured;
141
  public $walletCardInd;
142
  public $shippingAdress;
143
+ public $billingAddress;
144
  public $accountCreateDate;
145
  public $accountAverageAmount;
146
  public $accountOrderCount;
152
  }
153
  }
154
 
155
+ //
156
+ // PL_OWNER OBJECT DEFINITION
157
+ //
158
+ class pl_owner{
159
+
160
+ // ATTRIBUTES LISTING
161
+ public $lastName;
162
+ public $firstName;
163
+ public $billingAddress;
164
+ public $issueCardDate;
165
+ }
166
+
167
  //
168
  // PL_ORDERDETAIL OBJECT DEFINITION
169
  //
170
  class pl_orderDetail{
171
 
172
+ // ATTRIBUTES LISTING
173
+ public $ref;
174
+ public $price;
175
+ public $quantity;
176
+ public $comment;
177
  }
178
 
179
  //
188
  public $cvx;
189
  public $ownerBirthdayDate;
190
  public $password;
191
+ public $cardholder; //added by smile
192
+ public $token;
193
 
194
+ function __construct($type) {
195
+ $this->accountCreateDate = date('d/m/y', time());
196
+ }
197
  }
198
 
199
 
202
  //
203
  class pl_transaction{
204
 
205
+ // ATTRIBUTES LISTING
206
+ public $id;
207
+ public $isPossibleFraud;
208
+ public $isDuplicated;
209
+ public $date;
210
  }
211
 
212
 
215
  //
216
  class pl_result{
217
 
218
+ // ATTRIBUTES LISTING
219
+ public $code;
220
+ public $shortMessage;
221
+ public $longMessage;
222
  }
223
 
224
  //
226
  //
227
  class pl_capture{
228
 
229
+ // ATTRIBUTES LISTING
230
+ public $transactionID;
231
+ public $payment;
232
+ public $sequenceNumber;
233
 
234
+ function __construct() {
235
+ $this->payment = new pl_payment();
236
+ }
237
  }
238
 
239
  //
240
  // PL_REFUND OBJECT DEFINITION
241
  //
242
  class pl_refund extends pl_capture {
243
+ function __construct() {
244
+ parent::__construct();
245
+ }
246
  }
247
 
248
  //
250
  //
251
  class pl_wallet{
252
 
253
+ // ATTRIBUTES LISTING
254
+ public $walletId;
255
+ public $lastName;
256
+ public $firstName;
257
+ public $email;
258
+ public $shippingAddress;
259
+ public $card;
260
+ public $comment;
261
+
262
+ function __construct() {
263
+ }
264
  }
265
 
266
  //
268
  //
269
  class pl_recurring{
270
 
271
+ // ATTRIBUTES LISTING
272
+ public $firstAmount;
273
+ public $amount;
274
+ public $billingCycle;
275
+ public $billingLeft;
276
+ public $billingDay;
277
+ public $startDate;
278
+
279
+ function __construct() {
280
+ }
281
  }
282
 
283
  //
285
  //
286
  class pl_authentication3DSecure{
287
 
288
+ // ATTRIBUTES LISTING
289
+ public $md ;
290
+ public $pares ;
291
+ public $xid ;
292
+ public $eci ;
293
+ public $cavv ;
294
+ public $cavvAlgorithm ;
295
+ public $vadsResult ;
296
+
297
+ function __construct() {
298
+ }
299
  }
300
 
301
  //
302
+ // PL_BANKACCOUNTDATA
303
  //
304
  class pl_bankAccountData{
305
 
306
 
307
+ // ATTRIBUTES LISTING
308
+ public $countryCode ;
309
+ public $bankCode ;
310
+ public $accountNumber ;
311
+ public $key ;
312
 
313
 
314
+ function __construct() {
315
+ }
316
  }
317
 
318
  //
320
  //
321
  class pl_cheque{
322
 
323
+ // ATTRIBUTES LISTING
324
+ public $number ;
325
 
326
+ function __construct() {
327
+ }
328
  }
329
 
330
  final class Log {
354
  // PAYLINESDK CLASS
355
  //
356
  class paylineSDK{
357
+
358
  // kit version
359
+ // const KIT_VERSION = 'kit PHP version 1.3';
360
+ const KIT_VERSION = 'module Magento 1.7.6';
361
 
362
  // trace log
363
  var $paylineTrace;
376
 
377
  // current endpoint
378
  private $webServicesEndpoint;
379
+
380
+ // version of web service
381
+ private $version = '';
382
+
383
+ // devise used by the customer
384
+ private $media = '';
385
 
386
  // SOAP ACTIONS CONSTANTS
387
  const soap_result = 'result';
393
  const soap_transaction = 'transaction';
394
  const soap_privateData = 'privateData';
395
  const soap_buyer = 'buyer';
396
+ const soap_owner = 'owner';
397
  const soap_address = 'address';
398
  const soap_capture = 'capture';
399
  const soap_refund = 'refund';
422
  // WALLET
423
  public $walletIdList;
424
 
425
+ // SWITCHING VAR
426
  public $NMAX_TENTATIVE = '';
427
  public $CALL_TIMEOUT = '';
428
  public $RETRY_TIMEOUT = '';
429
  public $PRIMARY = true ;
430
  public $CURRENT_NUMBER_CALL = 0;
431
  public $DEFAULT_SOCKET_TIMEOUT = 0;
432
+
433
+ /**
434
+ * contructor of PAYLINESDK CLASS
435
+ **/
436
+ function __construct($merchant_id, $acess_key, $proxy_host, $proxy_port, $proxy_login, $proxy_password, $production) {
437
  $this->writeTrace('----------------------------------------------------------');
438
  $this->writeTrace("paylineSDK::__construct($merchant_id, ".$this->maskAccessKey($acess_key).", $proxy_host, $proxy_port, $proxy_login, $proxy_password, $production)");
439
  $this->header_soap = array();
445
  $this->header_soap['proxy_login'] = $proxy_login;
446
  $this->header_soap['proxy_password'] = $proxy_password;
447
  }
448
+ if($production){
449
+ $this->webServicesEndpoint = paylineSDK::PROD_ENDPOINT;
450
+ }else{
451
+ $this->webServicesEndpoint = paylineSDK::HOMO_ENDPOINT;
452
+ }
453
  $this->header_soap['style'] = SOAP_DOCUMENT;
454
  $this->header_soap['use'] = SOAP_LITERAL;
455
  $this->header_soap['version'] = paylineSDK::KIT_VERSION;
 
456
  $this->items = array();
457
  $this->privates = array();
458
  $this->walletIdList = array();
460
  ini_set('user_agent', "PHP\r\nversion: ".paylineSDK::KIT_VERSION);
461
  }
462
 
463
+ /**
464
+ * function payment
465
+ * @params : $array : array. the array keys are listed in pl_payment CLASS.
466
+ * @return : SoapVar : object
467
+ * @description : build pl_payment instance from $array and make SoapVar object for payment.
468
+ **/
469
+ protected function payment($array) {
470
  $payment = new pl_payment();
471
  if($array && is_array($array)){
472
  foreach($array as $k=>$v){
478
  return new SoapVar($payment, SOAP_ENC_OBJECT, paylineSDK::soap_payment, paylineSDK::PAYLINE_NAMESPACE);
479
  }
480
 
481
+ /**
482
+ * function order
483
+ * @params : $array : array. the array keys are listed in pl_order CLASS.
484
+ * @return : SoapVar : object
485
+ * @description : build pl_order instance from $array and make SoapVar object for order.
486
+ **/
487
+ protected function order($array) {
488
  $order = new pl_order();
489
  if($array && is_array($array)){
490
  foreach($array as $k=>$v){
499
  return new SoapVar($order, SOAP_ENC_OBJECT, paylineSDK::soap_order, paylineSDK::PAYLINE_NAMESPACE);
500
  }
501
 
502
+ /**
503
+ * function address
504
+ * @params : $address : array. the array keys are listed in pl_address CLASS.
505
+ * @return : SoapVar : object
506
+ * @description : build pl_address instance from $array and make SoapVar object for address.
507
+ **/
508
+ protected function address($array) {
509
  $address = new pl_address();
510
  if($array && is_array($array)){
511
  foreach($array as $k=>$v){
515
  return new SoapVar($address, SOAP_ENC_OBJECT, paylineSDK::soap_address, paylineSDK::PAYLINE_NAMESPACE);
516
  }
517
 
518
+ /**
519
+ * function buyer
520
+ * @params : $array : array. the array keys are listed in pl_buyer CLASS.
521
+ * @params : $shippingAdress : array. the array keys are listed in pl_address CLASS.
522
+ * @params : $billingAddress : array. the array keys are listed in pl_address CLASS.
523
+ * @return : SoapVar : object
524
+ * @description : build pl_buyer instance from $array and $address and make SoapVar object for buyer.
525
+ **/
526
+ protected function buyer($array,$shippingAdress,$billingAddress) {
527
  $buyer = new pl_buyer();
528
  if($array && is_array($array)){
529
  foreach($array as $k=>$v){
530
  if(array_key_exists($k, $buyer)&&(strlen($v)))$buyer->$k = $v;
531
  }
532
  }
533
+ $buyer->shippingAdress = $this->address($shippingAdress);
534
+ $buyer->billingAddress = $this->address($billingAddress);
535
  return new SoapVar($buyer, SOAP_ENC_OBJECT, paylineSDK::soap_buyer, paylineSDK::PAYLINE_NAMESPACE);
536
  }
537
+
538
+ /**
539
+ * function owner
540
+ * @params : $array : array. the array keys are listed in pl_buyer CLASS.
541
+ * @params : $shippingAdress : array. the array keys are listed in pl_address CLASS.
542
+ * @params : $billingAddress : array. the array keys are listed in pl_address CLASS.
543
+ * @return : SoapVar : object
544
+ * @description : build pl_buyer instance from $array and $address and make SoapVar object for buyer.
545
+ **/
546
+ protected function owner($array,$Address) {
547
+ if($array != null){
548
+ $owner = new pl_owner();
549
+ if($array && is_array($array)){
550
+ foreach($array as $k=>$v){
551
+ if(array_key_exists($k, $owner)&&(strlen($v)))$owner->$k = $v;
552
+ }
553
+ }
554
+ $owner->billingAddress = $this->address($Address);
555
+ return new SoapVar($owner, SOAP_ENC_OBJECT, paylineSDK::soap_owner, paylineSDK::PAYLINE_NAMESPACE);
556
+ }else{
557
+ return null;
558
+ }
559
+ }
560
 
561
  /**
562
  * function contracts
585
  return null;
586
  }
587
 
588
+ /**
589
+ * function authentification 3Dsecure
590
+ * @params : $array : array. the array keys are listed in pl_card CLASS.
591
+ * @return : SoapVar : object
592
+ * @description : build pl_authentication3DSecure instance from $array and make SoapVar object for authentication3DSecure.
593
+ **/
594
+ protected function authentication3DSecure($array) {
595
  $authentication3DSecure = new pl_authentication3DSecure($array);
596
  if($array && is_array($array)){
597
  foreach($array as $k=>$v){
603
  return new SoapVar($authentication3DSecure, SOAP_ENC_OBJECT, paylineSDK::soap_authentication3DSecure, paylineSDK::PAYLINE_NAMESPACE);
604
  }
605
 
606
+ /**
607
+ * function authorization
608
+ * @params : $array : array. the array keys are listed in pl_card CLASS.
609
+ * @return : SoapVar : object
610
+ * @description : build pl_authentication3DSecure instance from $array and make SoapVar object for authentication3DSecure.
611
+ **/
612
+ protected function authorization($array) {
613
  $authorization = new pl_authorization($array);
614
  if($array && is_array($array)){
615
  foreach($array as $k=>$v){
621
  return new SoapVar($authorization, SOAP_ENC_OBJECT, paylineSDK::soap_authorization, paylineSDK::PAYLINE_NAMESPACE);
622
  }
623
 
624
+ /**
625
+ * function card
626
+ * @params : $array : array. the array keys are listed in pl_card CLASS.
627
+ * @return : SoapVar : object
628
+ * @description : build pl_card instance from $array and make SoapVar object for card.
629
+ **/
630
+ protected function card($array) {
631
  $card = new pl_card($array['type']);
632
  if($array && is_array($array)){
633
  foreach($array as $k=>$v){
638
  }
639
  return new SoapVar($card, SOAP_ENC_OBJECT, paylineSDK::soap_card, paylineSDK::PAYLINE_NAMESPACE);
640
  }
641
+
642
+
643
+
644
+ /**
645
+ * function bankAccountData
646
+ * @params : $array : array. the array keys are listed in pl_bankAccountData CLASS.
647
+ * @return : SoapVar : object
648
+ * @description : build pl_bankAccountData instance from $array and make SoapVar object for bankAccountData.
649
+ **/
650
+ protected function bankAccountData($array) {
651
  $bankAccountData = new pl_bankAccountData($array);
652
  if($array && is_array($array)){
653
  foreach($array as $k=>$v){
658
  }
659
  return new SoapVar(null, SOAP_ENC_OBJECT, paylineSDK::soap_bankAccountData, paylineSDK::PAYLINE_NAMESPACE);
660
  }
661
+
662
+ /**
663
+ * function cheque
664
+ * @params : $array : array. the array keys are listed in pl_cheque CLASS.
665
+ * @return : SoapVar : object
666
+ * @description : build pl_authentication3DSecure instance from $array and make SoapVar object for cheque.
667
+ **/
668
+ protected function cheque($array) {
669
  $cheque = new pl_cheque($array);
670
  if($array && is_array($array)){
671
  foreach($array as $k=>$v){
702
 
703
  return $wallet;
704
  }
705
+
706
  /**
707
  * function recurring
708
  * @params : array : array. the array keys are listed in pl_recurring CLASS.
721
  }
722
  else return null;
723
  }
724
+
725
  /**
726
  * function setItem
727
  * @params : $item : array. the array keys are listed in PL_ORDERDETAIL CLASS.
805
  $this->PRIMARY = false;
806
  $this->CURRENT_NUMBER_CALL = 0;
807
  $this->header_soap['connection_timeout'] = $this->CALL_TIMEOUT;
808
+ if($this->production){
809
  $this->webServicesEndpoint = paylineSDK::PROD_ENDPOINT_HD;
810
  }else{
811
  $this->webServicesEndpoint = paylineSDK::HOMO_ENDPOINT_HD;
1179
  $client = new SoapClient(dirname(__FILE__).'/'.paylineSDK::WSDL, $this->header_soap);
1180
  $client->__setLocation ($this->webServicesEndpoint.$PaylineAPI);
1181
  $this->writeTrace("webServiceRequest($Method) - Location : ".$this->webServicesEndpoint.$PaylineAPI);
1182
+ if(isset($array['version'])&& strlen($array['version'])) $this->version = $array['version'];
1183
+ if(isset($array['media'])&& strlen($array['media'])) $this->media = $array['media'];
1184
 
1185
  switch($Method){
1186
  case 'createMerchant':
1264
  case 'getWebWallet':
1265
  $WSresponse = $client->getWebWallet($WSRequest);
1266
  break;
1267
+ case 'manageWebWallet' :
1268
+ $WSresponse = $client->manageWebWallet($WSRequest);
1269
+ break;
1270
  case 'transactionsSearch':
1271
  $WSresponse = $client->transactionsSearch($WSRequest);
1272
  break;
1319
  }
1320
 
1321
  public function createWallet($array){
1322
+ if(!isset($array['walletContracts'])||!strlen($array['walletContracts'][0]))$array['walletContracts'] = '';
1323
  $WSRequest = array (
1324
+ 'version' => $array['version'], // modified by smile
1325
  'contractNumber' => $array['contractNumber'],
1326
+ 'wallet' => $this->wallet($array['wallet'],$array['address'],$array['card']),
1327
+ 'buyer' => $this->buyer($array['buyer'],$array['billingAddress'],$array['shippingAddress']),
1328
+ 'owner' => $this->owner($array['owner'],$array['ownerAddress']),
1329
  'privateDataList' => $this->privates,
1330
  'authentication3DSecure' =>$this->authentication3DSecure($array['3DSecure']),
1331
+ 'media' => $this->media,
1332
+ 'contractNumberWalletList' => $this->secondContracts($array['walletContracts'])
1333
  );
1334
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'createWallet');
1335
  }
1343
  if(isset($array['customPaymentPageCode'])&& strlen($array['customPaymentPageCode'])) $this->customPaymentPageCode = $array['customPaymentPageCode'];
1344
  if(isset($array['languageCode'])&& strlen($array['languageCode'])) $this->languageCode = $array['languageCode'];
1345
  if(isset($array['securityMode'])&& strlen($array['securityMode'])) $this->securityMode = $array['securityMode'];
1346
+ if(!isset($array['contracts'])||!strlen($array['contracts'][0]))$array['contracts'] = '';
1347
+ if(!isset($array['walletContracts'])||!strlen($array['walletContracts'][0]))$array['walletContracts'] = '';
1348
  $WSRequest = array (
1349
+ 'version' => $array['version'], // modified by smile
1350
  'contractNumber' => $array['contractNumber'],
1351
  'selectedContractList' => $this->contracts($array['contracts']),
1352
  'updatePersonalDetails' => $array['updatePersonalDetails'],
1353
+ 'buyer' => $this->buyer($array['buyer'],$array['billingAddress'],$array['shippingAddress']),
1354
+ 'languageCode' => $this->languageCode,
1355
+ 'customPaymentPageCode' => $this->customPaymentPageCode,
1356
+ 'securityMode' => $this->securityMode,
1357
  'returnURL' => $this->returnURL,
1358
  'cancelURL' => $this->cancelURL,
1359
  'notificationURL' => $this->notificationURL,
1360
+ 'privateDataList' => $this->privates,
 
1361
  'customPaymentTemplateURL' => $this->customPaymentTemplateURL,
1362
+ 'contractNumberWalletList' => $this->secondContracts($array['walletContracts'])
1363
+ );
1364
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::WEB_API,'createWebWallet');
1365
  }
1366
 
1382
  }
1383
 
1384
  public function doAuthorization($array){
1385
+ if(!isset($array['buyer']))$array['buyer'] = null;
1386
+ if(!isset($array['billingAddress']))$array['billingAddress'] = null;
1387
+ if(!isset($array['shippingAddress']))$array['shippingAddress'] = null;
1388
  $WSRequest = array (
1389
+ 'version' => $array['version'], // modified by smile
1390
  'payment' => $this->payment($array['payment']),
1391
  'card' => $this->card($array['card']),
1392
  'order' => $this->order($array['order']),
1393
+ 'buyer' => $this->buyer($array['buyer'],$array['billingAddress'],$array['shippingAddress']),
1394
  'privateDataList' => $this->privates,
1395
  'authentication3DSecure' =>$this->authentication3DSecure($array['3DSecure']),
1396
  'bankAccountData' => $this->bankAccountData($array['BankAccountData']),
1397
+ 'media' => $this->media
1398
  );
1399
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doAuthorization');
1400
  }
1401
 
1402
  public function doCapture($array){
1403
  $WSRequest = array (
1404
+ 'version' => $array['version'], // modified by smile
1405
  'transactionID' =>$array['transactionID'],
1406
  'payment' => $this->payment($array['payment']),
1407
  'privateDataList' => $this->privates,
1408
+ 'sequenceNumber'=>$array['sequenceNumber'],
1409
+ 'media' => $this->media
1410
+ );
1411
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doCapture');
1412
  }
1413
 
1414
  public function doCredit($array){
1415
+ if(!isset($array['buyer']))$array['buyer'] = null;
1416
+ if(!isset($array['billingAddress']))$array['billingAddress'] = null;
1417
+ if(!isset($array['shippingAddress']))$array['shippingAddress'] = null;
1418
  $WSRequest = array (
1419
+ 'version' => $array['version'], // modified by smile
1420
  'payment' => $this->payment($array['payment']),
1421
  'card' => $this->card($array['card']),
1422
+ 'buyer' => $this->buyer($array['buyer'],$array['billingAddress'],$array['shippingAddress']),
1423
  'privateDataList' => $this->privates,
1424
  'order' => $this->order($array['order']),
1425
  'comment' =>$array['comment'],
1426
+ 'media' => $this->media
1427
  );
1428
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doCredit');
1429
  }
1430
 
1431
  public function doDebit($array){
1432
+ if(!isset($array['buyer']))$array['buyer'] = null;
1433
+ if(!isset($array['billingAddress']))$array['billingAddress'] = null;
1434
+ if(!isset($array['shippingAddress']))$array['shippingAddress'] = null;
1435
  $WSRequest = array (
1436
+ 'version' => $array['version'], // modified by smile
1437
  'payment' => $this->payment($array['payment']),
1438
  'card' => $this->card($array['card']),
1439
  'order' => $this->order($array['order']),
1440
  'privateDataList' => $this->privates,
1441
+ 'buyer' => $this->buyer($array['buyer'],$array['billingAddress'],$array['shippingAddress']),
1442
  'authentication3DSecure' =>$this->authentication3DSecure($array['3DSecure']),
1443
  'authorization' =>$this->authorization($array['authorization']),
1444
+ 'media' => $this->media
1445
  );
1446
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doDebit');
1447
  }
1448
 
1449
  public function doImmediateWalletPayment($array){
1450
  $WSRequest = array (
1451
+ 'version' => $array['version'], // modified by smile
1452
  'payment' => $this->payment($array['payment']),
1453
  'order' => $this->order($array['order']),
1454
  'walletId' => $array['walletId'],
1455
+ 'cardInd' => $array['cardInd'],
1456
  'privateDataList' => $this->privates,
1457
+ 'media' => $this->media,
1458
  );
1459
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doImmediateWalletPayment');
1460
  }
1461
 
1462
  public function doReAuthorization($array){
1463
  $WSRequest = array (
1464
+ 'version' => $array['version'], // modified by smile
1465
  'transactionID' => $array['transactionID'],
1466
  'payment' => $this->payment($array['payment']),
1467
  'order' => $this->order($array['order']),
1468
+ 'privateDataList' => $this->privates,
1469
+ 'media' => $this->media
1470
  );
1471
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doReAuthorization');
1472
  }
1473
 
1474
  public function doRecurrentWalletPayment($array){
1475
  $WSRequest = array (
1476
+ 'version' => $array['version'], // modified by smile
1477
  'payment' => $this->payment($array['payment']),
1478
  'orderRef' => $array['orderRef'],
1479
  'orderDate' => $array['orderDate'],
 
 
 
1480
  'scheduledDate' => $array['scheduled'],
1481
+ 'walletId' => $array['walletId'],
1482
+ 'cardInd' => $array['cardInd'],
1483
  'recurring' => $this->recurring($array['recurring']),
1484
+ 'privateDataList' => $this->privates,
1485
+ 'order' => $this->order($array['order']),
1486
+ 'media' => $this->media
1487
  );
1488
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doRecurrentWalletPayment');
1489
  }
1490
 
1491
  public function doRefund($array){
1492
  $WSRequest = array (
1493
+ 'version' => $array['version'], // modified by smile
1494
  'transactionID' =>$array['transactionID'],
1495
  'payment' =>$this->payment($array['payment']),
1496
  'comment' =>$array['comment'],
1497
  'privateDataList' => $this->privates,
1498
+ 'sequenceNumber'=>$array['sequenceNumber'],
1499
+ 'media' => $this->media
1500
+ );
1501
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doRefund');
1502
  }
1503
 
1504
  public function doReset($array){
1505
  $WSRequest = array (
1506
+ 'version' => $array['version'], // modified by smile
1507
+ 'transactionID' => $array['transactionID'],
1508
+ 'comment' => $array['comment'],
1509
+ 'media' => $this->media
1510
+ );
1511
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doReset');
1512
  }
1513
 
1514
  public function doScheduledWalletPayment($array){
1515
  $WSRequest = array (
1516
+ 'version' => $array['version'], // modified by smile
1517
  'payment' => $this->payment($array['payment']),
1518
  'orderRef' => $array['orderRef'],
1519
  'orderDate' => $array['orderDate'],
 
 
1520
  'scheduledDate' => $array['scheduled'],
1521
+ 'walletId' => $array['walletId'],
1522
+ 'cardInd' => $array['cardInd'],
1523
+ 'order' => $this->order($array['order']),
1524
+ 'privateDataList' => $this->privates,
1525
+ 'media' => $this->media
1526
  );
1527
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doScheduledWalletPayment');
1528
  }
1529
 
1530
  public function doScoringCheque($array){
1531
  $WSRequest = array (
1532
+ 'version' => $array['version'], // modified by smile
1533
  'payment' => $this->payment($array['payment']),
1534
+ 'cheque' => $this->cheque($array['cheque']),
1535
  'order' => $this->order($array['order']),
1536
+ 'privateDataList' => $this->privates,
1537
+ 'media' => $this->media
1538
  );
1539
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'doScoringCheque');
1540
  }
1550
  if(!isset($array['payment']))$array['payment'] = null;
1551
  if(!isset($array['contracts'])||!strlen($array['contracts'][0]))$array['contracts'] = '';
1552
  if(!isset($array['secondContracts'])||!strlen($array['secondContracts'][0]))$array['secondContracts'] = '';
1553
+ if(!isset($array['walletContracts'])||!strlen($array['walletContracts'][0]))$array['walletContracts'] = '';
1554
  if(!isset($array['buyer']))$array['buyer'] = null;
1555
+ if(!isset($array['billingAddress']))$array['billingAddress'] = null;
1556
+ if(!isset($array['shippingAddress']))$array['shippingAddress'] = null;
1557
  if(!isset($array['recurring']))$array['recurring'] = null;
1558
  $WSRequest = array (
1559
+ 'version' => $array['version'], // modified by smile
1560
+ 'payment' => $this->payment($array['payment']),
1561
+ 'returnURL' => $this->returnURL,
1562
+ 'cancelURL' => $this->cancelURL,
1563
+ 'order' => $this->order($array['order']),
1564
+ 'notificationURL' => $this->notificationURL,
1565
+ 'customPaymentTemplateURL' => $this->customPaymentTemplateURL,
1566
+ 'selectedContractList' => $this->contracts($array['contracts']),
1567
+ 'secondSelectedContractList' => $this->secondContracts($array['secondContracts']),
1568
+ 'privateDataList' => $this->privates,
1569
+ 'languageCode' => $this->languageCode,
1570
+ 'customPaymentPageCode' => $this->customPaymentPageCode,
1571
+ 'buyer' => $this->buyer($array['buyer'],$array['billingAddress'],$array['shippingAddress']),
1572
+ 'securityMode' => $this->securityMode,
1573
+ 'contractNumberWalletList' => $this->secondContracts($array['walletContracts'])
1574
+ );
1575
+
1576
  if(isset($array['payment']['mode'])){
1577
  if(($array['payment']['mode'] == "REC") || ($array['payment']['mode'] == "NX")) {
1578
  $WSRequest['recurring'] = $this->recurring($array['recurring']);
1613
  }
1614
 
1615
  public function getMerchantSettings($array){
1616
+ $WSRequest = array(
1617
+ 'version' => $array['version'] // modified by smile
1618
+ );
1619
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'getMerchantSettings');
1620
  }
1621
 
1622
  public function getPaymentRecord($array){
1623
  $WSRequest = array (
1624
+ 'version' => $array['version'], // modified by smile
1625
  'contractNumber' => $array['contractNumber'],
1626
  'paymentRecordId' => $array['paymentRecordId']
1627
  );
1629
  }
1630
  public function getTransactionDetails($array){
1631
  $WSRequest = array (
1632
+ 'version' => $array['version'], // modified by smile
1633
  'transactionId' => $array['transactionId'],
1634
  'orderRef' => $array['orderRef'],
1635
  'startDate' => $array['startDate'],
 
1636
  'endDate' => $array['endDate'],
1637
+ 'transactionHistory' => $array['transactionHistory'],
1638
+ 'archiveSearch' => $array['archiveSearch']
1639
  );
1640
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::EXTENDED_API,'getTransactionDetails');
1641
  }
1642
  public function getWallet($array){
1643
  $WSRequest = array (
1644
+ 'version' => $array['version'], // modified by smile
1645
  'contractNumber' => $array['contractNumber'],
1646
  'walletId' => $array['walletId'],
1647
  'cardInd' => $array['cardInd'],
1648
+ 'media' => $this->media
1649
  );
1650
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'getWallet');
1651
  }
1660
  return $this->webServiceRequest($array,$array,paylineSDK::WEB_API,'getWebWallet');
1661
  }
1662
 
1663
+ public function manageWebWallet($array){
1664
+ if(isset($array['cancelURL'])&& strlen($array['cancelURL'])) $this->cancelURL = $array['cancelURL'];
1665
+ if(isset($array['notificationURL']) && strlen($array['notificationURL'])) $this->notificationURL = $array['notificationURL'];
1666
+ if(isset($array['returnURL'])&& strlen($array['returnURL'])) $this->returnURL = $array['returnURL'];
1667
+ if(!isset($array['buyer']))$array['buyer'] = null;
1668
+ if(!isset($array['billingAddress']))$array['billingAddress'] = null;
1669
+ if(!isset($array['shippingAddress']))$array['shippingAddress'] = null;
1670
+ if(!isset($array['owner']))$array['owner'] = null;
1671
+ if(!isset($array['ownerAddress']))$array['ownerAddress'] = null;
1672
+ if(!isset($array['contracts'])||!strlen($array['contracts'][0]))$array['contracts'] = '';
1673
+ if(!isset($array['walletContracts'])||!strlen($array['walletContracts'][0]))$array['walletContracts'] = '';
1674
+ if(isset($array['customPaymentPageCode'])&& strlen($array['customPaymentPageCode'])) $this->customPaymentPageCode = $array['customPaymentPageCode'];
1675
+ if(isset($array['customPaymentTemplateURL'])&& strlen($array['customPaymentTemplateURL'])) $this->customPaymentTemplateURL = $array['customPaymentTemplateURL'];
1676
+ $WSRequest = array (
1677
+ 'version' => $array['version'], // modified by smile
1678
+ 'contractNumber' => $array['contractNumber'],
1679
+ 'selectedContractList' => $this->contracts($array['contracts']),
1680
+ 'updatePersonalDetails' => $array['updatePersonalDetails'],
1681
+ 'buyer' => $this->buyer($array['buyer'],$array['billingAddress'],$array['shippingAddress']),
1682
+ 'owner' => $this->owner($array['owner'],$array['ownerAddress']),
1683
+ 'languageCode' => $array['languageCode'],
1684
+ 'customPaymentPageCode' => $array['customPaymentPageCode'],
1685
+ 'securityMode' => $array['securityMode'],
1686
+ 'returnURL' => $this->returnURL,
1687
+ 'cancelURL' => $this->cancelURL,
1688
+ 'notificationURL' => $this->notificationURL,
1689
+ 'privateDataList' => $this->privates,
1690
+ 'customPaymentTemplateURL' => $array['customPaymentTemplateURL'],
1691
+ 'contractNumberWalletList' => $this->secondContracts($array['walletContracts'])
1692
+ );
1693
+ return $this->webServiceRequest($array,$WSRequest,paylineSDK::WEB_API,'manageWebWallet');
1694
+ }
1695
+
1696
  public function transactionsSearch($array){
1697
  $WSRequest = array (
1698
+ 'version' => $array['version'], // modified by smile
1699
  'transactionId' => $array['transactionId'],
1700
  'orderRef' => $array['orderRef'],
1701
  'startDate' => $array['startDate'],
1702
  'endDate' => $array['endDate'],
1703
+ 'contractNumber' => $array['contractNumber'],
1704
  'authorizationNumber' => $array['authorizationNumber'],
1705
+ 'returnCode' => $array['returnCode'],
1706
  'paymentMean' => $array['paymentMean'],
1707
  'transactionType' => $array['transactionType'],
1708
  'name' => $array['name'],
1713
  'minAmount' => $array['minAmount'],
1714
  'maxAmount' => $array['maxAmount'],
1715
  'walletId' => $array['walletId'],
1716
+ 'sequenceNumber' => $array['sequenceNumber'],
1717
+ 'token' => $array['token']
1718
  );
1719
+ return $this->webServiceRequest($array,$WSRequest,paylineSDK::EXTENDED_API,'transactionsSearch');
1720
  }
1721
 
1722
  public function updateWallet($array){
1723
  $WSRequest = array (
1724
+ 'version' => $array['version'], // modified by smile
1725
  'contractNumber' => $array['contractNumber'],
1726
+ 'cardInd' => $array['cardInd'],
1727
+ 'wallet' => $this->wallet($array['wallet'],$array['address'],$array['card']),
1728
+ 'buyer' => $this->buyer($array['buyer'], $array['billingAddress'],$array['shippingAddress']),
1729
+ 'owner' => $this->owner($array['owner'],$array['ownerAddress']),
1730
  'privateDataList' => $this->privates,
1731
  'authentication3DSecure' =>$this->authentication3DSecure($array['3DSecure']),
1732
+ 'media' => $this->media,
1733
+ 'contractNumberWalletList' => $this->secondContracts($array['walletContracts'])
 
1734
  );
1735
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'updateWallet');
1736
  }
1743
  if(isset($array['customPaymentPageCode'])&& strlen($array['customPaymentPageCode'])) $this->customPaymentPageCode = $array['customPaymentPageCode'];
1744
  if(isset($array['languageCode'])&& strlen($array['languageCode'])) $this->languageCode = $array['languageCode'];
1745
  if(isset($array['securityMode'])&& strlen($array['securityMode'])) $this->securityMode = $array['securityMode'];
1746
+ if(!isset($array['walletContracts'])||!strlen($array['walletContracts'][0]))$array['walletContracts'] = '';
1747
  $WSRequest = array (
1748
+ 'version' => $array['version'], // modified by smile
1749
+ 'contractNumber' => $array['contractNumber'],
1750
+ 'cardInd' => $array['cardInd'],
1751
+ 'walletId' => $array['walletId'],
1752
+ 'updatePersonalDetails' => $array['updatePersonalDetails'],
1753
+ 'updateOwnerDetails' => $array['updateOwnerDetails'],
1754
+ 'updatePaymentDetails' => $array['updatePaymentDetails'],
1755
+ 'buyer' => $this->buyer($array['buyer'],$array['billingAddress'],$array['shippingAddress']),
1756
+ 'languageCode' => $this->languageCode,
1757
+ 'customPaymentPageCode' => $this->customPaymentPageCode,
1758
+ 'securityMode' => $this->securityMode,
1759
+ 'returnURL' => $this->returnURL,
1760
+ 'cancelURL' => $this->cancelURL,
1761
+ 'notificationURL' => $this->notificationURL,
1762
+ 'privateDataList' => $this->privates,
1763
+ 'customPaymentTemplateURL' => $this->customPaymentTemplateURL,
1764
+ 'contractNumberWalletList' => $this->secondContracts($array['walletContracts'])
1765
  );
1766
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::WEB_API,'updateWebWallet');
1767
  }
1785
  );
1786
  return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'verifyEnrollment');
1787
  }
 
 
1788
  }
1789
  ?>
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-07-10.log ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-07-10 11:43:42 - ----------------------------------------------------------
2
+ 2013-07-10 11:43:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-07-10 11:43:43 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-07-10 11:43:44 - response return (code 02303)
5
+ 2013-07-10 11:46:20 - ----------------------------------------------------------
6
+ 2013-07-10 11:46:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-07-10 11:46:20 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
8
+ 2013-07-10 11:46:21 - response return (code 02303)
9
+ 2013-07-10 11:46:21 - ----------------------------------------------------------
10
+ 2013-07-10 11:46:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-07-10 11:46:21 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
12
+ 2013-07-10 11:46:22 - response return (code 02303)
13
+ 2013-07-10 11:46:31 - ----------------------------------------------------------
14
+ 2013-07-10 11:46:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-07-10 11:46:31 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
16
+ 2013-07-10 11:46:32 - response return (code 02303)
17
+ 2013-07-10 11:47:17 - ----------------------------------------------------------
18
+ 2013-07-10 11:47:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-07-10 11:47:17 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
20
+ 2013-07-10 11:47:18 - response return (code 02303)
21
+ 2013-07-10 11:47:18 - ----------------------------------------------------------
22
+ 2013-07-10 11:47:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-07-10 11:47:18 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
24
+ 2013-07-10 11:47:19 - response return (code 02303)
25
+ 2013-07-10 12:19:29 - ----------------------------------------------------------
26
+ 2013-07-10 12:19:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-07-10 12:19:29 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
28
+ 2013-07-10 12:19:30 - response return (code 00000)
29
+ 2013-07-10 12:19:51 - ----------------------------------------------------------
30
+ 2013-07-10 12:19:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-07-10 12:19:51 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
32
+ 2013-07-10 12:19:52 - response return (code 00000)
33
+ 2013-07-10 12:21:30 - ----------------------------------------------------------
34
+ 2013-07-10 12:21:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
35
+ 2013-07-10 12:21:30 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
36
+ 2013-07-10 12:21:31 - response return (code 00000)
37
+ 2013-07-10 12:22:21 - ----------------------------------------------------------
38
+ 2013-07-10 12:22:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-07-10 12:22:21 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
40
+ 2013-07-10 12:22:22 - response return (code 02500)
41
+ 2013-07-10 13:35:34 - ----------------------------------------------------------
42
+ 2013-07-10 13:35:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-07-10 13:35:34 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
44
+ 2013-07-10 13:35:35 - response return (code 02500)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-19.log ADDED
@@ -0,0 +1,322 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-08-19 9:56:45 - ----------------------------------------------------------
2
+ 2013-08-19 9:56:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-08-19 9:56:45 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
4
+ 2013-08-19 9:56:46 - response return (code 00000)
5
+ 2013-08-19 9:57:10 - ----------------------------------------------------------
6
+ 2013-08-19 9:57:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-08-19 9:57:10 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
8
+ 2013-08-19 9:57:11 - response return (code 00000)
9
+ 2013-08-19 12:16:37 - ----------------------------------------------------------
10
+ 2013-08-19 12:16:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-08-19 12:16:37 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
12
+ 2013-08-19 12:16:38 - response return (code 02503)
13
+ 2013-08-19 12:18:35 - ----------------------------------------------------------
14
+ 2013-08-19 12:18:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-08-19 12:18:35 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
16
+ 2013-08-19 12:18:35 - response return (code 02503)
17
+ 2013-08-19 12:18:44 - ----------------------------------------------------------
18
+ 2013-08-19 12:18:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-08-19 12:18:44 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
20
+ 2013-08-19 12:18:44 - response return (code 02503)
21
+ 2013-08-19 12:18:44 - ----------------------------------------------------------
22
+ 2013-08-19 12:18:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-08-19 12:18:44 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
24
+ 2013-08-19 12:18:45 - response return (code 02503)
25
+ 2013-08-19 12:21:06 - ----------------------------------------------------------
26
+ 2013-08-19 12:21:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-08-19 12:21:06 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
28
+ 2013-08-19 12:21:06 - response return (code 02503)
29
+ 2013-08-19 12:21:07 - ----------------------------------------------------------
30
+ 2013-08-19 12:21:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-08-19 12:21:07 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
32
+ 2013-08-19 12:21:07 - response return (code 00000)
33
+ 2013-08-19 12:22:03 - ----------------------------------------------------------
34
+ 2013-08-19 12:22:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
35
+ 2013-08-19 12:22:03 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
36
+ 2013-08-19 12:22:05 - response return (code 02500)
37
+ 2013-08-19 12:29:22 - ----------------------------------------------------------
38
+ 2013-08-19 12:29:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-08-19 12:29:22 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
40
+ 2013-08-19 12:29:24 - response return (code 02503)
41
+ 2013-08-19 12:29:29 - ----------------------------------------------------------
42
+ 2013-08-19 12:29:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-08-19 12:29:29 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
44
+ 2013-08-19 12:29:31 - response return (code 02503)
45
+ 2013-08-19 12:29:31 - ----------------------------------------------------------
46
+ 2013-08-19 12:29:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
47
+ 2013-08-19 12:29:31 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
48
+ 2013-08-19 12:29:32 - response return (code 02503)
49
+ 2013-08-19 12:29:50 - ----------------------------------------------------------
50
+ 2013-08-19 12:29:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
51
+ 2013-08-19 12:29:50 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
52
+ 2013-08-19 12:29:51 - response return (code 02503)
53
+ 2013-08-19 12:29:51 - ----------------------------------------------------------
54
+ 2013-08-19 12:29:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
55
+ 2013-08-19 12:29:51 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
56
+ 2013-08-19 12:29:52 - response return (code 00000)
57
+ 2013-08-19 12:33:16 - ----------------------------------------------------------
58
+ 2013-08-19 12:33:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
59
+ 2013-08-19 12:33:16 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
60
+ 2013-08-19 12:33:18 - response return (code 02500)
61
+ 2013-08-19 12:33:38 - ----------------------------------------------------------
62
+ 2013-08-19 12:33:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-08-19 12:33:38 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
64
+ 2013-08-19 12:33:38 - response return (code 02503)
65
+ 2013-08-19 12:33:46 - ----------------------------------------------------------
66
+ 2013-08-19 12:33:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
67
+ 2013-08-19 12:33:46 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
68
+ 2013-08-19 12:33:46 - response return (code 02503)
69
+ 2013-08-19 12:33:47 - ----------------------------------------------------------
70
+ 2013-08-19 12:33:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
71
+ 2013-08-19 12:33:47 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
72
+ 2013-08-19 12:33:47 - response return (code 02503)
73
+ 2013-08-19 12:37:19 - ----------------------------------------------------------
74
+ 2013-08-19 12:37:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
75
+ 2013-08-19 12:37:19 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
76
+ 2013-08-19 12:37:19 - response return (code 02503)
77
+ 2013-08-19 12:37:27 - ----------------------------------------------------------
78
+ 2013-08-19 12:37:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
79
+ 2013-08-19 12:37:27 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
80
+ 2013-08-19 12:37:28 - response return (code 02503)
81
+ 2013-08-19 12:37:28 - ----------------------------------------------------------
82
+ 2013-08-19 12:37:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
83
+ 2013-08-19 12:37:28 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
84
+ 2013-08-19 12:37:28 - response return (code 02503)
85
+ 2013-08-19 12:37:39 - ----------------------------------------------------------
86
+ 2013-08-19 12:37:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
87
+ 2013-08-19 12:37:39 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
88
+ 2013-08-19 12:37:40 - response return (code 02503)
89
+ 2013-08-19 12:37:40 - ----------------------------------------------------------
90
+ 2013-08-19 12:37:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
91
+ 2013-08-19 12:37:40 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
92
+ 2013-08-19 12:37:41 - response return (code 00000)
93
+ 2013-08-19 12:42:02 - ----------------------------------------------------------
94
+ 2013-08-19 12:42:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
95
+ 2013-08-19 12:42:02 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
96
+ 2013-08-19 12:42:03 - response return (code 02503)
97
+ 2013-08-19 12:42:09 - ----------------------------------------------------------
98
+ 2013-08-19 12:42:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
99
+ 2013-08-19 12:42:09 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
100
+ 2013-08-19 12:42:09 - response return (code 02503)
101
+ 2013-08-19 12:42:09 - ----------------------------------------------------------
102
+ 2013-08-19 12:42:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
103
+ 2013-08-19 12:42:09 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
104
+ 2013-08-19 12:42:09 - response return (code 02503)
105
+ 2013-08-19 12:42:18 - ----------------------------------------------------------
106
+ 2013-08-19 12:42:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
107
+ 2013-08-19 12:42:18 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
108
+ 2013-08-19 12:42:18 - response return (code 02503)
109
+ 2013-08-19 12:42:18 - ----------------------------------------------------------
110
+ 2013-08-19 12:42:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
111
+ 2013-08-19 12:42:18 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
112
+ 2013-08-19 12:42:19 - response return (code 00000)
113
+ 2013-08-19 12:42:24 - ----------------------------------------------------------
114
+ 2013-08-19 12:42:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
115
+ 2013-08-19 12:42:24 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
116
+ 2013-08-19 12:42:24 - response return (code 02319)
117
+ 2013-08-19 12:42:35 - ----------------------------------------------------------
118
+ 2013-08-19 12:42:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
119
+ 2013-08-19 12:42:35 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
120
+ 2013-08-19 12:42:35 - response return (code 02503)
121
+ 2013-08-19 12:42:41 - ----------------------------------------------------------
122
+ 2013-08-19 12:42:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
123
+ 2013-08-19 12:42:41 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
124
+ 2013-08-19 12:42:41 - response return (code 02503)
125
+ 2013-08-19 12:42:42 - ----------------------------------------------------------
126
+ 2013-08-19 12:42:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
127
+ 2013-08-19 12:42:42 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
128
+ 2013-08-19 12:42:42 - response return (code 02503)
129
+ 2013-08-19 12:43:05 - ----------------------------------------------------------
130
+ 2013-08-19 12:43:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
131
+ 2013-08-19 12:43:05 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
132
+ 2013-08-19 12:43:06 - response return (code 00000)
133
+ 2013-08-19 12:43:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
134
+ 2013-08-19 12:43:06 - response return (code 00000)
135
+ 2013-08-19 12:43:18 - ----------------------------------------------------------
136
+ 2013-08-19 12:43:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
137
+ 2013-08-19 12:43:18 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
138
+ 2013-08-19 12:43:19 - response return (code 02503)
139
+ 2013-08-19 12:43:24 - ----------------------------------------------------------
140
+ 2013-08-19 12:43:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
141
+ 2013-08-19 12:43:24 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
142
+ 2013-08-19 12:43:25 - response return (code 02503)
143
+ 2013-08-19 12:43:25 - ----------------------------------------------------------
144
+ 2013-08-19 12:43:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
145
+ 2013-08-19 12:43:25 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
146
+ 2013-08-19 12:43:25 - response return (code 02503)
147
+ 2013-08-19 12:45:41 - ----------------------------------------------------------
148
+ 2013-08-19 12:45:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
149
+ 2013-08-19 12:45:41 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
150
+ 2013-08-19 12:45:42 - response return (code 00000)
151
+ 2013-08-19 12:46:07 - ----------------------------------------------------------
152
+ 2013-08-19 12:46:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
153
+ 2013-08-19 12:46:07 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
154
+ 2013-08-19 12:46:07 - response return (code 02503)
155
+ 2013-08-19 12:46:13 - ----------------------------------------------------------
156
+ 2013-08-19 12:46:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
157
+ 2013-08-19 12:46:13 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
158
+ 2013-08-19 12:46:13 - response return (code 02503)
159
+ 2013-08-19 12:46:13 - ----------------------------------------------------------
160
+ 2013-08-19 12:46:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
161
+ 2013-08-19 12:46:13 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
162
+ 2013-08-19 12:46:13 - response return (code 02503)
163
+ 2013-08-19 12:46:25 - ----------------------------------------------------------
164
+ 2013-08-19 12:46:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
165
+ 2013-08-19 12:46:25 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
166
+ 2013-08-19 12:46:26 - response return (code 02503)
167
+ 2013-08-19 12:46:26 - ----------------------------------------------------------
168
+ 2013-08-19 12:46:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
169
+ 2013-08-19 12:46:26 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
170
+ 2013-08-19 12:46:26 - response return (code 00000)
171
+ 2013-08-19 12:46:37 - ----------------------------------------------------------
172
+ 2013-08-19 12:46:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
173
+ 2013-08-19 12:46:37 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
174
+ 2013-08-19 12:46:37 - response return (code 00000)
175
+ 2013-08-19 12:47:10 - ----------------------------------------------------------
176
+ 2013-08-19 12:47:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
177
+ 2013-08-19 12:47:10 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
178
+ 2013-08-19 12:47:10 - response return (code 02503)
179
+ 2013-08-19 12:47:21 - ----------------------------------------------------------
180
+ 2013-08-19 12:47:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
181
+ 2013-08-19 12:47:21 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
182
+ 2013-08-19 12:47:22 - response return (code 02503)
183
+ 2013-08-19 12:47:22 - ----------------------------------------------------------
184
+ 2013-08-19 12:47:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
185
+ 2013-08-19 12:47:22 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
186
+ 2013-08-19 12:47:22 - response return (code 02503)
187
+ 2013-08-19 13:11:48 - ----------------------------------------------------------
188
+ 2013-08-19 13:11:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
189
+ 2013-08-19 13:11:48 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
190
+ 2013-08-19 13:11:48 - response return (code 02503)
191
+ 2013-08-19 13:11:54 - ----------------------------------------------------------
192
+ 2013-08-19 13:11:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
193
+ 2013-08-19 13:11:54 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
194
+ 2013-08-19 13:11:55 - response return (code 02503)
195
+ 2013-08-19 13:11:55 - ----------------------------------------------------------
196
+ 2013-08-19 13:11:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
197
+ 2013-08-19 13:11:55 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
198
+ 2013-08-19 13:11:55 - response return (code 02503)
199
+ 2013-08-19 13:12:51 - ----------------------------------------------------------
200
+ 2013-08-19 13:12:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
201
+ 2013-08-19 13:12:51 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
202
+ 2013-08-19 13:12:51 - response return (code 02503)
203
+ 2013-08-19 13:12:52 - ----------------------------------------------------------
204
+ 2013-08-19 13:12:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
205
+ 2013-08-19 13:12:52 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
206
+ 2013-08-19 13:12:52 - response return (code 00000)
207
+ 2013-08-19 13:13:47 - ----------------------------------------------------------
208
+ 2013-08-19 13:13:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
209
+ 2013-08-19 13:13:47 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
210
+ 2013-08-19 13:13:49 - response return (code 02500)
211
+ 2013-08-19 13:14:13 - ----------------------------------------------------------
212
+ 2013-08-19 13:14:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
213
+ 2013-08-19 13:14:13 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
214
+ 2013-08-19 13:14:13 - response return (code 02503)
215
+ 2013-08-19 13:14:24 - ----------------------------------------------------------
216
+ 2013-08-19 13:14:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
217
+ 2013-08-19 13:14:24 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
218
+ 2013-08-19 13:14:24 - response return (code 02503)
219
+ 2013-08-19 13:14:24 - ----------------------------------------------------------
220
+ 2013-08-19 13:14:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
221
+ 2013-08-19 13:14:24 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
222
+ 2013-08-19 13:14:25 - response return (code 02503)
223
+ 2013-08-19 13:24:23 - ----------------------------------------------------------
224
+ 2013-08-19 13:24:23 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
225
+ 2013-08-19 13:24:23 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
226
+ 2013-08-19 13:24:23 - response return (code 02503)
227
+ 2013-08-19 13:24:31 - ----------------------------------------------------------
228
+ 2013-08-19 13:24:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
229
+ 2013-08-19 13:24:31 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
230
+ 2013-08-19 13:24:31 - response return (code 02503)
231
+ 2013-08-19 13:24:31 - ----------------------------------------------------------
232
+ 2013-08-19 13:24:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
233
+ 2013-08-19 13:24:31 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
234
+ 2013-08-19 13:24:31 - response return (code 02503)
235
+ 2013-08-19 13:24:37 - ----------------------------------------------------------
236
+ 2013-08-19 13:24:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
237
+ 2013-08-19 13:24:37 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
238
+ 2013-08-19 13:24:38 - response return (code 02503)
239
+ 2013-08-19 13:24:38 - ----------------------------------------------------------
240
+ 2013-08-19 13:24:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
241
+ 2013-08-19 13:24:38 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
242
+ 2013-08-19 13:24:38 - response return (code 00000)
243
+ 2013-08-19 13:24:53 - ----------------------------------------------------------
244
+ 2013-08-19 13:24:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
245
+ 2013-08-19 13:24:53 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
246
+ 2013-08-19 13:24:54 - response return (code 02500)
247
+ 2013-08-19 13:24:55 - ----------------------------------------------------------
248
+ 2013-08-19 13:24:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
249
+ 2013-08-19 13:24:55 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
250
+ 2013-08-19 13:24:56 - response return (code 00000)
251
+ 2013-08-19 13:56:04 - ----------------------------------------------------------
252
+ 2013-08-19 13:56:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
253
+ 2013-08-19 13:56:04 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
254
+ 2013-08-19 13:56:07 - response return (code 02500)
255
+ 2013-08-19 14:16:36 - ----------------------------------------------------------
256
+ 2013-08-19 14:16:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
257
+ 2013-08-19 14:16:36 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
258
+ 2013-08-19 14:16:37 - response return (code 02503)
259
+ 2013-08-19 14:16:43 - ----------------------------------------------------------
260
+ 2013-08-19 14:16:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
261
+ 2013-08-19 14:16:43 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
262
+ 2013-08-19 14:16:43 - response return (code 02503)
263
+ 2013-08-19 14:16:43 - ----------------------------------------------------------
264
+ 2013-08-19 14:16:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
265
+ 2013-08-19 14:16:43 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
266
+ 2013-08-19 14:16:44 - response return (code 02503)
267
+ 2013-08-19 14:16:50 - ----------------------------------------------------------
268
+ 2013-08-19 14:16:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
269
+ 2013-08-19 14:16:50 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
270
+ 2013-08-19 14:16:50 - response return (code 02503)
271
+ 2013-08-19 14:16:50 - ----------------------------------------------------------
272
+ 2013-08-19 14:16:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
273
+ 2013-08-19 14:16:50 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
274
+ 2013-08-19 14:16:51 - response return (code 00000)
275
+ 2013-08-19 14:17:28 - ----------------------------------------------------------
276
+ 2013-08-19 14:17:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
277
+ 2013-08-19 14:17:28 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
278
+ 2013-08-19 14:17:30 - response return (code 02500)
279
+ 2013-08-19 14:17:31 - ----------------------------------------------------------
280
+ 2013-08-19 14:17:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
281
+ 2013-08-19 14:17:31 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
282
+ 2013-08-19 14:17:32 - response return (code 00000)
283
+ 2013-08-19 14:55:28 - ----------------------------------------------------------
284
+ 2013-08-19 14:55:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
285
+ 2013-08-19 14:55:28 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
286
+ 2013-08-19 14:55:31 - response return (code 02500)
287
+ 2013-08-19 14:58:32 - ----------------------------------------------------------
288
+ 2013-08-19 14:58:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
289
+ 2013-08-19 14:58:32 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
290
+ 2013-08-19 14:58:33 - response return (code 02503)
291
+ 2013-08-19 14:58:45 - ----------------------------------------------------------
292
+ 2013-08-19 14:58:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
293
+ 2013-08-19 14:58:45 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
294
+ 2013-08-19 14:58:45 - response return (code 02503)
295
+ 2013-08-19 14:58:46 - ----------------------------------------------------------
296
+ 2013-08-19 14:58:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
297
+ 2013-08-19 14:58:46 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
298
+ 2013-08-19 14:58:46 - response return (code 02503)
299
+ 2013-08-19 14:58:59 - ----------------------------------------------------------
300
+ 2013-08-19 14:58:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
301
+ 2013-08-19 14:58:59 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
302
+ 2013-08-19 14:59:00 - response return (code 02503)
303
+ 2013-08-19 14:59:00 - ----------------------------------------------------------
304
+ 2013-08-19 14:59:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
305
+ 2013-08-19 14:59:00 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
306
+ 2013-08-19 14:59:01 - response return (code 00000)
307
+ 2013-08-19 14:59:25 - ----------------------------------------------------------
308
+ 2013-08-19 14:59:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
309
+ 2013-08-19 14:59:25 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
310
+ 2013-08-19 14:59:35 - Exception : Could not connect to host
311
+ 2013-08-19 15:36:14 - ----------------------------------------------------------
312
+ 2013-08-19 15:36:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
313
+ 2013-08-19 15:36:14 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
314
+ 2013-08-19 15:36:15 - response return (code 00000)
315
+ 2013-08-19 15:36:29 - ----------------------------------------------------------
316
+ 2013-08-19 15:36:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
317
+ 2013-08-19 15:36:29 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
318
+ 2013-08-19 15:36:29 - response return (code 00000)
319
+ 2013-08-19 16:16:18 - ----------------------------------------------------------
320
+ 2013-08-19 16:16:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
321
+ 2013-08-19 16:16:18 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
322
+ 2013-08-19 16:16:19 - response return (code 02503)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-20.log ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-08-20 7:40:43 - ----------------------------------------------------------
2
+ 2013-08-20 7:40:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-08-20 7:40:43 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
4
+ 2013-08-20 7:40:44 - response return (code 00000)
5
+ 2013-08-20 7:47:33 - ----------------------------------------------------------
6
+ 2013-08-20 7:47:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-08-20 7:48:46 - ----------------------------------------------------------
8
+ 2013-08-20 7:48:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
9
+ 2013-08-20 7:48:46 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
10
+ 2013-08-20 7:48:47 - response return (code 00000)
11
+ 2013-08-20 7:49:37 - ----------------------------------------------------------
12
+ 2013-08-20 7:49:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
13
+ 2013-08-20 7:49:37 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
14
+ 2013-08-20 7:49:37 - response return (code 00000)
15
+ 2013-08-20 7:50:48 - ----------------------------------------------------------
16
+ 2013-08-20 7:50:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
17
+ 2013-08-20 7:50:48 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
18
+ 2013-08-20 7:50:49 - response return (code 00000)
19
+ 2013-08-20 7:52:04 - ----------------------------------------------------------
20
+ 2013-08-20 7:52:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
21
+ 2013-08-20 7:52:04 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
22
+ 2013-08-20 7:52:05 - response return (code 00000)
23
+ 2013-08-20 7:52:19 - ----------------------------------------------------------
24
+ 2013-08-20 7:52:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
25
+ 2013-08-20 7:52:19 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
26
+ 2013-08-20 7:52:20 - response return (code 02500)
27
+ 2013-08-20 7:52:21 - ----------------------------------------------------------
28
+ 2013-08-20 7:52:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
29
+ 2013-08-20 7:52:21 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
30
+ 2013-08-20 7:52:22 - response return (code 02500)
31
+ 2013-08-20 7:56:22 - ----------------------------------------------------------
32
+ 2013-08-20 7:56:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
33
+ 2013-08-20 7:56:22 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
34
+ 2013-08-20 7:56:23 - response return (code 00000)
35
+ 2013-08-20 7:57:14 - ----------------------------------------------------------
36
+ 2013-08-20 7:57:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
37
+ 2013-08-20 7:57:14 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
38
+ 2013-08-20 7:57:15 - response return (code 02500)
39
+ 2013-08-20 7:57:16 - ----------------------------------------------------------
40
+ 2013-08-20 7:57:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
41
+ 2013-08-20 7:57:16 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
42
+ 2013-08-20 7:57:17 - response return (code 00000)
43
+ 2013-08-20 8:04:53 - ----------------------------------------------------------
44
+ 2013-08-20 8:04:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
45
+ 2013-08-20 8:04:53 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
46
+ 2013-08-20 8:04:54 - response return (code 00000)
47
+ 2013-08-20 8:04:58 - ----------------------------------------------------------
48
+ 2013-08-20 8:04:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
49
+ 2013-08-20 8:04:58 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
50
+ 2013-08-20 8:04:59 - response return (code 02500)
51
+ 2013-08-20 8:05:00 - ----------------------------------------------------------
52
+ 2013-08-20 8:05:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
53
+ 2013-08-20 8:05:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
54
+ 2013-08-20 8:05:02 - response return (code 00000)
55
+ 2013-08-20 9:38:00 - ----------------------------------------------------------
56
+ 2013-08-20 9:38:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
57
+ 2013-08-20 9:38:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
58
+ 2013-08-20 9:38:01 - response return (code 02305)
59
+ 2013-08-20 9:48:33 - ----------------------------------------------------------
60
+ 2013-08-20 9:48:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
61
+ 2013-08-20 9:48:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
62
+ 2013-08-20 9:48:35 - response return (code 00000)
63
+ 2013-08-20 10:55:55 - ----------------------------------------------------------
64
+ 2013-08-20 10:55:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
65
+ 2013-08-20 10:55:55 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
66
+ 2013-08-20 10:55:56 - response return (code 02500)
67
+ 2013-08-20 10:56:13 - ----------------------------------------------------------
68
+ 2013-08-20 10:56:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
69
+ 2013-08-20 10:56:13 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
70
+ 2013-08-20 10:56:13 - response return (code 00000)
71
+ 2013-08-20 10:56:18 - ----------------------------------------------------------
72
+ 2013-08-20 10:56:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
73
+ 2013-08-20 10:56:18 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
74
+ 2013-08-20 10:56:19 - response return (code 02500)
75
+ 2013-08-20 10:56:20 - ----------------------------------------------------------
76
+ 2013-08-20 10:56:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
77
+ 2013-08-20 10:56:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
78
+ 2013-08-20 10:56:21 - response return (code 00000)
79
+ 2013-08-20 13:11:33 - ----------------------------------------------------------
80
+ 2013-08-20 13:11:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
81
+ 2013-08-20 13:11:33 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
82
+ 2013-08-20 13:11:35 - response return (code 02500)
83
+ 2013-08-20 13:11:47 - ----------------------------------------------------------
84
+ 2013-08-20 13:11:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
85
+ 2013-08-20 13:11:47 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
86
+ 2013-08-20 13:11:49 - response return (code 00000)
87
+ 2013-08-20 13:12:03 - ----------------------------------------------------------
88
+ 2013-08-20 13:12:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
89
+ 2013-08-20 13:12:03 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
90
+ 2013-08-20 13:12:04 - response return (code 02500)
91
+ 2013-08-20 13:12:05 - ----------------------------------------------------------
92
+ 2013-08-20 13:12:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
93
+ 2013-08-20 13:12:05 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
94
+ 2013-08-20 13:12:06 - response return (code 00000)
95
+ 2013-08-20 13:47:37 - ----------------------------------------------------------
96
+ 2013-08-20 13:47:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
97
+ 2013-08-20 13:47:37 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
98
+ 2013-08-20 13:47:38 - response return (code 00000)
99
+ 2013-08-20 13:49:55 - ----------------------------------------------------------
100
+ 2013-08-20 13:49:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
101
+ 2013-08-20 13:49:55 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
102
+ 2013-08-20 13:49:56 - response return (code 00000)
103
+ 2013-08-20 13:50:00 - ----------------------------------------------------------
104
+ 2013-08-20 13:50:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
105
+ 2013-08-20 13:50:00 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
106
+ 2013-08-20 13:50:02 - response return (code 02500)
107
+ 2013-08-20 13:50:03 - ----------------------------------------------------------
108
+ 2013-08-20 13:50:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
109
+ 2013-08-20 13:50:03 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
110
+ 2013-08-20 13:50:04 - response return (code 00000)
111
+ 2013-08-20 13:59:47 - ----------------------------------------------------------
112
+ 2013-08-20 13:59:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
113
+ 2013-08-20 13:59:47 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
114
+ 2013-08-20 13:59:48 - response return (code 01201)
115
+ 2013-08-20 14:02:40 - ----------------------------------------------------------
116
+ 2013-08-20 14:02:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
117
+ 2013-08-20 14:02:40 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
118
+ 2013-08-20 14:02:42 - response return (code 01201)
119
+ 2013-08-20 14:13:48 - ----------------------------------------------------------
120
+ 2013-08-20 14:13:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
121
+ 2013-08-20 14:13:48 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
122
+ 2013-08-20 14:13:50 - response return (code 00000)
123
+ 2013-08-20 14:14:06 - ----------------------------------------------------------
124
+ 2013-08-20 14:14:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
125
+ 2013-08-20 14:14:06 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
126
+ 2013-08-20 14:14:07 - response return (code 01197)
127
+ 2013-08-20 14:15:57 - ----------------------------------------------------------
128
+ 2013-08-20 14:15:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
129
+ 2013-08-20 14:15:57 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
130
+ 2013-08-20 14:15:59 - response return (code 00000)
131
+ 2013-08-20 14:19:57 - ----------------------------------------------------------
132
+ 2013-08-20 14:19:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
133
+ 2013-08-20 14:19:57 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
134
+ 2013-08-20 14:19:58 - response return (code 02500)
135
+ 2013-08-20 14:20:00 - ----------------------------------------------------------
136
+ 2013-08-20 14:20:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
137
+ 2013-08-20 14:20:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
138
+ 2013-08-20 14:20:01 - response return (code 02501)
139
+ 2013-08-20 15:17:15 - ----------------------------------------------------------
140
+ 2013-08-20 15:17:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
141
+ 2013-08-20 15:17:15 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
142
+ 2013-08-20 15:17:16 - response return (code 01201)
143
+ 2013-08-20 15:20:54 - ----------------------------------------------------------
144
+ 2013-08-20 15:20:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
145
+ 2013-08-20 15:20:54 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
146
+ 2013-08-20 15:20:56 - response return (code 01201)
147
+ 2013-08-20 15:23:17 - ----------------------------------------------------------
148
+ 2013-08-20 15:23:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
149
+ 2013-08-20 15:23:17 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
150
+ 2013-08-20 15:23:19 - response return (code 01201)
151
+ 2013-08-20 15:23:47 - ----------------------------------------------------------
152
+ 2013-08-20 15:23:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
153
+ 2013-08-20 15:23:47 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
154
+ 2013-08-20 15:23:49 - response return (code 01201)
155
+ 2013-08-20 15:24:48 - ----------------------------------------------------------
156
+ 2013-08-20 15:24:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
157
+ 2013-08-20 15:24:48 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
158
+ 2013-08-20 15:24:50 - response return (code 01201)
159
+ 2013-08-20 15:25:20 - ----------------------------------------------------------
160
+ 2013-08-20 15:25:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
161
+ 2013-08-20 15:25:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
162
+ 2013-08-20 15:25:20 - response return (code 01201)
163
+ 2013-08-20 15:28:18 - ----------------------------------------------------------
164
+ 2013-08-20 15:28:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
165
+ 2013-08-20 15:28:18 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
166
+ 2013-08-20 15:28:19 - response return (code 01201)
167
+ 2013-08-20 15:55:38 - ----------------------------------------------------------
168
+ 2013-08-20 15:55:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
169
+ 2013-08-20 15:55:38 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
170
+ 2013-08-20 15:55:39 - response return (code 01201)
171
+ 2013-08-20 15:58:38 - ----------------------------------------------------------
172
+ 2013-08-20 15:58:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
173
+ 2013-08-20 15:58:38 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
174
+ 2013-08-20 15:58:38 - response return (code 01201)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-21.log ADDED
@@ -0,0 +1,244 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-08-21 7:02:03 - ----------------------------------------------------------
2
+ 2013-08-21 7:02:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-08-21 7:02:03 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
4
+ 2013-08-21 7:02:05 - response return (code 01201)
5
+ 2013-08-21 7:43:36 - ----------------------------------------------------------
6
+ 2013-08-21 7:43:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-08-21 7:43:36 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
8
+ 2013-08-21 7:43:38 - response return (code 01201)
9
+ 2013-08-21 7:46:10 - ----------------------------------------------------------
10
+ 2013-08-21 7:46:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-08-21 7:46:10 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
12
+ 2013-08-21 7:46:11 - response return (code 01201)
13
+ 2013-08-21 7:55:22 - ----------------------------------------------------------
14
+ 2013-08-21 7:55:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-08-21 7:55:22 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
16
+ 2013-08-21 7:55:22 - response return (code 01201)
17
+ 2013-08-21 7:57:18 - ----------------------------------------------------------
18
+ 2013-08-21 7:57:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-08-21 7:57:18 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
20
+ 2013-08-21 7:57:24 - response return (code 01201)
21
+ 2013-08-21 7:57:58 - ----------------------------------------------------------
22
+ 2013-08-21 7:57:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-08-21 7:57:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
24
+ 2013-08-21 7:57:59 - response return (code 01201)
25
+ 2013-08-21 8:00:40 - ----------------------------------------------------------
26
+ 2013-08-21 8:00:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-08-21 8:00:40 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
28
+ 2013-08-21 8:00:41 - response return (code 01201)
29
+ 2013-08-21 8:01:08 - ----------------------------------------------------------
30
+ 2013-08-21 8:01:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-08-21 8:01:08 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
32
+ 2013-08-21 8:01:09 - response return (code 01201)
33
+ 2013-08-21 8:14:50 - ----------------------------------------------------------
34
+ 2013-08-21 8:14:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
35
+ 2013-08-21 8:14:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
36
+ 2013-08-21 8:14:51 - response return (code 01201)
37
+ 2013-08-21 8:15:45 - ----------------------------------------------------------
38
+ 2013-08-21 8:15:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-08-21 8:15:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
40
+ 2013-08-21 8:15:45 - response return (code 01201)
41
+ 2013-08-21 8:45:28 - ----------------------------------------------------------
42
+ 2013-08-21 8:45:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-08-21 8:45:28 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
44
+ 2013-08-21 8:45:30 - response return (code 01201)
45
+ 2013-08-21 8:45:51 - ----------------------------------------------------------
46
+ 2013-08-21 8:45:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
47
+ 2013-08-21 8:45:51 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
48
+ 2013-08-21 8:45:53 - response return (code 01201)
49
+ 2013-08-21 8:46:30 - ----------------------------------------------------------
50
+ 2013-08-21 8:46:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
51
+ 2013-08-21 8:46:30 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
52
+ 2013-08-21 8:46:31 - response return (code 01201)
53
+ 2013-08-21 8:47:46 - ----------------------------------------------------------
54
+ 2013-08-21 8:47:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
55
+ 2013-08-21 8:47:46 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
56
+ 2013-08-21 8:47:47 - response return (code 01201)
57
+ 2013-08-21 8:54:08 - ----------------------------------------------------------
58
+ 2013-08-21 8:54:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
59
+ 2013-08-21 8:54:08 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
60
+ 2013-08-21 8:54:08 - response return (code 01201)
61
+ 2013-08-21 10:12:26 - ----------------------------------------------------------
62
+ 2013-08-21 10:12:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-08-21 10:12:26 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
64
+ 2013-08-21 10:12:27 - response return (code 02500)
65
+ 2013-08-21 10:12:59 - ----------------------------------------------------------
66
+ 2013-08-21 10:12:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
67
+ 2013-08-21 10:12:59 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
68
+ 2013-08-21 10:13:00 - response return (code 00000)
69
+ 2013-08-21 10:15:36 - ----------------------------------------------------------
70
+ 2013-08-21 10:15:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
71
+ 2013-08-21 10:15:36 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
72
+ 2013-08-21 10:15:36 - response return (code 00000)
73
+ 2013-08-21 10:16:19 - ----------------------------------------------------------
74
+ 2013-08-21 10:16:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
75
+ 2013-08-21 10:16:19 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
76
+ 2013-08-21 10:16:21 - response return (code 00000)
77
+ 2013-08-21 10:16:24 - ----------------------------------------------------------
78
+ 2013-08-21 10:16:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
79
+ 2013-08-21 10:16:24 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
80
+ 2013-08-21 10:16:27 - response return (code 02500)
81
+ 2013-08-21 10:16:28 - ----------------------------------------------------------
82
+ 2013-08-21 10:16:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
83
+ 2013-08-21 10:16:28 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
84
+ 2013-08-21 10:16:28 - response return (code 02501)
85
+ 2013-08-21 12:29:39 - ----------------------------------------------------------
86
+ 2013-08-21 12:29:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
87
+ 2013-08-21 12:29:39 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
88
+ 2013-08-21 12:29:40 - response return (code 02500)
89
+ 2013-08-21 12:29:55 - ----------------------------------------------------------
90
+ 2013-08-21 12:29:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
91
+ 2013-08-21 12:29:55 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
92
+ 2013-08-21 12:29:56 - response return (code 00000)
93
+ 2013-08-21 12:30:12 - ----------------------------------------------------------
94
+ 2013-08-21 12:30:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
95
+ 2013-08-21 12:30:12 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
96
+ 2013-08-21 12:30:13 - response return (code 00000)
97
+ 2013-08-21 12:32:29 - ----------------------------------------------------------
98
+ 2013-08-21 12:32:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
99
+ 2013-08-21 12:33:13 - ----------------------------------------------------------
100
+ 2013-08-21 12:33:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
101
+ 2013-08-21 12:33:13 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
102
+ 2013-08-21 12:33:16 - response return (code 00000)
103
+ 2013-08-21 12:34:53 - ----------------------------------------------------------
104
+ 2013-08-21 12:34:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
105
+ 2013-08-21 12:36:02 - ----------------------------------------------------------
106
+ 2013-08-21 12:36:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
107
+ 2013-08-21 12:36:02 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
108
+ 2013-08-21 12:36:03 - response return (code 00000)
109
+ 2013-08-21 12:36:07 - ----------------------------------------------------------
110
+ 2013-08-21 12:36:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
111
+ 2013-08-21 12:38:18 - ----------------------------------------------------------
112
+ 2013-08-21 12:38:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
113
+ 2013-08-21 12:38:18 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
114
+ 2013-08-21 12:38:19 - response return (code 00000)
115
+ 2013-08-21 12:38:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
116
+ 2013-08-21 12:38:20 - response return (code 00000)
117
+ 2013-08-21 12:38:43 - ----------------------------------------------------------
118
+ 2013-08-21 12:38:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
119
+ 2013-08-21 12:38:43 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
120
+ 2013-08-21 12:38:44 - response return (code 00000)
121
+ 2013-08-21 12:38:51 - ----------------------------------------------------------
122
+ 2013-08-21 12:38:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
123
+ 2013-08-21 12:40:14 - ----------------------------------------------------------
124
+ 2013-08-21 12:40:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
125
+ 2013-08-21 12:40:14 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
126
+ 2013-08-21 12:40:15 - response return (code 00000)
127
+ 2013-08-21 12:40:17 - ----------------------------------------------------------
128
+ 2013-08-21 12:40:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
129
+ 2013-08-21 12:57:26 - ----------------------------------------------------------
130
+ 2013-08-21 12:57:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
131
+ 2013-08-21 12:57:26 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
132
+ 2013-08-21 12:57:27 - response return (code 00000)
133
+ 2013-08-21 12:57:31 - ----------------------------------------------------------
134
+ 2013-08-21 12:57:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
135
+ 2013-08-21 12:57:31 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
136
+ 2013-08-21 12:57:32 - response return (code 01197)
137
+ 2013-08-21 12:58:21 - ----------------------------------------------------------
138
+ 2013-08-21 12:58:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
139
+ 2013-08-21 12:58:21 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
140
+ 2013-08-21 12:58:22 - response return (code 00000)
141
+ 2013-08-21 12:58:27 - ----------------------------------------------------------
142
+ 2013-08-21 12:58:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
143
+ 2013-08-21 12:58:27 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
144
+ 2013-08-21 12:58:29 - response return (code 02501)
145
+ 2013-08-21 13:18:11 - ----------------------------------------------------------
146
+ 2013-08-21 13:18:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
147
+ 2013-08-21 13:18:11 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
148
+ 2013-08-21 13:18:12 - response return (code 00000)
149
+ 2013-08-21 13:18:23 - ----------------------------------------------------------
150
+ 2013-08-21 13:18:23 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
151
+ 2013-08-21 13:18:23 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
152
+ 2013-08-21 13:18:25 - response return (code 02501)
153
+ 2013-08-21 13:23:41 - ----------------------------------------------------------
154
+ 2013-08-21 13:23:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
155
+ 2013-08-21 13:23:41 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
156
+ 2013-08-21 13:23:41 - response return (code 00000)
157
+ 2013-08-21 13:23:44 - ----------------------------------------------------------
158
+ 2013-08-21 13:23:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
159
+ 2013-08-21 13:23:44 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
160
+ 2013-08-21 13:23:45 - response return (code 02501)
161
+ 2013-08-21 13:24:59 - ----------------------------------------------------------
162
+ 2013-08-21 13:24:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
163
+ 2013-08-21 13:24:59 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
164
+ 2013-08-21 13:25:00 - response return (code 00000)
165
+ 2013-08-21 13:25:04 - ----------------------------------------------------------
166
+ 2013-08-21 13:25:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
167
+ 2013-08-21 13:25:04 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
168
+ 2013-08-21 13:25:05 - response return (code 02501)
169
+ 2013-08-21 13:25:07 - ----------------------------------------------------------
170
+ 2013-08-21 13:25:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
171
+ 2013-08-21 13:25:07 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
172
+ 2013-08-21 13:25:08 - response return (code 02501)
173
+ 2013-08-21 13:29:46 - ----------------------------------------------------------
174
+ 2013-08-21 13:29:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
175
+ 2013-08-21 13:29:46 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
176
+ 2013-08-21 13:29:47 - response return (code 00000)
177
+ 2013-08-21 13:29:50 - ----------------------------------------------------------
178
+ 2013-08-21 13:29:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
179
+ 2013-08-21 13:29:50 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
180
+ 2013-08-21 13:29:51 - response return (code 02501)
181
+ 2013-08-21 13:58:34 - ----------------------------------------------------------
182
+ 2013-08-21 13:58:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
183
+ 2013-08-21 13:58:34 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
184
+ 2013-08-21 13:58:35 - response return (code 00000)
185
+ 2013-08-21 13:58:40 - ----------------------------------------------------------
186
+ 2013-08-21 13:58:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
187
+ 2013-08-21 13:58:40 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
188
+ 2013-08-21 13:58:41 - response return (code 02501)
189
+ 2013-08-21 14:02:01 - ----------------------------------------------------------
190
+ 2013-08-21 14:02:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
191
+ 2013-08-21 14:02:01 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
192
+ 2013-08-21 14:02:03 - response return (code 00000)
193
+ 2013-08-21 14:02:09 - ----------------------------------------------------------
194
+ 2013-08-21 14:02:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
195
+ 2013-08-21 14:02:09 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
196
+ 2013-08-21 14:02:10 - response return (code 02501)
197
+ 2013-08-21 14:16:31 - ----------------------------------------------------------
198
+ 2013-08-21 14:16:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
199
+ 2013-08-21 14:16:31 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
200
+ 2013-08-21 14:16:32 - response return (code 00000)
201
+ 2013-08-21 14:16:39 - ----------------------------------------------------------
202
+ 2013-08-21 14:16:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
203
+ 2013-08-21 14:16:39 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
204
+ 2013-08-21 14:16:40 - response return (code 02500)
205
+ 2013-08-21 14:16:41 - ----------------------------------------------------------
206
+ 2013-08-21 14:16:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
207
+ 2013-08-21 14:16:41 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
208
+ 2013-08-21 14:16:42 - response return (code 00000)
209
+ 2013-08-21 14:28:18 - ----------------------------------------------------------
210
+ 2013-08-21 14:28:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
211
+ 2013-08-21 14:28:18 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
212
+ 2013-08-21 14:28:19 - response return (code 01201)
213
+ 2013-08-21 14:38:16 - ----------------------------------------------------------
214
+ 2013-08-21 14:38:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
215
+ 2013-08-21 14:38:16 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
216
+ 2013-08-21 14:38:18 - response return (code 01201)
217
+ 2013-08-21 14:39:11 - ----------------------------------------------------------
218
+ 2013-08-21 14:39:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
219
+ 2013-08-21 14:39:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
220
+ 2013-08-21 14:39:13 - response return (code 01201)
221
+ 2013-08-21 14:39:30 - ----------------------------------------------------------
222
+ 2013-08-21 14:39:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
223
+ 2013-08-21 14:39:30 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
224
+ 2013-08-21 14:39:30 - response return (code 01201)
225
+ 2013-08-21 14:40:10 - ----------------------------------------------------------
226
+ 2013-08-21 14:40:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
227
+ 2013-08-21 14:40:10 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
228
+ 2013-08-21 14:40:10 - response return (code 01201)
229
+ 2013-08-21 14:40:43 - ----------------------------------------------------------
230
+ 2013-08-21 14:40:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
231
+ 2013-08-21 14:40:43 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
232
+ 2013-08-21 14:40:43 - response return (code 01201)
233
+ 2013-08-21 14:41:03 - ----------------------------------------------------------
234
+ 2013-08-21 14:41:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
235
+ 2013-08-21 14:41:03 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
236
+ 2013-08-21 14:41:03 - response return (code 01201)
237
+ 2013-08-21 14:41:12 - ----------------------------------------------------------
238
+ 2013-08-21 14:41:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
239
+ 2013-08-21 14:41:12 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
240
+ 2013-08-21 14:41:12 - response return (code 01201)
241
+ 2013-08-21 14:42:24 - ----------------------------------------------------------
242
+ 2013-08-21 14:42:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
243
+ 2013-08-21 14:42:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
244
+ 2013-08-21 14:42:25 - response return (code 01201)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-22.log ADDED
@@ -0,0 +1,350 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-08-22 8:35:06 - ----------------------------------------------------------
2
+ 2013-08-22 8:35:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-08-22 8:35:06 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-08-22 8:35:07 - response return (code 02500)
5
+ 2013-08-22 8:35:44 - ----------------------------------------------------------
6
+ 2013-08-22 8:35:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-08-22 8:35:44 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
8
+ 2013-08-22 8:35:45 - response return (code 00000)
9
+ 2013-08-22 8:38:50 - ----------------------------------------------------------
10
+ 2013-08-22 8:38:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-08-22 8:38:50 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
12
+ 2013-08-22 8:38:51 - response return (code 00000)
13
+ 2013-08-22 8:38:51 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
14
+ 2013-08-22 8:38:51 - response return (code 00000)
15
+ 2013-08-22 8:50:35 - ----------------------------------------------------------
16
+ 2013-08-22 8:50:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
17
+ 2013-08-22 8:50:35 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
18
+ 2013-08-22 8:50:36 - response return (code 00000)
19
+ 2013-08-22 8:50:36 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
20
+ 2013-08-22 8:50:38 - response return (code 00000)
21
+ 2013-08-22 8:51:23 - ----------------------------------------------------------
22
+ 2013-08-22 8:51:23 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-08-22 8:51:23 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
24
+ 2013-08-22 8:51:24 - response return (code 00000)
25
+ 2013-08-22 8:51:34 - ----------------------------------------------------------
26
+ 2013-08-22 8:51:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-08-22 8:51:34 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
28
+ 2013-08-22 8:51:35 - response return (code 02500)
29
+ 2013-08-22 8:51:37 - ----------------------------------------------------------
30
+ 2013-08-22 8:51:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-08-22 8:51:37 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
32
+ 2013-08-22 8:51:39 - response return (code 00000)
33
+ 2013-08-22 9:41:07 - ----------------------------------------------------------
34
+ 2013-08-22 9:41:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
35
+ 2013-08-22 9:43:59 - ----------------------------------------------------------
36
+ 2013-08-22 9:43:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
37
+ 2013-08-22 9:43:59 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
38
+ 2013-08-22 9:44:00 - response return (code 00000)
39
+ 2013-08-22 9:44:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
40
+ 2013-08-22 9:44:01 - response return (code 00000)
41
+ 2013-08-22 9:45:18 - ----------------------------------------------------------
42
+ 2013-08-22 9:45:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-08-22 9:45:18 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
44
+ 2013-08-22 9:45:19 - response return (code 00000)
45
+ 2013-08-22 9:45:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
46
+ 2013-08-22 9:45:20 - response return (code 00000)
47
+ 2013-08-22 9:46:06 - ----------------------------------------------------------
48
+ 2013-08-22 9:46:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
49
+ 2013-08-22 9:46:06 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
50
+ 2013-08-22 9:46:07 - response return (code 02305)
51
+ 2013-08-22 9:52:54 - ----------------------------------------------------------
52
+ 2013-08-22 9:52:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
53
+ 2013-08-22 9:52:54 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
54
+ 2013-08-22 9:52:55 - response return (code 00000)
55
+ 2013-08-22 9:52:55 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
56
+ 2013-08-22 9:52:56 - response return (code 00000)
57
+ 2013-08-22 9:54:10 - ----------------------------------------------------------
58
+ 2013-08-22 9:54:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
59
+ 2013-08-22 9:54:10 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
60
+ 2013-08-22 9:54:10 - response return (code 02305)
61
+ 2013-08-22 9:57:40 - ----------------------------------------------------------
62
+ 2013-08-22 9:57:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-08-22 9:57:40 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
64
+ 2013-08-22 9:57:41 - response return (code 02305)
65
+ 2013-08-22 10:00:20 - ----------------------------------------------------------
66
+ 2013-08-22 10:00:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
67
+ 2013-08-22 10:00:20 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
68
+ 2013-08-22 10:00:21 - response return (code 02305)
69
+ 2013-08-22 10:10:08 - ----------------------------------------------------------
70
+ 2013-08-22 10:10:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
71
+ 2013-08-22 10:10:08 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
72
+ 2013-08-22 10:10:09 - response return (code 00000)
73
+ 2013-08-22 10:10:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
74
+ 2013-08-22 10:10:10 - response return (code 00000)
75
+ 2013-08-22 10:14:16 - ----------------------------------------------------------
76
+ 2013-08-22 10:14:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
77
+ 2013-08-22 10:14:16 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
78
+ 2013-08-22 10:14:17 - response return (code 02305)
79
+ 2013-08-22 10:33:39 - ----------------------------------------------------------
80
+ 2013-08-22 10:33:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
81
+ 2013-08-22 10:33:39 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
82
+ 2013-08-22 10:33:40 - response return (code 02305)
83
+ 2013-08-22 12:54:18 - ----------------------------------------------------------
84
+ 2013-08-22 12:54:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
85
+ 2013-08-22 12:54:18 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
86
+ 2013-08-22 12:54:20 - response return (code 02500)
87
+ 2013-08-22 12:55:11 - ----------------------------------------------------------
88
+ 2013-08-22 12:55:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
89
+ 2013-08-22 12:55:11 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
90
+ 2013-08-22 12:55:12 - response return (code 00000)
91
+ 2013-08-22 12:55:12 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
92
+ 2013-08-22 12:55:12 - response return (code 00000)
93
+ 2013-08-22 12:58:44 - ----------------------------------------------------------
94
+ 2013-08-22 12:58:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
95
+ 2013-08-22 12:58:44 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
96
+ 2013-08-22 12:58:44 - response return (code 00000)
97
+ 2013-08-22 12:58:44 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
98
+ 2013-08-22 12:58:45 - response return (code 00000)
99
+ 2013-08-22 12:59:35 - ----------------------------------------------------------
100
+ 2013-08-22 12:59:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
101
+ 2013-08-22 12:59:35 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
102
+ 2013-08-22 12:59:36 - response return (code 00000)
103
+ 2013-08-22 12:59:36 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
104
+ 2013-08-22 12:59:36 - response return (code 00000)
105
+ 2013-08-22 13:00:10 - ----------------------------------------------------------
106
+ 2013-08-22 13:00:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
107
+ 2013-08-22 13:07:36 - ----------------------------------------------------------
108
+ 2013-08-22 13:07:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
109
+ 2013-08-22 13:07:36 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
110
+ 2013-08-22 13:07:37 - response return (code 00000)
111
+ 2013-08-22 13:08:32 - ----------------------------------------------------------
112
+ 2013-08-22 13:08:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
113
+ 2013-08-22 13:08:32 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
114
+ 2013-08-22 13:08:33 - response return (code 00000)
115
+ 2013-08-22 13:10:41 - ----------------------------------------------------------
116
+ 2013-08-22 13:10:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
117
+ 2013-08-22 13:10:41 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
118
+ 2013-08-22 13:10:42 - response return (code 00000)
119
+ 2013-08-22 13:11:10 - ----------------------------------------------------------
120
+ 2013-08-22 13:11:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
121
+ 2013-08-22 13:11:10 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
122
+ 2013-08-22 13:11:11 - response return (code 00000)
123
+ 2013-08-22 13:20:41 - ----------------------------------------------------------
124
+ 2013-08-22 13:20:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
125
+ 2013-08-22 13:20:41 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
126
+ 2013-08-22 13:20:42 - response return (code 02500)
127
+ 2013-08-22 13:20:54 - ----------------------------------------------------------
128
+ 2013-08-22 13:20:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
129
+ 2013-08-22 13:20:54 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
130
+ 2013-08-22 13:20:57 - response return (code 00000)
131
+ 2013-08-22 13:20:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
132
+ 2013-08-22 13:20:58 - response return (code 00000)
133
+ 2013-08-22 13:24:11 - ----------------------------------------------------------
134
+ 2013-08-22 13:24:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
135
+ 2013-08-22 13:26:03 - ----------------------------------------------------------
136
+ 2013-08-22 13:26:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
137
+ 2013-08-22 13:26:03 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
138
+ 2013-08-22 13:26:04 - response return (code 00000)
139
+ 2013-08-22 13:26:09 - ----------------------------------------------------------
140
+ 2013-08-22 13:26:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
141
+ 2013-08-22 13:26:09 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
142
+ 2013-08-22 13:26:11 - response return (code 02500)
143
+ 2013-08-22 13:26:12 - ----------------------------------------------------------
144
+ 2013-08-22 13:26:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
145
+ 2013-08-22 13:26:12 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
146
+ 2013-08-22 13:26:13 - response return (code 00000)
147
+ 2013-08-22 13:48:57 - ----------------------------------------------------------
148
+ 2013-08-22 13:48:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
149
+ 2013-08-22 13:48:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
150
+ 2013-08-22 13:48:58 - response return (code 00000)
151
+ 2013-08-22 13:49:46 - ----------------------------------------------------------
152
+ 2013-08-22 13:49:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
153
+ 2013-08-22 13:49:46 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
154
+ 2013-08-22 13:49:47 - response return (code 00000)
155
+ 2013-08-22 13:52:14 - ----------------------------------------------------------
156
+ 2013-08-22 13:52:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
157
+ 2013-08-22 13:52:14 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
158
+ 2013-08-22 13:52:15 - response return (code 00000)
159
+ 2013-08-22 13:52:19 - ----------------------------------------------------------
160
+ 2013-08-22 13:52:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
161
+ 2013-08-22 13:52:19 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
162
+ 2013-08-22 13:52:20 - response return (code 02500)
163
+ 2013-08-22 13:52:21 - ----------------------------------------------------------
164
+ 2013-08-22 13:52:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
165
+ 2013-08-22 13:52:21 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
166
+ 2013-08-22 13:52:23 - response return (code 00000)
167
+ 2013-08-22 14:05:26 - ----------------------------------------------------------
168
+ 2013-08-22 14:05:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
169
+ 2013-08-22 14:05:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
170
+ 2013-08-22 14:05:27 - response return (code 01201)
171
+ 2013-08-22 14:07:03 - ----------------------------------------------------------
172
+ 2013-08-22 14:07:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
173
+ 2013-08-22 14:07:03 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
174
+ 2013-08-22 14:07:04 - response return (code 01201)
175
+ 2013-08-22 14:25:47 - ----------------------------------------------------------
176
+ 2013-08-22 14:25:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
177
+ 2013-08-22 14:25:47 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
178
+ 2013-08-22 14:25:48 - response return (code 00000)
179
+ 2013-08-22 14:25:58 - ----------------------------------------------------------
180
+ 2013-08-22 14:25:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
181
+ 2013-08-22 14:25:58 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
182
+ 2013-08-22 14:26:00 - response return (code 02501)
183
+ 2013-08-22 14:28:50 - ----------------------------------------------------------
184
+ 2013-08-22 14:28:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
185
+ 2013-08-22 14:28:50 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
186
+ 2013-08-22 14:28:51 - response return (code 00000)
187
+ 2013-08-22 14:28:55 - ----------------------------------------------------------
188
+ 2013-08-22 14:28:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
189
+ 2013-08-22 14:28:55 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
190
+ 2013-08-22 14:28:56 - response return (code 02501)
191
+ 2013-08-22 14:41:42 - ----------------------------------------------------------
192
+ 2013-08-22 14:41:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
193
+ 2013-08-22 14:41:42 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
194
+ 2013-08-22 14:41:44 - response return (code 00000)
195
+ 2013-08-22 14:41:44 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
196
+ 2013-08-22 14:41:45 - response return (code 00000)
197
+ 2013-08-22 14:42:34 - ----------------------------------------------------------
198
+ 2013-08-22 14:42:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
199
+ 2013-08-22 14:42:34 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
200
+ 2013-08-22 14:42:35 - response return (code 00000)
201
+ 2013-08-22 14:43:25 - ----------------------------------------------------------
202
+ 2013-08-22 14:43:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
203
+ 2013-08-22 14:43:25 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
204
+ 2013-08-22 14:43:26 - response return (code 00000)
205
+ 2013-08-22 14:43:50 - ----------------------------------------------------------
206
+ 2013-08-22 14:43:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
207
+ 2013-08-22 14:43:50 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
208
+ 2013-08-22 14:43:51 - response return (code 00000)
209
+ 2013-08-22 14:47:49 - ----------------------------------------------------------
210
+ 2013-08-22 14:47:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
211
+ 2013-08-22 14:47:49 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
212
+ 2013-08-22 14:47:50 - response return (code 00000)
213
+ 2013-08-22 14:47:54 - ----------------------------------------------------------
214
+ 2013-08-22 14:47:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
215
+ 2013-08-22 14:47:54 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
216
+ 2013-08-22 14:47:55 - response return (code 02319)
217
+ 2013-08-22 14:50:29 - ----------------------------------------------------------
218
+ 2013-08-22 14:50:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
219
+ 2013-08-22 14:50:29 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
220
+ 2013-08-22 14:50:31 - response return (code 00000)
221
+ 2013-08-22 14:50:59 - ----------------------------------------------------------
222
+ 2013-08-22 14:50:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
223
+ 2013-08-22 14:50:59 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
224
+ 2013-08-22 14:51:00 - response return (code 02319)
225
+ 2013-08-22 14:56:44 - ----------------------------------------------------------
226
+ 2013-08-22 14:56:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
227
+ 2013-08-22 14:56:44 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
228
+ 2013-08-22 14:56:44 - response return (code 02516)
229
+ 2013-08-22 14:58:14 - ----------------------------------------------------------
230
+ 2013-08-22 14:58:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
231
+ 2013-08-22 14:58:14 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
232
+ 2013-08-22 14:58:15 - response return (code 00000)
233
+ 2013-08-22 14:58:42 - ----------------------------------------------------------
234
+ 2013-08-22 14:58:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
235
+ 2013-08-22 14:58:42 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
236
+ 2013-08-22 14:58:43 - response return (code 00000)
237
+ 2013-08-22 14:59:06 - ----------------------------------------------------------
238
+ 2013-08-22 14:59:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
239
+ 2013-08-22 14:59:06 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
240
+ 2013-08-22 14:59:06 - response return (code 02503)
241
+ 2013-08-22 15:01:35 - ----------------------------------------------------------
242
+ 2013-08-22 15:01:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
243
+ 2013-08-22 15:01:35 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
244
+ 2013-08-22 15:01:36 - response return (code 02503)
245
+ 2013-08-22 15:05:12 - ----------------------------------------------------------
246
+ 2013-08-22 15:05:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
247
+ 2013-08-22 15:05:12 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
248
+ 2013-08-22 15:05:13 - response return (code 02503)
249
+ 2013-08-22 15:06:03 - ----------------------------------------------------------
250
+ 2013-08-22 15:06:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
251
+ 2013-08-22 15:06:03 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
252
+ 2013-08-22 15:06:03 - response return (code 02503)
253
+ 2013-08-22 15:11:08 - ----------------------------------------------------------
254
+ 2013-08-22 15:11:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
255
+ 2013-08-22 15:11:08 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
256
+ 2013-08-22 15:11:09 - response return (code 02503)
257
+ 2013-08-22 15:11:15 - ----------------------------------------------------------
258
+ 2013-08-22 15:11:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
259
+ 2013-08-22 15:11:15 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
260
+ 2013-08-22 15:11:15 - response return (code 02503)
261
+ 2013-08-22 15:11:57 - ----------------------------------------------------------
262
+ 2013-08-22 15:11:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
263
+ 2013-08-22 15:11:57 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
264
+ 2013-08-22 15:11:58 - response return (code 02503)
265
+ 2013-08-22 15:12:34 - ----------------------------------------------------------
266
+ 2013-08-22 15:12:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
267
+ 2013-08-22 15:12:34 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
268
+ 2013-08-22 15:12:35 - response return (code 02503)
269
+ 2013-08-22 15:16:58 - ----------------------------------------------------------
270
+ 2013-08-22 15:16:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
271
+ 2013-08-22 15:16:58 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
272
+ 2013-08-22 15:16:58 - response return (code 02503)
273
+ 2013-08-22 15:17:11 - ----------------------------------------------------------
274
+ 2013-08-22 15:17:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
275
+ 2013-08-22 15:17:11 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
276
+ 2013-08-22 15:17:12 - response return (code 02503)
277
+ 2013-08-22 15:18:41 - ----------------------------------------------------------
278
+ 2013-08-22 15:18:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
279
+ 2013-08-22 15:18:41 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
280
+ 2013-08-22 15:18:42 - response return (code 02303)
281
+ 2013-08-22 15:18:49 - ----------------------------------------------------------
282
+ 2013-08-22 15:18:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
283
+ 2013-08-22 15:19:26 - ----------------------------------------------------------
284
+ 2013-08-22 15:19:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
285
+ 2013-08-22 15:28:25 - ----------------------------------------------------------
286
+ 2013-08-22 15:28:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
287
+ 2013-08-22 15:28:25 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
288
+ 2013-08-22 15:28:26 - response return (code 00000)
289
+ 2013-08-22 15:28:36 - ----------------------------------------------------------
290
+ 2013-08-22 15:28:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
291
+ 2013-08-22 15:28:36 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
292
+ 2013-08-22 15:28:36 - response return (code 00000)
293
+ 2013-08-22 15:30:48 - ----------------------------------------------------------
294
+ 2013-08-22 15:30:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
295
+ 2013-08-22 15:30:48 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
296
+ 2013-08-22 15:30:49 - response return (code 02500)
297
+ 2013-08-22 15:30:50 - ----------------------------------------------------------
298
+ 2013-08-22 15:30:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
299
+ 2013-08-22 15:30:50 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
300
+ 2013-08-22 15:30:51 - response return (code 02500)
301
+ 2013-08-22 15:38:52 - ----------------------------------------------------------
302
+ 2013-08-22 15:38:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
303
+ 2013-08-22 15:57:51 - ----------------------------------------------------------
304
+ 2013-08-22 15:57:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
305
+ 2013-08-22 15:57:51 - webServiceRequest(updateWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
306
+ 2013-08-22 15:57:52 - response return (code 00000)
307
+ 2013-08-22 16:01:47 - ----------------------------------------------------------
308
+ 2013-08-22 16:01:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
309
+ 2013-08-22 16:01:47 - webServiceRequest(updateWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
310
+ 2013-08-22 16:01:48 - response return (code 00000)
311
+ 2013-08-22 16:06:10 - ----------------------------------------------------------
312
+ 2013-08-22 16:06:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
313
+ 2013-08-22 16:06:10 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
314
+ 2013-08-22 16:06:10 - response return (code 02500)
315
+ 2013-08-22 16:06:11 - ----------------------------------------------------------
316
+ 2013-08-22 16:06:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
317
+ 2013-08-22 16:06:11 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
318
+ 2013-08-22 16:06:12 - response return (code 02500)
319
+ 2013-08-22 16:09:02 - ----------------------------------------------------------
320
+ 2013-08-22 16:09:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
321
+ 2013-08-22 16:09:02 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
322
+ 2013-08-22 16:09:02 - response return (code 02500)
323
+ 2013-08-22 16:09:13 - ----------------------------------------------------------
324
+ 2013-08-22 16:09:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
325
+ 2013-08-22 16:09:13 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
326
+ 2013-08-22 16:09:13 - response return (code 00000)
327
+ 2013-08-22 16:09:31 - ----------------------------------------------------------
328
+ 2013-08-22 16:09:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
329
+ 2013-08-22 16:09:31 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
330
+ 2013-08-22 16:09:32 - response return (code 02500)
331
+ 2013-08-22 16:09:33 - ----------------------------------------------------------
332
+ 2013-08-22 16:09:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
333
+ 2013-08-22 16:09:33 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
334
+ 2013-08-22 16:09:33 - response return (code 02500)
335
+ 2013-08-22 16:20:10 - ----------------------------------------------------------
336
+ 2013-08-22 16:20:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
337
+ 2013-08-22 16:20:10 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
338
+ 2013-08-22 16:20:11 - response return (code 02500)
339
+ 2013-08-22 16:20:27 - ----------------------------------------------------------
340
+ 2013-08-22 16:20:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
341
+ 2013-08-22 16:20:27 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
342
+ 2013-08-22 16:20:28 - response return (code 00000)
343
+ 2013-08-22 16:20:46 - ----------------------------------------------------------
344
+ 2013-08-22 16:20:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
345
+ 2013-08-22 16:20:46 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
346
+ 2013-08-22 16:20:47 - response return (code 02500)
347
+ 2013-08-22 16:20:48 - ----------------------------------------------------------
348
+ 2013-08-22 16:20:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
349
+ 2013-08-22 16:20:48 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
350
+ 2013-08-22 16:20:49 - response return (code 02500)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-23.log ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-08-23 8:16:18 - ----------------------------------------------------------
2
+ 2013-08-23 8:16:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-08-23 8:16:18 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-08-23 8:16:20 - response return (code 02500)
5
+ 2013-08-23 8:16:34 - ----------------------------------------------------------
6
+ 2013-08-23 8:16:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-08-23 8:16:34 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
8
+ 2013-08-23 8:16:35 - response return (code 00000)
9
+ 2013-08-23 8:16:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
10
+ 2013-08-23 8:16:35 - response return (code 00000)
11
+ 2013-08-23 9:34:04 - ----------------------------------------------------------
12
+ 2013-08-23 9:34:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
13
+ 2013-08-23 9:34:04 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
14
+ 2013-08-23 9:34:06 - response return (code 02500)
15
+ 2013-08-23 9:34:26 - ----------------------------------------------------------
16
+ 2013-08-23 9:34:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
17
+ 2013-08-23 9:34:26 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
18
+ 2013-08-23 9:34:27 - response return (code 00000)
19
+ 2013-08-23 9:34:27 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
20
+ 2013-08-23 9:34:28 - response return (code 00000)
21
+ 2013-08-23 9:35:35 - ----------------------------------------------------------
22
+ 2013-08-23 9:35:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-08-23 9:35:35 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
24
+ 2013-08-23 9:35:36 - response return (code 00000)
25
+ 2013-08-23 9:35:41 - ----------------------------------------------------------
26
+ 2013-08-23 9:35:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-08-23 9:35:41 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
28
+ 2013-08-23 9:35:42 - response return (code 00000)
29
+ 2013-08-23 9:59:19 - ----------------------------------------------------------
30
+ 2013-08-23 9:59:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-08-23 9:59:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
32
+ 2013-08-23 9:59:20 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-26.log ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-08-26 9:47:35 - ----------------------------------------------------------
2
+ 2013-08-26 9:47:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-08-26 9:47:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
4
+ 2013-08-26 9:47:37 - response return (code 00000)
5
+ 2013-08-26 10:02:40 - ----------------------------------------------------------
6
+ 2013-08-26 10:02:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-08-26 10:02:40 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
8
+ 2013-08-26 10:02:43 - response return (code 02500)
9
+ 2013-08-26 10:03:07 - ----------------------------------------------------------
10
+ 2013-08-26 10:03:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-08-26 10:03:07 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
12
+ 2013-08-26 10:03:08 - response return (code 00000)
13
+ 2013-08-26 10:06:33 - ----------------------------------------------------------
14
+ 2013-08-26 10:06:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-08-26 10:06:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
16
+ 2013-08-26 10:06:34 - response return (code 13000)
17
+ 2013-08-26 12:46:33 - ----------------------------------------------------------
18
+ 2013-08-26 12:46:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-08-26 12:46:33 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
20
+ 2013-08-26 12:46:34 - response return (code 02500)
21
+ 2013-08-26 12:47:45 - ----------------------------------------------------------
22
+ 2013-08-26 12:47:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-08-26 12:47:45 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
24
+ 2013-08-26 12:47:46 - response return (code 00000)
25
+ 2013-08-26 12:47:59 - ----------------------------------------------------------
26
+ 2013-08-26 12:47:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-08-26 12:47:59 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
28
+ 2013-08-26 12:48:00 - response return (code 02500)
29
+ 2013-08-26 12:48:02 - ----------------------------------------------------------
30
+ 2013-08-26 12:48:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-08-26 12:48:02 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
32
+ 2013-08-26 12:48:03 - response return (code 00000)
33
+ 2013-08-26 12:49:30 - ----------------------------------------------------------
34
+ 2013-08-26 12:49:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
35
+ 2013-08-26 12:49:30 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
36
+ 2013-08-26 12:49:31 - response return (code 00000)
37
+ 2013-08-26 12:49:34 - ----------------------------------------------------------
38
+ 2013-08-26 12:49:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-08-26 12:49:34 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
40
+ 2013-08-26 12:49:35 - response return (code 00000)
41
+ 2013-08-26 12:51:00 - ----------------------------------------------------------
42
+ 2013-08-26 12:51:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-08-26 12:51:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
44
+ 2013-08-26 12:51:01 - response return (code 00000)
45
+ 2013-08-26 13:08:07 - ----------------------------------------------------------
46
+ 2013-08-26 13:08:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
47
+ 2013-08-26 13:08:07 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
48
+ 2013-08-26 13:08:09 - response return (code 00000)
49
+ 2013-08-26 14:01:30 - ----------------------------------------------------------
50
+ 2013-08-26 14:01:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
51
+ 2013-08-26 14:01:30 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
52
+ 2013-08-26 14:01:31 - response return (code 00000)
53
+ 2013-08-26 15:16:56 - ----------------------------------------------------------
54
+ 2013-08-26 15:16:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
55
+ 2013-08-26 15:16:56 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
56
+ 2013-08-26 15:16:57 - response return (code 02500)
57
+ 2013-08-26 15:17:17 - ----------------------------------------------------------
58
+ 2013-08-26 15:17:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
59
+ 2013-08-26 15:17:17 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
60
+ 2013-08-26 15:17:18 - response return (code 00000)
61
+ 2013-08-26 15:17:26 - ----------------------------------------------------------
62
+ 2013-08-26 15:17:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-08-26 15:17:26 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
64
+ 2013-08-26 15:17:27 - response return (code 00000)
65
+ 2013-08-26 15:19:36 - ----------------------------------------------------------
66
+ 2013-08-26 15:19:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
67
+ 2013-08-26 15:19:36 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
68
+ 2013-08-26 15:19:37 - response return (code 00000)
69
+ 2013-08-26 15:19:37 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
70
+ 2013-08-26 15:19:38 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-27.log ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-08-27 12:21:14 - ----------------------------------------------------------
2
+ 2013-08-27 12:21:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-08-27 12:21:14 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-08-27 12:21:16 - response return (code 02500)
5
+ 2013-08-27 12:21:39 - ----------------------------------------------------------
6
+ 2013-08-27 12:21:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-08-27 12:21:39 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
8
+ 2013-08-27 12:21:39 - Exception : Warning: SoapClient::__doRequest() [<a href='soapclient.--dorequest'>soapclient.--dorequest</a>]: SSL: Connection reset by peer in /var/www/trunk/Payline/Monext/Payline/PaylinePHPKit/lib/paylineSDK.php on line 1214
9
+ 2013-08-27 12:23:11 - ----------------------------------------------------------
10
+ 2013-08-27 12:23:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-08-27 12:23:11 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
12
+ 2013-08-27 12:23:11 - Exception : Warning: SoapClient::__doRequest() [<a href='soapclient.--dorequest'>soapclient.--dorequest</a>]: SSL: Connection reset by peer in /var/www/trunk/Payline/Monext/Payline/PaylinePHPKit/lib/paylineSDK.php on line 1235
13
+ 2013-08-27 12:33:53 - ----------------------------------------------------------
14
+ 2013-08-27 12:33:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-08-27 12:33:53 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
16
+ 2013-08-27 12:33:54 - response return (code 02500)
17
+ 2013-08-27 12:34:33 - ----------------------------------------------------------
18
+ 2013-08-27 12:34:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-08-27 12:34:33 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
20
+ 2013-08-27 12:34:34 - response return (code 00000)
21
+ 2013-08-27 12:34:45 - ----------------------------------------------------------
22
+ 2013-08-27 12:34:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-08-27 12:34:45 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
24
+ 2013-08-27 12:34:46 - response return (code 00000)
25
+ 2013-08-27 13:26:59 - ----------------------------------------------------------
26
+ 2013-08-27 13:26:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-08-27 13:26:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
28
+ 2013-08-27 13:27:00 - response return (code 00000)
29
+ 2013-08-27 13:40:46 - ----------------------------------------------------------
30
+ 2013-08-27 13:40:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-08-27 13:40:46 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
32
+ 2013-08-27 13:40:47 - response return (code 02500)
33
+ 2013-08-27 13:41:10 - ----------------------------------------------------------
34
+ 2013-08-27 13:41:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
35
+ 2013-08-27 13:41:10 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
36
+ 2013-08-27 13:41:11 - response return (code 00000)
37
+ 2013-08-27 13:41:18 - ----------------------------------------------------------
38
+ 2013-08-27 13:41:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-08-27 13:41:18 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
40
+ 2013-08-27 13:41:18 - response return (code 00000)
41
+ 2013-08-27 14:01:24 - ----------------------------------------------------------
42
+ 2013-08-27 14:01:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-08-27 14:01:24 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
44
+ 2013-08-27 14:01:25 - response return (code 00000)
45
+ 2013-08-27 14:01:30 - ----------------------------------------------------------
46
+ 2013-08-27 14:01:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
47
+ 2013-08-27 14:01:30 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
48
+ 2013-08-27 14:01:31 - response return (code 00000)
49
+ 2013-08-27 16:12:24 - ----------------------------------------------------------
50
+ 2013-08-27 16:12:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
51
+ 2013-08-27 16:12:24 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
52
+ 2013-08-27 16:12:25 - response return (code 02500)
53
+ 2013-08-27 16:12:55 - ----------------------------------------------------------
54
+ 2013-08-27 16:12:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
55
+ 2013-08-27 16:12:55 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
56
+ 2013-08-27 16:12:55 - response return (code 00000)
57
+ 2013-08-27 16:13:00 - ----------------------------------------------------------
58
+ 2013-08-27 16:13:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
59
+ 2013-08-27 16:13:00 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
60
+ 2013-08-27 16:13:01 - response return (code 00000)
61
+ 2013-08-27 16:14:13 - ----------------------------------------------------------
62
+ 2013-08-27 16:14:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-08-27 16:14:13 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
64
+ 2013-08-27 16:14:15 - response return (code 00000)
65
+ 2013-08-27 16:15:52 - ----------------------------------------------------------
66
+ 2013-08-27 16:15:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
67
+ 2013-08-27 16:15:52 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
68
+ 2013-08-27 16:15:53 - response return (code 00000)
69
+ 2013-08-27 16:17:33 - ----------------------------------------------------------
70
+ 2013-08-27 16:17:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
71
+ 2013-08-27 16:17:33 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
72
+ 2013-08-27 16:17:33 - response return (code 00000)
73
+ 2013-08-27 16:19:59 - ----------------------------------------------------------
74
+ 2013-08-27 16:19:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
75
+ 2013-08-27 16:19:59 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
76
+ 2013-08-27 16:20:00 - response return (code 00000)
77
+ 2013-08-27 16:27:14 - ----------------------------------------------------------
78
+ 2013-08-27 16:27:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
79
+ 2013-08-27 16:27:14 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
80
+ 2013-08-27 16:27:16 - response return (code 00000)
81
+ 2013-08-27 16:28:11 - ----------------------------------------------------------
82
+ 2013-08-27 16:28:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
83
+ 2013-08-27 16:28:11 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
84
+ 2013-08-27 16:28:12 - response return (code 00000)
85
+ 2013-08-27 16:32:03 - ----------------------------------------------------------
86
+ 2013-08-27 16:32:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
87
+ 2013-08-27 16:32:03 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
88
+ 2013-08-27 16:32:04 - response return (code 00000)
89
+ 2013-08-27 16:33:49 - ----------------------------------------------------------
90
+ 2013-08-27 16:33:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
91
+ 2013-08-27 16:33:49 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
92
+ 2013-08-27 16:33:50 - response return (code 00000)
93
+ 2013-08-27 16:36:48 - ----------------------------------------------------------
94
+ 2013-08-27 16:36:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
95
+ 2013-08-27 16:36:48 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
96
+ 2013-08-27 16:36:48 - response return (code 00000)
97
+ 2013-08-27 16:41:10 - ----------------------------------------------------------
98
+ 2013-08-27 16:41:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
99
+ 2013-08-27 16:41:10 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
100
+ 2013-08-27 16:41:10 - response return (code 00000)
101
+ 2013-08-27 16:46:58 - ----------------------------------------------------------
102
+ 2013-08-27 16:46:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
103
+ 2013-08-27 16:46:58 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
104
+ 2013-08-27 16:46:58 - response return (code 00000)
105
+ 2013-08-27 16:55:58 - ----------------------------------------------------------
106
+ 2013-08-27 16:55:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
107
+ 2013-08-27 16:55:58 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
108
+ 2013-08-27 16:55:58 - response return (code 00000)
109
+ 2013-08-27 17:25:35 - ----------------------------------------------------------
110
+ 2013-08-27 17:25:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
111
+ 2013-08-27 17:25:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
112
+ 2013-08-27 17:25:37 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-28.log ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-08-28 8:53:25 - ----------------------------------------------------------
2
+ 2013-08-28 8:53:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-08-28 8:53:25 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-08-28 8:53:28 - response return (code 02500)
5
+ 2013-08-28 8:56:07 - ----------------------------------------------------------
6
+ 2013-08-28 8:56:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-08-28 8:56:07 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
8
+ 2013-08-28 8:56:08 - response return (code 00000)
9
+ 2013-08-28 8:56:19 - ----------------------------------------------------------
10
+ 2013-08-28 8:56:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-08-28 8:56:19 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
12
+ 2013-08-28 8:56:19 - response return (code 00000)
13
+ 2013-08-28 9:01:07 - ----------------------------------------------------------
14
+ 2013-08-28 9:01:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-08-28 9:01:07 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
16
+ 2013-08-28 9:01:08 - response return (code 00000)
17
+ 2013-08-28 9:21:00 - ----------------------------------------------------------
18
+ 2013-08-28 9:21:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-08-28 9:21:00 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
20
+ 2013-08-28 9:21:02 - response return (code 00000)
21
+ 2013-08-28 9:21:02 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
22
+ 2013-08-28 9:21:02 - response return (code 00000)
23
+ 2013-08-28 10:00:00 - ----------------------------------------------------------
24
+ 2013-08-28 10:00:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
25
+ 2013-08-28 10:00:00 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
26
+ 2013-08-28 10:00:00 - response return (code 00000)
27
+ 2013-08-28 10:00:25 - ----------------------------------------------------------
28
+ 2013-08-28 10:00:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
29
+ 2013-08-28 10:00:25 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
30
+ 2013-08-28 10:00:25 - response return (code 00000)
31
+ 2013-08-28 10:00:26 - ----------------------------------------------------------
32
+ 2013-08-28 10:00:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
33
+ 2013-08-28 10:00:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
34
+ 2013-08-28 10:00:27 - response return (code 00000)
35
+ 2013-08-28 13:30:51 - ----------------------------------------------------------
36
+ 2013-08-28 13:30:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
37
+ 2013-08-28 13:30:51 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
38
+ 2013-08-28 13:30:53 - response return (code 13000)
39
+ 2013-08-28 15:32:44 - ----------------------------------------------------------
40
+ 2013-08-28 15:32:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
41
+ 2013-08-28 15:32:44 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
42
+ 2013-08-28 15:32:44 - response return (code 02500)
43
+ 2013-08-28 15:34:40 - ----------------------------------------------------------
44
+ 2013-08-28 15:34:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
45
+ 2013-08-28 15:34:40 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
46
+ 2013-08-28 15:34:41 - response return (code 00000)
47
+ 2013-08-28 15:34:46 - ----------------------------------------------------------
48
+ 2013-08-28 15:34:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
49
+ 2013-08-28 15:34:46 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
50
+ 2013-08-28 15:34:47 - response return (code 00000)
51
+ 2013-08-28 15:34:48 - ----------------------------------------------------------
52
+ 2013-08-28 15:34:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
53
+ 2013-08-28 15:34:48 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
54
+ 2013-08-28 15:34:49 - response return (code 00000)
55
+ 2013-08-28 15:58:58 - ----------------------------------------------------------
56
+ 2013-08-28 15:58:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
57
+ 2013-08-28 15:58:58 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
58
+ 2013-08-28 15:58:58 - response return (code 00000)
59
+ 2013-08-28 15:59:03 - ----------------------------------------------------------
60
+ 2013-08-28 15:59:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
61
+ 2013-08-28 15:59:03 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
62
+ 2013-08-28 15:59:04 - response return (code 00000)
63
+ 2013-08-28 15:59:05 - ----------------------------------------------------------
64
+ 2013-08-28 15:59:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
65
+ 2013-08-28 15:59:05 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
66
+ 2013-08-28 15:59:06 - response return (code 00000)
67
+ 2013-08-28 16:11:01 - ----------------------------------------------------------
68
+ 2013-08-28 16:11:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
69
+ 2013-08-28 16:11:01 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
70
+ 2013-08-28 16:11:02 - response return (code 00000)
71
+ 2013-08-28 16:11:23 - ----------------------------------------------------------
72
+ 2013-08-28 16:11:23 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
73
+ 2013-08-28 16:11:23 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
74
+ 2013-08-28 16:11:23 - response return (code 00000)
75
+ 2013-08-28 16:11:24 - ----------------------------------------------------------
76
+ 2013-08-28 16:11:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
77
+ 2013-08-28 16:11:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
78
+ 2013-08-28 16:11:25 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-29.log ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-08-29 9:05:17 - ----------------------------------------------------------
2
+ 2013-08-29 9:05:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-08-29 9:05:17 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
4
+ 2013-08-29 9:05:19 - response return (code 00000)
5
+ 2013-08-29 13:17:22 - ----------------------------------------------------------
6
+ 2013-08-29 13:17:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-08-29 13:17:22 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
8
+ 2013-08-29 13:17:23 - response return (code 02500)
9
+ 2013-08-29 13:17:47 - ----------------------------------------------------------
10
+ 2013-08-29 13:17:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-08-29 13:17:47 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
12
+ 2013-08-29 13:17:48 - response return (code 00000)
13
+ 2013-08-29 13:18:24 - ----------------------------------------------------------
14
+ 2013-08-29 13:18:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-08-29 13:18:24 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
16
+ 2013-08-29 13:18:24 - response return (code 00000)
17
+ 2013-08-29 13:18:26 - ----------------------------------------------------------
18
+ 2013-08-29 13:18:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-08-29 13:18:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
20
+ 2013-08-29 13:18:27 - response return (code 00000)
21
+ 2013-08-29 13:39:08 - ----------------------------------------------------------
22
+ 2013-08-29 13:39:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-08-29 13:39:08 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
24
+ 2013-08-29 13:39:08 - response return (code 00000)
25
+ 2013-08-29 13:39:16 - ----------------------------------------------------------
26
+ 2013-08-29 13:39:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-08-29 13:39:16 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
28
+ 2013-08-29 13:39:17 - response return (code 00000)
29
+ 2013-08-29 13:43:52 - ----------------------------------------------------------
30
+ 2013-08-29 13:43:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-08-29 13:43:52 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
32
+ 2013-08-29 13:43:53 - response return (code 00000)
33
+ 2013-08-29 13:50:42 - ----------------------------------------------------------
34
+ 2013-08-29 13:50:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
35
+ 2013-08-29 13:50:42 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
36
+ 2013-08-29 13:50:43 - response return (code 00000)
37
+ 2013-08-29 13:52:30 - ----------------------------------------------------------
38
+ 2013-08-29 13:52:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-08-29 13:52:30 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
40
+ 2013-08-29 13:52:31 - response return (code 00000)
41
+ 2013-08-29 14:22:01 - ----------------------------------------------------------
42
+ 2013-08-29 14:22:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-08-29 14:22:01 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
44
+ 2013-08-29 14:22:02 - response return (code 00000)
45
+ 2013-08-29 14:22:35 - ----------------------------------------------------------
46
+ 2013-08-29 14:22:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
47
+ 2013-08-29 14:22:35 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
48
+ 2013-08-29 14:22:36 - response return (code 00000)
49
+ 2013-08-29 14:26:17 - ----------------------------------------------------------
50
+ 2013-08-29 14:26:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
51
+ 2013-08-29 14:26:17 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
52
+ 2013-08-29 14:26:18 - response return (code 00000)
53
+ 2013-08-29 14:26:27 - ----------------------------------------------------------
54
+ 2013-08-29 14:26:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
55
+ 2013-08-29 14:26:27 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
56
+ 2013-08-29 14:26:27 - response return (code 00000)
57
+ 2013-08-29 14:27:56 - ----------------------------------------------------------
58
+ 2013-08-29 14:27:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
59
+ 2013-08-29 14:27:56 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
60
+ 2013-08-29 14:27:57 - response return (code 00000)
61
+ 2013-08-29 15:00:43 - ----------------------------------------------------------
62
+ 2013-08-29 15:00:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-08-29 15:00:43 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
64
+ 2013-08-29 15:00:43 - response return (code 00000)
65
+ 2013-08-29 15:00:51 - ----------------------------------------------------------
66
+ 2013-08-29 15:00:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
67
+ 2013-08-29 15:00:51 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
68
+ 2013-08-29 15:00:52 - response return (code 00000)
69
+ 2013-08-29 15:00:53 - ----------------------------------------------------------
70
+ 2013-08-29 15:00:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
71
+ 2013-08-29 15:00:53 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
72
+ 2013-08-29 15:00:54 - response return (code 00000)
73
+ 2013-08-29 15:09:09 - ----------------------------------------------------------
74
+ 2013-08-29 15:09:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
75
+ 2013-08-29 15:09:09 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
76
+ 2013-08-29 15:09:09 - response return (code 00000)
77
+ 2013-08-29 15:09:22 - ----------------------------------------------------------
78
+ 2013-08-29 15:09:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
79
+ 2013-08-29 15:09:22 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
80
+ 2013-08-29 15:09:23 - response return (code 00000)
81
+ 2013-08-29 15:09:24 - ----------------------------------------------------------
82
+ 2013-08-29 15:09:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
83
+ 2013-08-29 15:09:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
84
+ 2013-08-29 15:09:25 - response return (code 00000)
85
+ 2013-08-29 15:09:40 - ----------------------------------------------------------
86
+ 2013-08-29 15:09:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
87
+ 2013-08-29 15:09:40 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
88
+ 2013-08-29 15:09:41 - response return (code 00000)
89
+ 2013-08-29 15:09:41 - ----------------------------------------------------------
90
+ 2013-08-29 15:09:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
91
+ 2013-08-29 15:09:41 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
92
+ 2013-08-29 15:09:41 - response return (code 00000)
93
+ 2013-08-29 15:23:34 - ----------------------------------------------------------
94
+ 2013-08-29 15:23:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
95
+ 2013-08-29 15:23:34 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
96
+ 2013-08-29 15:23:36 - response return (code 00000)
97
+ 2013-08-29 15:23:44 - ----------------------------------------------------------
98
+ 2013-08-29 15:23:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
99
+ 2013-08-29 15:23:44 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
100
+ 2013-08-29 15:23:45 - response return (code 00000)
101
+ 2013-08-29 15:23:46 - ----------------------------------------------------------
102
+ 2013-08-29 15:23:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
103
+ 2013-08-29 15:23:46 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
104
+ 2013-08-29 15:23:47 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-08-30.log ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-08-30 7:34:33 - ----------------------------------------------------------
2
+ 2013-08-30 7:34:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-08-30 7:34:33 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-08-30 7:34:34 - response return (code 02500)
5
+ 2013-08-30 7:35:09 - ----------------------------------------------------------
6
+ 2013-08-30 7:35:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-08-30 7:35:09 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
8
+ 2013-08-30 7:35:10 - response return (code 00000)
9
+ 2013-08-30 7:36:05 - ----------------------------------------------------------
10
+ 2013-08-30 7:36:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-08-30 7:36:05 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
12
+ 2013-08-30 7:36:06 - response return (code 00000)
13
+ 2013-08-30 7:36:07 - ----------------------------------------------------------
14
+ 2013-08-30 7:36:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-08-30 7:36:07 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
16
+ 2013-08-30 7:36:09 - response return (code 00000)
17
+ 2013-08-30 8:22:22 - ----------------------------------------------------------
18
+ 2013-08-30 8:22:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-08-30 8:22:22 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
20
+ 2013-08-30 8:22:23 - response return (code 00000)
21
+ 2013-08-30 8:22:32 - ----------------------------------------------------------
22
+ 2013-08-30 8:22:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-08-30 8:22:32 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
24
+ 2013-08-30 8:22:33 - response return (code 00000)
25
+ 2013-08-30 8:22:34 - ----------------------------------------------------------
26
+ 2013-08-30 8:22:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-08-30 8:22:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
28
+ 2013-08-30 8:22:35 - response return (code 00000)
29
+ 2013-08-30 9:31:01 - ----------------------------------------------------------
30
+ 2013-08-30 9:31:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-08-30 9:31:01 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
32
+ 2013-08-30 9:31:02 - response return (code 00000)
33
+ 2013-08-30 9:31:18 - ----------------------------------------------------------
34
+ 2013-08-30 9:31:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
35
+ 2013-08-30 9:31:18 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
36
+ 2013-08-30 9:31:19 - response return (code 00000)
37
+ 2013-08-30 9:31:20 - ----------------------------------------------------------
38
+ 2013-08-30 9:31:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-08-30 9:31:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
40
+ 2013-08-30 9:31:21 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-02.log ADDED
@@ -0,0 +1,192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-02 12:57:16 - ----------------------------------------------------------
2
+ 2013-09-02 12:57:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-09-02 12:57:16 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-09-02 12:57:18 - response return (code 02500)
5
+ 2013-09-02 12:58:07 - ----------------------------------------------------------
6
+ 2013-09-02 12:58:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-09-02 12:58:07 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
8
+ 2013-09-02 12:58:09 - response return (code 00000)
9
+ 2013-09-02 12:58:18 - ----------------------------------------------------------
10
+ 2013-09-02 12:58:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-09-02 12:58:18 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
12
+ 2013-09-02 12:58:19 - response return (code 00000)
13
+ 2013-09-02 12:58:20 - ----------------------------------------------------------
14
+ 2013-09-02 12:58:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-09-02 12:58:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
16
+ 2013-09-02 12:58:21 - response return (code 00000)
17
+ 2013-09-02 12:59:03 - ----------------------------------------------------------
18
+ 2013-09-02 12:59:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-09-02 12:59:03 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
20
+ 2013-09-02 12:59:03 - response return (code 00000)
21
+ 2013-09-02 12:59:03 - ----------------------------------------------------------
22
+ 2013-09-02 12:59:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-09-02 12:59:04 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
24
+ 2013-09-02 12:59:04 - response return (code 00000)
25
+ 2013-09-02 13:05:02 - ----------------------------------------------------------
26
+ 2013-09-02 13:05:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-09-02 13:05:02 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
28
+ 2013-09-02 13:05:03 - response return (code 00000)
29
+ 2013-09-02 13:05:12 - ----------------------------------------------------------
30
+ 2013-09-02 13:05:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-09-02 13:05:12 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
32
+ 2013-09-02 13:05:13 - response return (code 00000)
33
+ 2013-09-02 13:05:14 - ----------------------------------------------------------
34
+ 2013-09-02 13:05:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
35
+ 2013-09-02 13:05:14 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
36
+ 2013-09-02 13:05:15 - response return (code 00000)
37
+ 2013-09-02 13:06:06 - ----------------------------------------------------------
38
+ 2013-09-02 13:06:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-09-02 13:06:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
40
+ 2013-09-02 13:06:07 - response return (code 00000)
41
+ 2013-09-02 13:12:18 - ----------------------------------------------------------
42
+ 2013-09-02 13:12:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-09-02 13:12:18 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
44
+ 2013-09-02 13:12:20 - response return (code 00000)
45
+ 2013-09-02 13:12:26 - ----------------------------------------------------------
46
+ 2013-09-02 13:12:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
47
+ 2013-09-02 13:14:43 - ----------------------------------------------------------
48
+ 2013-09-02 13:14:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
49
+ 2013-09-02 13:14:43 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
50
+ 2013-09-02 13:14:44 - response return (code 00000)
51
+ 2013-09-02 13:15:06 - ----------------------------------------------------------
52
+ 2013-09-02 13:15:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
53
+ 2013-09-02 13:18:17 - ----------------------------------------------------------
54
+ 2013-09-02 13:18:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
55
+ 2013-09-02 13:18:17 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
56
+ 2013-09-02 13:18:18 - response return (code 00000)
57
+ 2013-09-02 13:18:19 - ----------------------------------------------------------
58
+ 2013-09-02 13:18:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
59
+ 2013-09-02 13:18:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
60
+ 2013-09-02 13:18:19 - response return (code 00000)
61
+ 2013-09-02 13:22:50 - ----------------------------------------------------------
62
+ 2013-09-02 13:22:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-09-02 13:22:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
64
+ 2013-09-02 13:22:50 - response return (code 00000)
65
+ 2013-09-02 13:33:49 - ----------------------------------------------------------
66
+ 2013-09-02 13:33:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
67
+ 2013-09-02 13:33:49 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
68
+ 2013-09-02 13:33:53 - response return (code 00000)
69
+ 2013-09-02 13:34:01 - ----------------------------------------------------------
70
+ 2013-09-02 13:34:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
71
+ 2013-09-02 13:34:01 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
72
+ 2013-09-02 13:34:02 - response return (code 00000)
73
+ 2013-09-02 13:34:03 - ----------------------------------------------------------
74
+ 2013-09-02 13:34:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
75
+ 2013-09-02 13:34:03 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
76
+ 2013-09-02 13:34:04 - response return (code 00000)
77
+ 2013-09-02 13:34:45 - ----------------------------------------------------------
78
+ 2013-09-02 13:34:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
79
+ 2013-09-02 13:34:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
80
+ 2013-09-02 13:34:46 - response return (code 00000)
81
+ 2013-09-02 13:46:21 - ----------------------------------------------------------
82
+ 2013-09-02 13:46:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
83
+ 2013-09-02 13:46:21 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
84
+ 2013-09-02 13:46:21 - response return (code 00000)
85
+ 2013-09-02 13:46:27 - ----------------------------------------------------------
86
+ 2013-09-02 13:46:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
87
+ 2013-09-02 13:46:27 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
88
+ 2013-09-02 13:46:27 - response return (code 00000)
89
+ 2013-09-02 13:46:28 - ----------------------------------------------------------
90
+ 2013-09-02 13:46:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
91
+ 2013-09-02 13:46:28 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
92
+ 2013-09-02 13:46:29 - response return (code 00000)
93
+ 2013-09-02 13:47:10 - ----------------------------------------------------------
94
+ 2013-09-02 13:47:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
95
+ 2013-09-02 13:47:10 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
96
+ 2013-09-02 13:47:12 - response return (code 00000)
97
+ 2013-09-02 13:49:46 - ----------------------------------------------------------
98
+ 2013-09-02 13:49:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
99
+ 2013-09-02 13:49:46 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
100
+ 2013-09-02 13:49:47 - response return (code 00000)
101
+ 2013-09-02 13:51:58 - ----------------------------------------------------------
102
+ 2013-09-02 13:51:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
103
+ 2013-09-02 13:51:58 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
104
+ 2013-09-02 13:51:59 - response return (code 00000)
105
+ 2013-09-02 13:52:04 - ----------------------------------------------------------
106
+ 2013-09-02 13:52:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
107
+ 2013-09-02 13:52:04 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
108
+ 2013-09-02 13:52:05 - response return (code 00000)
109
+ 2013-09-02 13:52:06 - ----------------------------------------------------------
110
+ 2013-09-02 13:52:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
111
+ 2013-09-02 13:52:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
112
+ 2013-09-02 13:52:07 - response return (code 00000)
113
+ 2013-09-02 13:55:29 - ----------------------------------------------------------
114
+ 2013-09-02 13:55:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
115
+ 2013-09-02 13:55:29 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
116
+ 2013-09-02 13:55:31 - response return (code 00000)
117
+ 2013-09-02 13:59:24 - ----------------------------------------------------------
118
+ 2013-09-02 13:59:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
119
+ 2013-09-02 13:59:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
120
+ 2013-09-02 13:59:26 - response return (code 00000)
121
+ 2013-09-02 13:59:26 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
122
+ 2013-09-02 13:59:26 - response return (code 02110)
123
+ 2013-09-02 14:03:38 - ----------------------------------------------------------
124
+ 2013-09-02 14:03:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
125
+ 2013-09-02 14:03:38 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
126
+ 2013-09-02 14:03:40 - response return (code 00000)
127
+ 2013-09-02 14:03:40 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
128
+ 2013-09-02 14:03:40 - response return (code 02110)
129
+ 2013-09-02 14:06:55 - ----------------------------------------------------------
130
+ 2013-09-02 14:06:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
131
+ 2013-09-02 14:06:55 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
132
+ 2013-09-02 14:06:56 - response return (code 00000)
133
+ 2013-09-02 14:07:03 - ----------------------------------------------------------
134
+ 2013-09-02 14:07:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
135
+ 2013-09-02 14:07:03 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
136
+ 2013-09-02 14:07:04 - response return (code 00000)
137
+ 2013-09-02 14:07:05 - ----------------------------------------------------------
138
+ 2013-09-02 14:07:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
139
+ 2013-09-02 14:07:05 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
140
+ 2013-09-02 14:07:06 - response return (code 00000)
141
+ 2013-09-02 14:09:55 - ----------------------------------------------------------
142
+ 2013-09-02 14:09:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
143
+ 2013-09-02 14:09:55 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
144
+ 2013-09-02 14:09:56 - response return (code 00000)
145
+ 2013-09-02 14:09:56 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
146
+ 2013-09-02 14:09:57 - response return (code 02110)
147
+ 2013-09-02 14:20:12 - ----------------------------------------------------------
148
+ 2013-09-02 14:20:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
149
+ 2013-09-02 14:20:12 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
150
+ 2013-09-02 14:20:13 - response return (code 00000)
151
+ 2013-09-02 14:20:18 - ----------------------------------------------------------
152
+ 2013-09-02 14:20:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
153
+ 2013-09-02 14:20:18 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
154
+ 2013-09-02 14:20:19 - response return (code 00000)
155
+ 2013-09-02 14:20:20 - ----------------------------------------------------------
156
+ 2013-09-02 14:20:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
157
+ 2013-09-02 14:20:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
158
+ 2013-09-02 14:20:21 - response return (code 00000)
159
+ 2013-09-02 14:24:05 - ----------------------------------------------------------
160
+ 2013-09-02 14:24:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
161
+ 2013-09-02 14:24:05 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
162
+ 2013-09-02 14:24:07 - response return (code 00000)
163
+ 2013-09-02 14:24:12 - ----------------------------------------------------------
164
+ 2013-09-02 14:24:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
165
+ 2013-09-02 14:24:12 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
166
+ 2013-09-02 14:24:13 - response return (code 00000)
167
+ 2013-09-02 14:24:14 - ----------------------------------------------------------
168
+ 2013-09-02 14:24:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
169
+ 2013-09-02 14:24:14 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
170
+ 2013-09-02 14:24:15 - response return (code 00000)
171
+ 2013-09-02 14:27:03 - ----------------------------------------------------------
172
+ 2013-09-02 14:27:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
173
+ 2013-09-02 14:27:03 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
174
+ 2013-09-02 14:27:04 - response return (code 00000)
175
+ 2013-09-02 14:27:04 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
176
+ 2013-09-02 14:27:05 - response return (code 00000)
177
+ 2013-09-02 14:52:44 - ----------------------------------------------------------
178
+ 2013-09-02 14:52:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
179
+ 2013-09-02 14:52:44 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
180
+ 2013-09-02 14:52:45 - response return (code 00000)
181
+ 2013-09-02 14:52:49 - ----------------------------------------------------------
182
+ 2013-09-02 14:52:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
183
+ 2013-09-02 14:52:49 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
184
+ 2013-09-02 14:52:50 - response return (code 00000)
185
+ 2013-09-02 14:55:16 - ----------------------------------------------------------
186
+ 2013-09-02 14:55:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
187
+ 2013-09-02 14:55:16 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
188
+ 2013-09-02 14:55:17 - response return (code 00000)
189
+ 2013-09-02 14:55:22 - ----------------------------------------------------------
190
+ 2013-09-02 14:55:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
191
+ 2013-09-02 14:55:22 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
192
+ 2013-09-02 14:55:24 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-03.log ADDED
@@ -0,0 +1,346 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-03 8:33:04 - ----------------------------------------------------------
2
+ 2013-09-03 8:33:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-09-03 8:33:04 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-09-03 8:33:04 - response return (code 02500)
5
+ 2013-09-03 8:50:05 - ----------------------------------------------------------
6
+ 2013-09-03 8:50:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-09-03 8:50:05 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
8
+ 2013-09-03 8:50:06 - response return (code 00000)
9
+ 2013-09-03 8:50:16 - ----------------------------------------------------------
10
+ 2013-09-03 8:50:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-09-03 8:50:16 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
12
+ 2013-09-03 8:50:17 - response return (code 00000)
13
+ 2013-09-03 8:50:19 - ----------------------------------------------------------
14
+ 2013-09-03 8:50:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-09-03 8:50:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
16
+ 2013-09-03 8:50:19 - response return (code 00000)
17
+ 2013-09-03 9:16:57 - ----------------------------------------------------------
18
+ 2013-09-03 9:16:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-09-03 9:16:57 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
20
+ 2013-09-03 9:16:58 - response return (code 00000)
21
+ 2013-09-03 9:17:03 - ----------------------------------------------------------
22
+ 2013-09-03 9:17:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-09-03 9:17:03 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
24
+ 2013-09-03 9:17:04 - response return (code 00000)
25
+ 2013-09-03 9:17:05 - ----------------------------------------------------------
26
+ 2013-09-03 9:17:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-09-03 9:17:05 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
28
+ 2013-09-03 9:17:05 - response return (code 00000)
29
+ 2013-09-03 9:18:59 - ----------------------------------------------------------
30
+ 2013-09-03 9:18:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-09-03 9:18:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
32
+ 2013-09-03 9:19:00 - response return (code 00000)
33
+ 2013-09-03 9:19:00 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
34
+ 2013-09-03 9:19:00 - response return (code 00000)
35
+ 2013-09-03 9:45:57 - ----------------------------------------------------------
36
+ 2013-09-03 9:45:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
37
+ 2013-09-03 9:45:57 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
38
+ 2013-09-03 9:45:58 - response return (code 00000)
39
+ 2013-09-03 9:48:06 - ----------------------------------------------------------
40
+ 2013-09-03 9:48:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
41
+ 2013-09-03 9:48:06 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
42
+ 2013-09-03 9:48:08 - response return (code 00000)
43
+ 2013-09-03 9:48:09 - ----------------------------------------------------------
44
+ 2013-09-03 9:48:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
45
+ 2013-09-03 9:48:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
46
+ 2013-09-03 9:48:10 - response return (code 00000)
47
+ 2013-09-03 9:57:18 - ----------------------------------------------------------
48
+ 2013-09-03 9:57:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
49
+ 2013-09-03 9:57:18 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
50
+ 2013-09-03 9:57:19 - response return (code 00000)
51
+ 2013-09-03 9:57:24 - ----------------------------------------------------------
52
+ 2013-09-03 9:57:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
53
+ 2013-09-03 9:57:24 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
54
+ 2013-09-03 9:57:25 - response return (code 00000)
55
+ 2013-09-03 9:57:26 - ----------------------------------------------------------
56
+ 2013-09-03 9:57:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
57
+ 2013-09-03 9:57:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
58
+ 2013-09-03 9:57:27 - response return (code 00000)
59
+ 2013-09-03 10:02:45 - ----------------------------------------------------------
60
+ 2013-09-03 10:02:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
61
+ 2013-09-03 10:02:45 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
62
+ 2013-09-03 10:02:46 - response return (code 00000)
63
+ 2013-09-03 10:02:52 - ----------------------------------------------------------
64
+ 2013-09-03 10:02:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
65
+ 2013-09-03 10:02:52 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
66
+ 2013-09-03 10:02:53 - response return (code 00000)
67
+ 2013-09-03 10:02:54 - ----------------------------------------------------------
68
+ 2013-09-03 10:02:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
69
+ 2013-09-03 10:02:54 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
70
+ 2013-09-03 10:02:55 - response return (code 00000)
71
+ 2013-09-03 10:10:27 - ----------------------------------------------------------
72
+ 2013-09-03 10:10:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
73
+ 2013-09-03 10:10:27 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
74
+ 2013-09-03 10:10:28 - response return (code 00000)
75
+ 2013-09-03 10:10:28 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
76
+ 2013-09-03 10:10:29 - response return (code 00000)
77
+ 2013-09-03 12:14:13 - ----------------------------------------------------------
78
+ 2013-09-03 12:14:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
79
+ 2013-09-03 12:14:13 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
80
+ 2013-09-03 12:14:16 - response return (code 02500)
81
+ 2013-09-03 12:14:44 - ----------------------------------------------------------
82
+ 2013-09-03 12:14:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
83
+ 2013-09-03 12:14:44 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
84
+ 2013-09-03 12:14:45 - response return (code 00000)
85
+ 2013-09-03 12:15:14 - ----------------------------------------------------------
86
+ 2013-09-03 12:15:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
87
+ 2013-09-03 12:15:14 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
88
+ 2013-09-03 12:15:15 - response return (code 00000)
89
+ 2013-09-03 12:15:16 - ----------------------------------------------------------
90
+ 2013-09-03 12:15:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
91
+ 2013-09-03 12:15:16 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
92
+ 2013-09-03 12:15:17 - response return (code 00000)
93
+ 2013-09-03 12:15:17 - ----------------------------------------------------------
94
+ 2013-09-03 12:15:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
95
+ 2013-09-03 12:15:17 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
96
+ 2013-09-03 12:15:18 - response return (code 00000)
97
+ 2013-09-03 12:15:18 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
98
+ 2013-09-03 12:15:19 - response return (code 00000)
99
+ 2013-09-03 12:33:24 - ----------------------------------------------------------
100
+ 2013-09-03 12:33:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
101
+ 2013-09-03 12:33:24 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
102
+ 2013-09-03 12:33:25 - response return (code 00000)
103
+ 2013-09-03 12:33:32 - ----------------------------------------------------------
104
+ 2013-09-03 12:33:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
105
+ 2013-09-03 12:33:32 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
106
+ 2013-09-03 12:33:32 - response return (code 00000)
107
+ 2013-09-03 12:42:01 - ----------------------------------------------------------
108
+ 2013-09-03 12:42:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
109
+ 2013-09-03 12:42:01 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
110
+ 2013-09-03 12:42:02 - response return (code 00000)
111
+ 2013-09-03 12:42:02 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
112
+ 2013-09-03 12:42:03 - response return (code 00000)
113
+ 2013-09-03 12:45:57 - ----------------------------------------------------------
114
+ 2013-09-03 12:45:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
115
+ 2013-09-03 12:45:57 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
116
+ 2013-09-03 12:45:57 - response return (code 00000)
117
+ 2013-09-03 12:45:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
118
+ 2013-09-03 12:45:58 - response return (code 00000)
119
+ 2013-09-03 12:48:21 - ----------------------------------------------------------
120
+ 2013-09-03 12:48:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
121
+ 2013-09-03 12:48:21 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
122
+ 2013-09-03 12:48:22 - response return (code 00000)
123
+ 2013-09-03 12:48:22 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
124
+ 2013-09-03 12:48:23 - response return (code 00000)
125
+ 2013-09-03 12:50:39 - ----------------------------------------------------------
126
+ 2013-09-03 12:50:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
127
+ 2013-09-03 12:50:39 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
128
+ 2013-09-03 12:50:39 - response return (code 00000)
129
+ 2013-09-03 12:50:39 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
130
+ 2013-09-03 12:50:40 - response return (code 00000)
131
+ 2013-09-03 12:52:13 - ----------------------------------------------------------
132
+ 2013-09-03 12:52:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
133
+ 2013-09-03 12:52:13 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
134
+ 2013-09-03 12:52:14 - response return (code 00000)
135
+ 2013-09-03 12:52:14 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
136
+ 2013-09-03 12:52:14 - response return (code 00000)
137
+ 2013-09-03 12:54:14 - ----------------------------------------------------------
138
+ 2013-09-03 12:54:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
139
+ 2013-09-03 12:54:14 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
140
+ 2013-09-03 12:54:15 - response return (code 00000)
141
+ 2013-09-03 12:54:15 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
142
+ 2013-09-03 12:54:16 - response return (code 00000)
143
+ 2013-09-03 12:54:17 - ----------------------------------------------------------
144
+ 2013-09-03 12:54:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
145
+ 2013-09-03 12:54:17 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
146
+ 2013-09-03 12:54:18 - response return (code 00000)
147
+ 2013-09-03 12:55:51 - ----------------------------------------------------------
148
+ 2013-09-03 12:55:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
149
+ 2013-09-03 12:55:51 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
150
+ 2013-09-03 12:55:51 - response return (code 00000)
151
+ 2013-09-03 12:55:51 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
152
+ 2013-09-03 12:55:52 - response return (code 00000)
153
+ 2013-09-03 12:58:24 - ----------------------------------------------------------
154
+ 2013-09-03 12:58:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
155
+ 2013-09-03 12:58:24 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
156
+ 2013-09-03 12:58:26 - response return (code 00000)
157
+ 2013-09-03 12:58:35 - ----------------------------------------------------------
158
+ 2013-09-03 12:58:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
159
+ 2013-09-03 12:58:35 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
160
+ 2013-09-03 12:58:37 - response return (code 00000)
161
+ 2013-09-03 12:59:20 - ----------------------------------------------------------
162
+ 2013-09-03 12:59:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
163
+ 2013-09-03 12:59:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
164
+ 2013-09-03 12:59:21 - response return (code 00000)
165
+ 2013-09-03 13:01:48 - ----------------------------------------------------------
166
+ 2013-09-03 13:01:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
167
+ 2013-09-03 13:01:48 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
168
+ 2013-09-03 13:01:49 - response return (code 00000)
169
+ 2013-09-03 13:01:54 - ----------------------------------------------------------
170
+ 2013-09-03 13:01:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
171
+ 2013-09-03 13:01:54 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
172
+ 2013-09-03 13:01:55 - response return (code 00000)
173
+ 2013-09-03 13:04:24 - ----------------------------------------------------------
174
+ 2013-09-03 13:04:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
175
+ 2013-09-03 13:04:24 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
176
+ 2013-09-03 13:04:24 - response return (code 00000)
177
+ 2013-09-03 13:04:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
178
+ 2013-09-03 13:04:25 - response return (code 00000)
179
+ 2013-09-03 13:04:26 - ----------------------------------------------------------
180
+ 2013-09-03 13:04:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
181
+ 2013-09-03 13:04:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
182
+ 2013-09-03 13:04:27 - response return (code 00000)
183
+ 2013-09-03 13:06:21 - ----------------------------------------------------------
184
+ 2013-09-03 13:06:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
185
+ 2013-09-03 13:06:21 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
186
+ 2013-09-03 13:06:22 - response return (code 00000)
187
+ 2013-09-03 13:06:22 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
188
+ 2013-09-03 13:06:22 - response return (code 00000)
189
+ 2013-09-03 13:14:01 - ----------------------------------------------------------
190
+ 2013-09-03 13:14:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
191
+ 2013-09-03 13:14:01 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
192
+ 2013-09-03 13:14:01 - response return (code 00000)
193
+ 2013-09-03 13:14:01 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
194
+ 2013-09-03 13:14:02 - response return (code 00000)
195
+ 2013-09-03 13:14:03 - ----------------------------------------------------------
196
+ 2013-09-03 13:14:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
197
+ 2013-09-03 13:14:03 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
198
+ 2013-09-03 13:14:04 - response return (code 00000)
199
+ 2013-09-03 13:26:43 - ----------------------------------------------------------
200
+ 2013-09-03 13:26:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
201
+ 2013-09-03 13:26:43 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
202
+ 2013-09-03 13:26:44 - response return (code 00000)
203
+ 2013-09-03 13:26:54 - ----------------------------------------------------------
204
+ 2013-09-03 13:26:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
205
+ 2013-09-03 13:26:54 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
206
+ 2013-09-03 13:26:55 - response return (code 02500)
207
+ 2013-09-03 13:26:56 - ----------------------------------------------------------
208
+ 2013-09-03 13:26:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
209
+ 2013-09-03 13:26:56 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
210
+ 2013-09-03 13:26:57 - response return (code 00000)
211
+ 2013-09-03 14:04:20 - ----------------------------------------------------------
212
+ 2013-09-03 14:04:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
213
+ 2013-09-03 14:04:20 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
214
+ 2013-09-03 14:04:21 - response return (code 00000)
215
+ 2013-09-03 14:04:21 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
216
+ 2013-09-03 14:04:22 - response return (code 00000)
217
+ 2013-09-03 14:04:24 - ----------------------------------------------------------
218
+ 2013-09-03 14:04:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
219
+ 2013-09-03 14:04:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
220
+ 2013-09-03 14:04:25 - response return (code 00000)
221
+ 2013-09-03 14:05:58 - ----------------------------------------------------------
222
+ 2013-09-03 14:05:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
223
+ 2013-09-03 14:05:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
224
+ 2013-09-03 14:05:59 - response return (code 00000)
225
+ 2013-09-03 14:05:59 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
226
+ 2013-09-03 14:05:59 - response return (code 00000)
227
+ 2013-09-03 14:07:57 - ----------------------------------------------------------
228
+ 2013-09-03 14:07:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
229
+ 2013-09-03 14:07:57 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
230
+ 2013-09-03 14:07:58 - response return (code 00000)
231
+ 2013-09-03 14:07:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
232
+ 2013-09-03 14:07:59 - response return (code 00000)
233
+ 2013-09-03 14:08:00 - ----------------------------------------------------------
234
+ 2013-09-03 14:08:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
235
+ 2013-09-03 14:08:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
236
+ 2013-09-03 14:08:01 - response return (code 00000)
237
+ 2013-09-03 14:10:28 - ----------------------------------------------------------
238
+ 2013-09-03 14:10:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
239
+ 2013-09-03 14:10:28 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
240
+ 2013-09-03 14:10:29 - response return (code 00000)
241
+ 2013-09-03 14:12:09 - ----------------------------------------------------------
242
+ 2013-09-03 14:12:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
243
+ 2013-09-03 14:12:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
244
+ 2013-09-03 14:12:10 - response return (code 00000)
245
+ 2013-09-03 14:12:10 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
246
+ 2013-09-03 14:12:11 - response return (code 00000)
247
+ 2013-09-03 14:19:14 - ----------------------------------------------------------
248
+ 2013-09-03 14:19:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
249
+ 2013-09-03 14:19:14 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
250
+ 2013-09-03 14:19:15 - response return (code 00000)
251
+ 2013-09-03 14:19:15 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
252
+ 2013-09-03 14:19:17 - response return (code 00000)
253
+ 2013-09-03 14:19:18 - ----------------------------------------------------------
254
+ 2013-09-03 14:19:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
255
+ 2013-09-03 14:19:18 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
256
+ 2013-09-03 14:19:19 - response return (code 00000)
257
+ 2013-09-03 14:22:13 - ----------------------------------------------------------
258
+ 2013-09-03 14:22:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
259
+ 2013-09-03 14:22:13 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
260
+ 2013-09-03 14:22:15 - response return (code 00000)
261
+ 2013-09-03 14:22:15 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
262
+ 2013-09-03 14:22:16 - response return (code 00000)
263
+ 2013-09-03 14:25:34 - ----------------------------------------------------------
264
+ 2013-09-03 14:25:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
265
+ 2013-09-03 14:25:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
266
+ 2013-09-03 14:25:36 - response return (code 00000)
267
+ 2013-09-03 14:25:36 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
268
+ 2013-09-03 14:25:37 - response return (code 00000)
269
+ 2013-09-03 14:27:02 - ----------------------------------------------------------
270
+ 2013-09-03 14:27:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
271
+ 2013-09-03 14:27:02 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
272
+ 2013-09-03 14:27:04 - response return (code 00000)
273
+ 2013-09-03 14:27:04 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
274
+ 2013-09-03 14:27:05 - response return (code 00000)
275
+ 2013-09-03 14:27:06 - ----------------------------------------------------------
276
+ 2013-09-03 14:27:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
277
+ 2013-09-03 14:27:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
278
+ 2013-09-03 14:27:07 - response return (code 00000)
279
+ 2013-09-03 14:27:41 - ----------------------------------------------------------
280
+ 2013-09-03 14:27:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
281
+ 2013-09-03 14:27:41 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
282
+ 2013-09-03 14:27:42 - response return (code 00000)
283
+ 2013-09-03 14:27:42 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
284
+ 2013-09-03 14:27:45 - response return (code 00000)
285
+ 2013-09-03 14:35:15 - ----------------------------------------------------------
286
+ 2013-09-03 14:35:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
287
+ 2013-09-03 14:35:15 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
288
+ 2013-09-03 14:35:17 - response return (code 00000)
289
+ 2013-09-03 14:35:17 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
290
+ 2013-09-03 14:35:18 - response return (code 00000)
291
+ 2013-09-03 14:41:43 - ----------------------------------------------------------
292
+ 2013-09-03 14:41:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
293
+ 2013-09-03 14:41:43 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
294
+ 2013-09-03 14:41:44 - response return (code 00000)
295
+ 2013-09-03 14:41:44 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
296
+ 2013-09-03 14:41:45 - response return (code 00000)
297
+ 2013-09-03 14:58:10 - ----------------------------------------------------------
298
+ 2013-09-03 14:58:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
299
+ 2013-09-03 14:58:10 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
300
+ 2013-09-03 14:58:11 - response return (code 00000)
301
+ 2013-09-03 14:58:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
302
+ 2013-09-03 14:58:12 - response return (code 00000)
303
+ 2013-09-03 14:58:13 - ----------------------------------------------------------
304
+ 2013-09-03 14:58:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
305
+ 2013-09-03 14:58:13 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
306
+ 2013-09-03 14:58:14 - response return (code 00000)
307
+ 2013-09-03 15:00:24 - ----------------------------------------------------------
308
+ 2013-09-03 15:00:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
309
+ 2013-09-03 15:00:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
310
+ 2013-09-03 15:00:25 - response return (code 00000)
311
+ 2013-09-03 15:00:25 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
312
+ 2013-09-03 15:00:26 - response return (code 00000)
313
+ 2013-09-03 15:04:09 - ----------------------------------------------------------
314
+ 2013-09-03 15:04:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
315
+ 2013-09-03 15:04:09 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
316
+ 2013-09-03 15:04:09 - response return (code 00000)
317
+ 2013-09-03 15:04:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
318
+ 2013-09-03 15:04:10 - response return (code 00000)
319
+ 2013-09-03 15:04:12 - ----------------------------------------------------------
320
+ 2013-09-03 15:04:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
321
+ 2013-09-03 15:04:12 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
322
+ 2013-09-03 15:04:12 - response return (code 00000)
323
+ 2013-09-03 15:10:49 - ----------------------------------------------------------
324
+ 2013-09-03 15:10:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
325
+ 2013-09-03 15:10:49 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
326
+ 2013-09-03 15:10:50 - response return (code 00000)
327
+ 2013-09-03 15:10:50 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
328
+ 2013-09-03 15:10:51 - response return (code 00000)
329
+ 2013-09-03 15:34:49 - ----------------------------------------------------------
330
+ 2013-09-03 15:34:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
331
+ 2013-09-03 15:34:49 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
332
+ 2013-09-03 15:34:50 - response return (code 00000)
333
+ 2013-09-03 15:34:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
334
+ 2013-09-03 15:34:51 - response return (code 00000)
335
+ 2013-09-03 15:34:52 - ----------------------------------------------------------
336
+ 2013-09-03 15:34:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
337
+ 2013-09-03 15:34:52 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
338
+ 2013-09-03 15:34:52 - response return (code 00000)
339
+ 2013-09-03 15:56:12 - ----------------------------------------------------------
340
+ 2013-09-03 15:56:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
341
+ 2013-09-03 15:56:12 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
342
+ 2013-09-03 15:56:14 - response return (code 00000)
343
+ 2013-09-03 15:56:20 - ----------------------------------------------------------
344
+ 2013-09-03 15:56:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
345
+ 2013-09-03 15:56:20 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
346
+ 2013-09-03 15:56:21 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-04.log ADDED
@@ -0,0 +1,286 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-04 8:14:05 - ----------------------------------------------------------
2
+ 2013-09-04 8:14:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-09-04 8:14:05 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-09-04 8:14:06 - response return (code 02500)
5
+ 2013-09-04 8:18:15 - ----------------------------------------------------------
6
+ 2013-09-04 8:18:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-09-04 8:18:15 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
8
+ 2013-09-04 8:18:16 - response return (code 00000)
9
+ 2013-09-04 8:18:16 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
10
+ 2013-09-04 8:18:17 - response return (code 00000)
11
+ 2013-09-04 8:18:18 - ----------------------------------------------------------
12
+ 2013-09-04 8:18:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
13
+ 2013-09-04 8:18:18 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
14
+ 2013-09-04 8:18:19 - response return (code 00000)
15
+ 2013-09-04 8:23:01 - ----------------------------------------------------------
16
+ 2013-09-04 8:23:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
17
+ 2013-09-04 8:23:01 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
18
+ 2013-09-04 8:23:02 - response return (code 00000)
19
+ 2013-09-04 8:23:02 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
20
+ 2013-09-04 8:23:02 - response return (code 00000)
21
+ 2013-09-04 8:23:04 - ----------------------------------------------------------
22
+ 2013-09-04 8:23:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-09-04 8:23:04 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
24
+ 2013-09-04 8:23:04 - response return (code 00000)
25
+ 2013-09-04 8:33:16 - ----------------------------------------------------------
26
+ 2013-09-04 8:33:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-09-04 8:33:16 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
28
+ 2013-09-04 8:33:16 - response return (code 02500)
29
+ 2013-09-04 8:36:50 - ----------------------------------------------------------
30
+ 2013-09-04 8:36:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-09-04 8:36:50 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
32
+ 2013-09-04 8:36:51 - response return (code 02500)
33
+ 2013-09-04 8:41:33 - ----------------------------------------------------------
34
+ 2013-09-04 8:41:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
35
+ 2013-09-04 8:41:33 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
36
+ 2013-09-04 8:41:34 - response return (code 00000)
37
+ 2013-09-04 8:41:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
38
+ 2013-09-04 8:41:34 - response return (code 00000)
39
+ 2013-09-04 8:41:36 - ----------------------------------------------------------
40
+ 2013-09-04 8:41:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
41
+ 2013-09-04 8:41:36 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
42
+ 2013-09-04 8:41:36 - response return (code 00000)
43
+ 2013-09-04 8:54:47 - ----------------------------------------------------------
44
+ 2013-09-04 8:54:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
45
+ 2013-09-04 8:54:47 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
46
+ 2013-09-04 8:54:49 - response return (code 00000)
47
+ 2013-09-04 8:54:49 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
48
+ 2013-09-04 8:54:50 - response return (code 00000)
49
+ 2013-09-04 8:54:51 - ----------------------------------------------------------
50
+ 2013-09-04 8:54:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
51
+ 2013-09-04 8:54:51 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
52
+ 2013-09-04 8:54:52 - response return (code 00000)
53
+ 2013-09-04 8:59:50 - ----------------------------------------------------------
54
+ 2013-09-04 8:59:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
55
+ 2013-09-04 8:59:50 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
56
+ 2013-09-04 8:59:51 - response return (code 00000)
57
+ 2013-09-04 8:59:51 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
58
+ 2013-09-04 8:59:52 - response return (code 00000)
59
+ 2013-09-04 8:59:53 - ----------------------------------------------------------
60
+ 2013-09-04 8:59:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
61
+ 2013-09-04 8:59:53 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
62
+ 2013-09-04 8:59:54 - response return (code 00000)
63
+ 2013-09-04 9:28:58 - ----------------------------------------------------------
64
+ 2013-09-04 9:28:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
65
+ 2013-09-04 9:28:58 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
66
+ 2013-09-04 9:28:59 - response return (code 02500)
67
+ 2013-09-04 9:32:27 - ----------------------------------------------------------
68
+ 2013-09-04 9:32:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
69
+ 2013-09-04 9:32:27 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
70
+ 2013-09-04 9:32:27 - response return (code 02500)
71
+ 2013-09-04 9:44:06 - ----------------------------------------------------------
72
+ 2013-09-04 9:44:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
73
+ 2013-09-04 9:44:06 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
74
+ 2013-09-04 9:44:07 - response return (code 00000)
75
+ 2013-09-04 9:44:07 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
76
+ 2013-09-04 9:44:08 - response return (code 00000)
77
+ 2013-09-04 9:44:10 - ----------------------------------------------------------
78
+ 2013-09-04 9:44:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
79
+ 2013-09-04 9:44:10 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
80
+ 2013-09-04 9:44:10 - response return (code 00000)
81
+ 2013-09-04 9:47:19 - ----------------------------------------------------------
82
+ 2013-09-04 9:47:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
83
+ 2013-09-04 9:47:19 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
84
+ 2013-09-04 9:47:20 - response return (code 00000)
85
+ 2013-09-04 9:47:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
86
+ 2013-09-04 9:47:21 - response return (code 00000)
87
+ 2013-09-04 9:47:22 - ----------------------------------------------------------
88
+ 2013-09-04 9:47:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
89
+ 2013-09-04 9:47:22 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
90
+ 2013-09-04 9:47:22 - response return (code 00000)
91
+ 2013-09-04 9:48:21 - ----------------------------------------------------------
92
+ 2013-09-04 9:48:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
93
+ 2013-09-04 9:48:21 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
94
+ 2013-09-04 9:48:23 - response return (code 00000)
95
+ 2013-09-04 9:48:23 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
96
+ 2013-09-04 9:48:23 - response return (code 00000)
97
+ 2013-09-04 9:48:25 - ----------------------------------------------------------
98
+ 2013-09-04 9:48:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
99
+ 2013-09-04 9:48:25 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
100
+ 2013-09-04 9:48:25 - response return (code 00000)
101
+ 2013-09-04 10:06:57 - ----------------------------------------------------------
102
+ 2013-09-04 10:06:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
103
+ 2013-09-04 10:06:57 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
104
+ 2013-09-04 10:06:58 - response return (code 00000)
105
+ 2013-09-04 10:06:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
106
+ 2013-09-04 10:06:59 - response return (code 00000)
107
+ 2013-09-04 10:07:00 - ----------------------------------------------------------
108
+ 2013-09-04 10:07:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
109
+ 2013-09-04 10:07:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
110
+ 2013-09-04 10:07:00 - response return (code 00000)
111
+ 2013-09-04 10:08:53 - ----------------------------------------------------------
112
+ 2013-09-04 10:08:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
113
+ 2013-09-04 10:08:53 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
114
+ 2013-09-04 10:08:54 - response return (code 00000)
115
+ 2013-09-04 10:08:54 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
116
+ 2013-09-04 10:08:54 - response return (code 00000)
117
+ 2013-09-04 10:08:55 - ----------------------------------------------------------
118
+ 2013-09-04 10:08:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
119
+ 2013-09-04 10:08:55 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
120
+ 2013-09-04 10:08:56 - response return (code 00000)
121
+ 2013-09-04 13:16:59 - ----------------------------------------------------------
122
+ 2013-09-04 13:16:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
123
+ 2013-09-04 13:16:59 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
124
+ 2013-09-04 13:17:00 - response return (code 02500)
125
+ 2013-09-04 13:17:28 - ----------------------------------------------------------
126
+ 2013-09-04 13:17:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
127
+ 2013-09-04 13:17:28 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
128
+ 2013-09-04 13:17:29 - response return (code 00000)
129
+ 2013-09-04 13:17:29 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
130
+ 2013-09-04 13:17:30 - response return (code 00000)
131
+ 2013-09-04 13:17:31 - ----------------------------------------------------------
132
+ 2013-09-04 13:17:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
133
+ 2013-09-04 13:17:31 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
134
+ 2013-09-04 13:17:32 - response return (code 00000)
135
+ 2013-09-04 13:24:46 - ----------------------------------------------------------
136
+ 2013-09-04 13:24:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
137
+ 2013-09-04 13:24:46 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
138
+ 2013-09-04 13:24:47 - response return (code 00000)
139
+ 2013-09-04 13:24:47 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
140
+ 2013-09-04 13:24:49 - response return (code 00000)
141
+ 2013-09-04 13:24:50 - ----------------------------------------------------------
142
+ 2013-09-04 13:24:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
143
+ 2013-09-04 13:24:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
144
+ 2013-09-04 13:24:52 - response return (code 00000)
145
+ 2013-09-04 13:30:05 - ----------------------------------------------------------
146
+ 2013-09-04 13:30:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
147
+ 2013-09-04 13:30:05 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
148
+ 2013-09-04 13:30:20 - Exception : Could not connect to host
149
+ 2013-09-04 13:41:21 - ----------------------------------------------------------
150
+ 2013-09-04 13:41:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
151
+ 2013-09-04 13:41:21 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
152
+ 2013-09-04 13:41:22 - response return (code 00000)
153
+ 2013-09-04 13:41:22 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
154
+ 2013-09-04 13:41:23 - response return (code 00000)
155
+ 2013-09-04 13:41:24 - ----------------------------------------------------------
156
+ 2013-09-04 13:41:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
157
+ 2013-09-04 13:41:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
158
+ 2013-09-04 13:41:25 - response return (code 00000)
159
+ 2013-09-04 13:43:17 - ----------------------------------------------------------
160
+ 2013-09-04 13:43:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
161
+ 2013-09-04 13:43:17 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
162
+ 2013-09-04 13:43:18 - response return (code 00000)
163
+ 2013-09-04 13:43:18 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
164
+ 2013-09-04 13:43:18 - response return (code 02305)
165
+ 2013-09-04 13:47:38 - ----------------------------------------------------------
166
+ 2013-09-04 13:47:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
167
+ 2013-09-04 13:47:38 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
168
+ 2013-09-04 13:47:38 - response return (code 00000)
169
+ 2013-09-04 13:47:38 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
170
+ 2013-09-04 13:47:39 - response return (code 02305)
171
+ 2013-09-04 13:48:45 - ----------------------------------------------------------
172
+ 2013-09-04 13:48:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
173
+ 2013-09-04 13:48:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
174
+ 2013-09-04 13:48:46 - response return (code 00000)
175
+ 2013-09-04 13:48:46 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
176
+ 2013-09-04 13:48:46 - response return (code 02305)
177
+ 2013-09-04 13:51:08 - ----------------------------------------------------------
178
+ 2013-09-04 13:51:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
179
+ 2013-09-04 13:51:08 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
180
+ 2013-09-04 13:51:11 - response return (code 00000)
181
+ 2013-09-04 13:51:11 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
182
+ 2013-09-04 13:51:12 - response return (code 00000)
183
+ 2013-09-04 13:53:04 - ----------------------------------------------------------
184
+ 2013-09-04 13:53:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
185
+ 2013-09-04 13:53:04 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
186
+ 2013-09-04 13:53:05 - response return (code 00000)
187
+ 2013-09-04 13:53:05 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
188
+ 2013-09-04 13:53:06 - response return (code 00000)
189
+ 2013-09-04 13:53:07 - ----------------------------------------------------------
190
+ 2013-09-04 13:53:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
191
+ 2013-09-04 13:53:07 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
192
+ 2013-09-04 13:53:08 - response return (code 00000)
193
+ 2013-09-04 13:57:31 - ----------------------------------------------------------
194
+ 2013-09-04 13:57:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
195
+ 2013-09-04 13:57:31 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
196
+ 2013-09-04 13:57:33 - response return (code 00000)
197
+ 2013-09-04 13:57:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
198
+ 2013-09-04 13:57:34 - response return (code 00000)
199
+ 2013-09-04 13:57:35 - ----------------------------------------------------------
200
+ 2013-09-04 13:57:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
201
+ 2013-09-04 13:57:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
202
+ 2013-09-04 13:57:37 - response return (code 00000)
203
+ 2013-09-04 13:58:50 - ----------------------------------------------------------
204
+ 2013-09-04 13:58:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
205
+ 2013-09-04 13:58:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
206
+ 2013-09-04 13:58:51 - response return (code 00000)
207
+ 2013-09-04 13:58:51 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
208
+ 2013-09-04 13:58:52 - response return (code 00000)
209
+ 2013-09-04 14:25:04 - ----------------------------------------------------------
210
+ 2013-09-04 14:25:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
211
+ 2013-09-04 14:25:04 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
212
+ 2013-09-04 14:25:06 - response return (code 00000)
213
+ 2013-09-04 14:25:06 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
214
+ 2013-09-04 14:25:08 - response return (code 00000)
215
+ 2013-09-04 14:37:19 - ----------------------------------------------------------
216
+ 2013-09-04 14:37:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
217
+ 2013-09-04 14:37:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
218
+ 2013-09-04 14:37:20 - response return (code 00000)
219
+ 2013-09-04 14:37:20 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
220
+ 2013-09-04 14:37:21 - response return (code 00000)
221
+ 2013-09-04 14:39:31 - ----------------------------------------------------------
222
+ 2013-09-04 14:39:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
223
+ 2013-09-04 14:39:31 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
224
+ 2013-09-04 14:39:33 - response return (code 00000)
225
+ 2013-09-04 14:39:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
226
+ 2013-09-04 14:39:34 - response return (code 00000)
227
+ 2013-09-04 14:39:35 - ----------------------------------------------------------
228
+ 2013-09-04 14:39:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
229
+ 2013-09-04 14:39:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
230
+ 2013-09-04 14:39:36 - response return (code 00000)
231
+ 2013-09-04 14:40:58 - ----------------------------------------------------------
232
+ 2013-09-04 14:40:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
233
+ 2013-09-04 14:40:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
234
+ 2013-09-04 14:40:58 - response return (code 00000)
235
+ 2013-09-04 14:40:58 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
236
+ 2013-09-04 14:40:59 - response return (code 00000)
237
+ 2013-09-04 14:43:56 - ----------------------------------------------------------
238
+ 2013-09-04 14:43:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
239
+ 2013-09-04 14:43:56 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
240
+ 2013-09-04 14:43:57 - response return (code 00000)
241
+ 2013-09-04 14:43:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
242
+ 2013-09-04 14:43:58 - response return (code 00000)
243
+ 2013-09-04 14:43:59 - ----------------------------------------------------------
244
+ 2013-09-04 14:43:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
245
+ 2013-09-04 14:43:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
246
+ 2013-09-04 14:44:00 - response return (code 00000)
247
+ 2013-09-04 14:45:06 - ----------------------------------------------------------
248
+ 2013-09-04 14:45:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
249
+ 2013-09-04 14:45:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
250
+ 2013-09-04 14:45:07 - response return (code 00000)
251
+ 2013-09-04 14:45:07 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
252
+ 2013-09-04 14:45:09 - response return (code 00000)
253
+ 2013-09-04 15:09:19 - ----------------------------------------------------------
254
+ 2013-09-04 15:09:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
255
+ 2013-09-04 15:09:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
256
+ 2013-09-04 15:09:20 - response return (code 00000)
257
+ 2013-09-04 15:09:20 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
258
+ 2013-09-04 15:09:21 - response return (code 00000)
259
+ 2013-09-04 15:09:34 - ----------------------------------------------------------
260
+ 2013-09-04 15:09:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
261
+ 2013-09-04 15:09:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
262
+ 2013-09-04 15:09:35 - response return (code 00000)
263
+ 2013-09-04 15:09:35 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
264
+ 2013-09-04 15:09:35 - response return (code 00000)
265
+ 2013-09-04 15:11:06 - ----------------------------------------------------------
266
+ 2013-09-04 15:11:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
267
+ 2013-09-04 15:11:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
268
+ 2013-09-04 15:11:07 - response return (code 00000)
269
+ 2013-09-04 15:11:07 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
270
+ 2013-09-04 15:11:09 - response return (code 00000)
271
+ 2013-09-04 15:14:30 - ----------------------------------------------------------
272
+ 2013-09-04 15:14:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
273
+ 2013-09-04 15:14:30 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
274
+ 2013-09-04 15:14:30 - response return (code 00000)
275
+ 2013-09-04 15:14:30 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
276
+ 2013-09-04 15:14:31 - response return (code 00000)
277
+ 2013-09-04 15:14:32 - ----------------------------------------------------------
278
+ 2013-09-04 15:14:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
279
+ 2013-09-04 15:14:32 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
280
+ 2013-09-04 15:14:32 - response return (code 00000)
281
+ 2013-09-04 15:15:10 - ----------------------------------------------------------
282
+ 2013-09-04 15:15:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
283
+ 2013-09-04 15:15:10 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
284
+ 2013-09-04 15:15:11 - response return (code 00000)
285
+ 2013-09-04 15:15:11 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
286
+ 2013-09-04 15:15:12 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-05.log ADDED
@@ -0,0 +1,406 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-05 9:09:19 - ----------------------------------------------------------
2
+ 2013-09-05 9:09:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-09-05 9:09:19 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-09-05 9:09:20 - response return (code 02500)
5
+ 2013-09-05 9:10:46 - ----------------------------------------------------------
6
+ 2013-09-05 9:10:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-09-05 9:10:46 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
8
+ 2013-09-05 9:10:47 - response return (code 00000)
9
+ 2013-09-05 9:11:01 - ----------------------------------------------------------
10
+ 2013-09-05 9:11:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-09-05 9:11:01 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
12
+ 2013-09-05 9:11:01 - response return (code 00000)
13
+ 2013-09-05 9:11:21 - ----------------------------------------------------------
14
+ 2013-09-05 9:11:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-09-05 9:11:21 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
16
+ 2013-09-05 9:11:22 - response return (code 00000)
17
+ 2013-09-05 9:32:08 - ----------------------------------------------------------
18
+ 2013-09-05 9:32:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-09-05 9:32:08 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
20
+ 2013-09-05 9:32:08 - response return (code 00000)
21
+ 2013-09-05 9:32:13 - ----------------------------------------------------------
22
+ 2013-09-05 9:32:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-09-05 9:32:13 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
24
+ 2013-09-05 9:32:14 - response return (code 00000)
25
+ 2013-09-05 9:33:10 - ----------------------------------------------------------
26
+ 2013-09-05 9:33:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-09-05 9:33:10 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
28
+ 2013-09-05 9:33:11 - response return (code 00000)
29
+ 2013-09-05 9:35:21 - ----------------------------------------------------------
30
+ 2013-09-05 9:35:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-09-05 9:35:21 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
32
+ 2013-09-05 9:35:21 - response return (code 00000)
33
+ 2013-09-05 9:35:25 - ----------------------------------------------------------
34
+ 2013-09-05 9:35:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
35
+ 2013-09-05 9:35:25 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
36
+ 2013-09-05 9:35:25 - response return (code 00000)
37
+ 2013-09-05 9:37:05 - ----------------------------------------------------------
38
+ 2013-09-05 9:37:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-09-05 9:37:05 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
40
+ 2013-09-05 9:37:06 - response return (code 00000)
41
+ 2013-09-05 9:37:10 - ----------------------------------------------------------
42
+ 2013-09-05 9:37:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-09-05 9:37:10 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
44
+ 2013-09-05 9:37:10 - response return (code 00000)
45
+ 2013-09-05 9:38:24 - ----------------------------------------------------------
46
+ 2013-09-05 9:38:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
47
+ 2013-09-05 9:38:24 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
48
+ 2013-09-05 9:38:25 - response return (code 00000)
49
+ 2013-09-05 9:38:28 - ----------------------------------------------------------
50
+ 2013-09-05 9:38:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
51
+ 2013-09-05 9:38:28 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
52
+ 2013-09-05 9:38:28 - response return (code 00000)
53
+ 2013-09-05 9:40:59 - ----------------------------------------------------------
54
+ 2013-09-05 9:40:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
55
+ 2013-09-05 9:40:59 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
56
+ 2013-09-05 9:41:00 - response return (code 00000)
57
+ 2013-09-05 9:41:03 - ----------------------------------------------------------
58
+ 2013-09-05 9:41:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
59
+ 2013-09-05 9:41:03 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
60
+ 2013-09-05 9:41:04 - response return (code 00000)
61
+ 2013-09-05 9:43:58 - ----------------------------------------------------------
62
+ 2013-09-05 9:43:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-09-05 9:43:58 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
64
+ 2013-09-05 9:43:59 - response return (code 00000)
65
+ 2013-09-05 9:43:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
66
+ 2013-09-05 9:44:00 - response return (code 00000)
67
+ 2013-09-05 9:45:34 - ----------------------------------------------------------
68
+ 2013-09-05 9:45:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
69
+ 2013-09-05 9:45:34 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
70
+ 2013-09-05 9:45:35 - response return (code 00000)
71
+ 2013-09-05 9:45:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
72
+ 2013-09-05 9:45:36 - response return (code 00000)
73
+ 2013-09-05 9:47:21 - ----------------------------------------------------------
74
+ 2013-09-05 9:47:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
75
+ 2013-09-05 9:47:21 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
76
+ 2013-09-05 9:47:22 - response return (code 00000)
77
+ 2013-09-05 9:47:32 - ----------------------------------------------------------
78
+ 2013-09-05 9:47:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
79
+ 2013-09-05 9:47:32 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
80
+ 2013-09-05 9:47:34 - response return (code 02500)
81
+ 2013-09-05 12:44:24 - ----------------------------------------------------------
82
+ 2013-09-05 12:44:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
83
+ 2013-09-05 12:44:24 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
84
+ 2013-09-05 12:44:25 - response return (code 02500)
85
+ 2013-09-05 12:44:54 - ----------------------------------------------------------
86
+ 2013-09-05 12:44:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
87
+ 2013-09-05 12:44:54 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
88
+ 2013-09-05 12:44:55 - response return (code 00000)
89
+ 2013-09-05 12:44:59 - ----------------------------------------------------------
90
+ 2013-09-05 12:44:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
91
+ 2013-09-05 12:44:59 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
92
+ 2013-09-05 12:45:00 - response return (code 00000)
93
+ 2013-09-05 12:46:53 - ----------------------------------------------------------
94
+ 2013-09-05 12:46:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
95
+ 2013-09-05 12:46:53 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
96
+ 2013-09-05 12:46:54 - response return (code 00000)
97
+ 2013-09-05 12:46:54 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
98
+ 2013-09-05 12:46:55 - response return (code 00000)
99
+ 2013-09-05 12:49:26 - ----------------------------------------------------------
100
+ 2013-09-05 12:49:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
101
+ 2013-09-05 12:49:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
102
+ 2013-09-05 12:49:27 - response return (code 00000)
103
+ 2013-09-05 12:49:27 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
104
+ 2013-09-05 12:49:28 - response return (code 02110)
105
+ 2013-09-05 12:51:08 - ----------------------------------------------------------
106
+ 2013-09-05 12:51:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
107
+ 2013-09-05 12:51:08 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
108
+ 2013-09-05 12:51:09 - response return (code 00000)
109
+ 2013-09-05 12:51:20 - ----------------------------------------------------------
110
+ 2013-09-05 12:51:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
111
+ 2013-09-05 12:51:20 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
112
+ 2013-09-05 12:51:20 - response return (code 00000)
113
+ 2013-09-05 12:53:42 - ----------------------------------------------------------
114
+ 2013-09-05 12:53:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
115
+ 2013-09-05 12:53:42 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
116
+ 2013-09-05 12:53:43 - response return (code 00000)
117
+ 2013-09-05 12:53:43 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
118
+ 2013-09-05 12:53:44 - response return (code 00000)
119
+ 2013-09-05 12:59:19 - ----------------------------------------------------------
120
+ 2013-09-05 12:59:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
121
+ 2013-09-05 12:59:19 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
122
+ 2013-09-05 12:59:20 - response return (code 00000)
123
+ 2013-09-05 12:59:37 - ----------------------------------------------------------
124
+ 2013-09-05 12:59:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
125
+ 2013-09-05 12:59:37 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
126
+ 2013-09-05 12:59:38 - response return (code 00000)
127
+ 2013-09-05 13:00:20 - ----------------------------------------------------------
128
+ 2013-09-05 13:00:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
129
+ 2013-09-05 13:00:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
130
+ 2013-09-05 13:00:21 - response return (code 00000)
131
+ 2013-09-05 13:00:21 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
132
+ 2013-09-05 13:00:21 - response return (code 00000)
133
+ 2013-09-05 14:09:08 - ----------------------------------------------------------
134
+ 2013-09-05 14:09:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
135
+ 2013-09-05 14:09:08 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
136
+ 2013-09-05 14:09:09 - response return (code 00000)
137
+ 2013-09-05 14:09:20 - ----------------------------------------------------------
138
+ 2013-09-05 14:09:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
139
+ 2013-09-05 14:09:20 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
140
+ 2013-09-05 14:09:20 - response return (code 00000)
141
+ 2013-09-05 14:14:53 - ----------------------------------------------------------
142
+ 2013-09-05 14:14:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
143
+ 2013-09-05 14:14:53 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
144
+ 2013-09-05 14:14:54 - response return (code 00000)
145
+ 2013-09-05 14:15:01 - ----------------------------------------------------------
146
+ 2013-09-05 14:15:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
147
+ 2013-09-05 14:15:01 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
148
+ 2013-09-05 14:15:03 - response return (code 00000)
149
+ 2013-09-05 14:15:50 - ----------------------------------------------------------
150
+ 2013-09-05 14:15:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
151
+ 2013-09-05 14:15:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
152
+ 2013-09-05 14:15:52 - response return (code 00000)
153
+ 2013-09-05 14:15:52 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
154
+ 2013-09-05 14:15:53 - response return (code 00000)
155
+ 2013-09-05 14:20:22 - ----------------------------------------------------------
156
+ 2013-09-05 14:20:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
157
+ 2013-09-05 14:20:22 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
158
+ 2013-09-05 14:20:22 - response return (code 00000)
159
+ 2013-09-05 14:20:22 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
160
+ 2013-09-05 14:20:23 - response return (code 00000)
161
+ 2013-09-05 14:29:58 - ----------------------------------------------------------
162
+ 2013-09-05 14:29:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
163
+ 2013-09-05 14:29:58 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
164
+ 2013-09-05 14:29:59 - response return (code 00000)
165
+ 2013-09-05 14:30:10 - ----------------------------------------------------------
166
+ 2013-09-05 14:30:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
167
+ 2013-09-05 14:30:10 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
168
+ 2013-09-05 14:30:11 - response return (code 00000)
169
+ 2013-09-05 14:31:01 - ----------------------------------------------------------
170
+ 2013-09-05 14:31:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
171
+ 2013-09-05 14:31:01 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
172
+ 2013-09-05 14:31:02 - response return (code 00000)
173
+ 2013-09-05 14:31:02 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
174
+ 2013-09-05 14:31:02 - response return (code 00000)
175
+ 2013-09-05 14:31:02 - ----------------------------------------------------------
176
+ 2013-09-05 14:31:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
177
+ 2013-09-05 14:36:31 - ----------------------------------------------------------
178
+ 2013-09-05 14:36:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
179
+ 2013-09-05 14:36:31 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
180
+ 2013-09-05 14:36:32 - response return (code 02500)
181
+ 2013-09-05 14:38:17 - ----------------------------------------------------------
182
+ 2013-09-05 14:38:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
183
+ 2013-09-05 14:38:17 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
184
+ 2013-09-05 14:38:17 - response return (code 02500)
185
+ 2013-09-05 14:39:00 - ----------------------------------------------------------
186
+ 2013-09-05 14:39:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
187
+ 2013-09-05 14:39:00 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
188
+ 2013-09-05 14:39:01 - response return (code 00000)
189
+ 2013-09-05 14:40:04 - ----------------------------------------------------------
190
+ 2013-09-05 14:40:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
191
+ 2013-09-05 14:40:04 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
192
+ 2013-09-05 14:40:05 - response return (code 00000)
193
+ 2013-09-05 14:40:10 - ----------------------------------------------------------
194
+ 2013-09-05 14:40:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
195
+ 2013-09-05 14:40:10 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
196
+ 2013-09-05 14:40:11 - response return (code 00000)
197
+ 2013-09-05 14:40:43 - ----------------------------------------------------------
198
+ 2013-09-05 14:40:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
199
+ 2013-09-05 14:40:43 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
200
+ 2013-09-05 14:40:44 - response return (code 00000)
201
+ 2013-09-05 14:40:44 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
202
+ 2013-09-05 14:40:45 - response return (code 00000)
203
+ 2013-09-05 14:40:45 - ----------------------------------------------------------
204
+ 2013-09-05 14:40:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
205
+ 2013-09-05 14:40:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
206
+ 2013-09-05 14:40:46 - response return (code 00000)
207
+ 2013-09-05 14:42:08 - ----------------------------------------------------------
208
+ 2013-09-05 14:42:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
209
+ 2013-09-05 14:42:08 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
210
+ 2013-09-05 14:42:08 - response return (code 00000)
211
+ 2013-09-05 14:42:12 - ----------------------------------------------------------
212
+ 2013-09-05 14:42:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
213
+ 2013-09-05 14:42:12 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
214
+ 2013-09-05 14:42:12 - response return (code 00000)
215
+ 2013-09-05 14:42:39 - ----------------------------------------------------------
216
+ 2013-09-05 14:42:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
217
+ 2013-09-05 14:42:39 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
218
+ 2013-09-05 14:42:40 - response return (code 00000)
219
+ 2013-09-05 14:42:40 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
220
+ 2013-09-05 14:42:41 - response return (code 00000)
221
+ 2013-09-05 14:42:41 - ----------------------------------------------------------
222
+ 2013-09-05 14:42:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
223
+ 2013-09-05 14:42:42 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
224
+ 2013-09-05 14:42:42 - response return (code 00000)
225
+ 2013-09-05 15:00:46 - ----------------------------------------------------------
226
+ 2013-09-05 15:00:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
227
+ 2013-09-05 15:00:46 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
228
+ 2013-09-05 15:00:47 - response return (code 00000)
229
+ 2013-09-05 15:00:52 - ----------------------------------------------------------
230
+ 2013-09-05 15:00:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
231
+ 2013-09-05 15:00:52 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
232
+ 2013-09-05 15:00:52 - response return (code 00000)
233
+ 2013-09-05 15:01:30 - ----------------------------------------------------------
234
+ 2013-09-05 15:01:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
235
+ 2013-09-05 15:01:30 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
236
+ 2013-09-05 15:01:31 - response return (code 00000)
237
+ 2013-09-05 15:01:31 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
238
+ 2013-09-05 15:01:32 - response return (code 00000)
239
+ 2013-09-05 15:01:32 - ----------------------------------------------------------
240
+ 2013-09-05 15:01:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
241
+ 2013-09-05 15:01:32 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
242
+ 2013-09-05 15:01:33 - response return (code 00000)
243
+ 2013-09-05 15:02:00 - ----------------------------------------------------------
244
+ 2013-09-05 15:02:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
245
+ 2013-09-05 15:02:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
246
+ 2013-09-05 15:02:01 - response return (code 00000)
247
+ 2013-09-05 15:02:01 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
248
+ 2013-09-05 15:02:01 - response return (code 02110)
249
+ 2013-09-05 15:02:42 - ----------------------------------------------------------
250
+ 2013-09-05 15:02:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
251
+ 2013-09-05 15:02:42 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
252
+ 2013-09-05 15:02:42 - response return (code 00000)
253
+ 2013-09-05 15:02:45 - ----------------------------------------------------------
254
+ 2013-09-05 15:02:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
255
+ 2013-09-05 15:02:46 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
256
+ 2013-09-05 15:02:46 - response return (code 00000)
257
+ 2013-09-05 15:03:19 - ----------------------------------------------------------
258
+ 2013-09-05 15:03:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
259
+ 2013-09-05 15:03:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
260
+ 2013-09-05 15:03:20 - response return (code 00000)
261
+ 2013-09-05 15:03:20 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
262
+ 2013-09-05 15:03:20 - response return (code 00000)
263
+ 2013-09-05 15:03:21 - ----------------------------------------------------------
264
+ 2013-09-05 15:03:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
265
+ 2013-09-05 15:03:21 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
266
+ 2013-09-05 15:03:21 - response return (code 00000)
267
+ 2013-09-05 15:05:58 - ----------------------------------------------------------
268
+ 2013-09-05 15:05:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
269
+ 2013-09-05 15:05:58 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
270
+ 2013-09-05 15:05:58 - response return (code 00000)
271
+ 2013-09-05 15:06:02 - ----------------------------------------------------------
272
+ 2013-09-05 15:06:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
273
+ 2013-09-05 15:06:02 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
274
+ 2013-09-05 15:06:02 - response return (code 00000)
275
+ 2013-09-05 15:06:32 - ----------------------------------------------------------
276
+ 2013-09-05 15:06:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
277
+ 2013-09-05 15:06:32 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
278
+ 2013-09-05 15:06:33 - response return (code 00000)
279
+ 2013-09-05 15:06:33 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
280
+ 2013-09-05 15:06:33 - response return (code 00000)
281
+ 2013-09-05 15:06:34 - ----------------------------------------------------------
282
+ 2013-09-05 15:06:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
283
+ 2013-09-05 15:06:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
284
+ 2013-09-05 15:06:35 - response return (code 00000)
285
+ 2013-09-05 15:49:38 - ----------------------------------------------------------
286
+ 2013-09-05 15:49:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
287
+ 2013-09-05 15:49:38 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
288
+ 2013-09-05 15:49:39 - response return (code 00000)
289
+ 2013-09-05 15:49:44 - ----------------------------------------------------------
290
+ 2013-09-05 15:49:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
291
+ 2013-09-05 15:49:44 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
292
+ 2013-09-05 15:49:45 - response return (code 00000)
293
+ 2013-09-05 15:50:26 - ----------------------------------------------------------
294
+ 2013-09-05 15:50:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
295
+ 2013-09-05 15:50:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
296
+ 2013-09-05 15:50:27 - response return (code 00000)
297
+ 2013-09-05 15:50:27 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
298
+ 2013-09-05 15:50:27 - response return (code 00000)
299
+ 2013-09-05 15:50:28 - ----------------------------------------------------------
300
+ 2013-09-05 15:50:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
301
+ 2013-09-05 15:50:28 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
302
+ 2013-09-05 15:50:28 - response return (code 00000)
303
+ 2013-09-05 15:58:21 - ----------------------------------------------------------
304
+ 2013-09-05 15:58:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
305
+ 2013-09-05 15:58:21 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
306
+ 2013-09-05 15:58:21 - response return (code 00000)
307
+ 2013-09-05 15:58:25 - ----------------------------------------------------------
308
+ 2013-09-05 15:58:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
309
+ 2013-09-05 15:58:25 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
310
+ 2013-09-05 15:58:26 - response return (code 00000)
311
+ 2013-09-05 15:59:02 - ----------------------------------------------------------
312
+ 2013-09-05 15:59:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
313
+ 2013-09-05 15:59:02 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
314
+ 2013-09-05 15:59:03 - response return (code 00000)
315
+ 2013-09-05 15:59:03 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
316
+ 2013-09-05 15:59:04 - response return (code 00000)
317
+ 2013-09-05 15:59:04 - ----------------------------------------------------------
318
+ 2013-09-05 15:59:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
319
+ 2013-09-05 15:59:04 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
320
+ 2013-09-05 15:59:05 - response return (code 00000)
321
+ 2013-09-05 16:04:34 - ----------------------------------------------------------
322
+ 2013-09-05 16:04:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
323
+ 2013-09-05 16:04:34 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
324
+ 2013-09-05 16:04:34 - response return (code 00000)
325
+ 2013-09-05 16:04:39 - ----------------------------------------------------------
326
+ 2013-09-05 16:04:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
327
+ 2013-09-05 16:04:39 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
328
+ 2013-09-05 16:04:39 - response return (code 00000)
329
+ 2013-09-05 16:05:05 - ----------------------------------------------------------
330
+ 2013-09-05 16:05:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
331
+ 2013-09-05 16:05:05 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
332
+ 2013-09-05 16:05:05 - response return (code 00000)
333
+ 2013-09-05 16:05:05 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
334
+ 2013-09-05 16:05:06 - response return (code 00000)
335
+ 2013-09-05 16:05:06 - ----------------------------------------------------------
336
+ 2013-09-05 16:05:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
337
+ 2013-09-05 16:05:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
338
+ 2013-09-05 16:05:07 - response return (code 00000)
339
+ 2013-09-05 16:23:47 - ----------------------------------------------------------
340
+ 2013-09-05 16:23:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
341
+ 2013-09-05 16:23:47 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
342
+ 2013-09-05 16:23:48 - response return (code 00000)
343
+ 2013-09-05 16:23:52 - ----------------------------------------------------------
344
+ 2013-09-05 16:23:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
345
+ 2013-09-05 16:23:52 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
346
+ 2013-09-05 16:23:53 - response return (code 00000)
347
+ 2013-09-05 16:24:18 - ----------------------------------------------------------
348
+ 2013-09-05 16:24:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
349
+ 2013-09-05 16:24:18 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
350
+ 2013-09-05 16:24:19 - response return (code 00000)
351
+ 2013-09-05 16:24:19 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
352
+ 2013-09-05 16:24:19 - response return (code 00000)
353
+ 2013-09-05 16:24:20 - ----------------------------------------------------------
354
+ 2013-09-05 16:24:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
355
+ 2013-09-05 16:26:13 - ----------------------------------------------------------
356
+ 2013-09-05 16:26:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
357
+ 2013-09-05 16:26:13 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
358
+ 2013-09-05 16:26:13 - response return (code 00000)
359
+ 2013-09-05 16:26:18 - ----------------------------------------------------------
360
+ 2013-09-05 16:26:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
361
+ 2013-09-05 16:26:18 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
362
+ 2013-09-05 16:26:18 - response return (code 00000)
363
+ 2013-09-05 16:26:51 - ----------------------------------------------------------
364
+ 2013-09-05 16:26:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
365
+ 2013-09-05 16:26:51 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
366
+ 2013-09-05 16:26:51 - response return (code 00000)
367
+ 2013-09-05 16:26:51 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
368
+ 2013-09-05 16:26:52 - response return (code 00000)
369
+ 2013-09-05 16:26:52 - ----------------------------------------------------------
370
+ 2013-09-05 16:26:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
371
+ 2013-09-05 16:29:58 - ----------------------------------------------------------
372
+ 2013-09-05 16:29:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
373
+ 2013-09-05 16:29:58 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
374
+ 2013-09-05 16:29:59 - response return (code 00000)
375
+ 2013-09-05 16:30:02 - ----------------------------------------------------------
376
+ 2013-09-05 16:30:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
377
+ 2013-09-05 16:30:02 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
378
+ 2013-09-05 16:30:03 - response return (code 00000)
379
+ 2013-09-05 16:30:33 - ----------------------------------------------------------
380
+ 2013-09-05 16:30:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
381
+ 2013-09-05 16:30:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
382
+ 2013-09-05 16:30:35 - response return (code 00000)
383
+ 2013-09-05 16:30:35 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
384
+ 2013-09-05 16:30:36 - response return (code 00000)
385
+ 2013-09-05 16:30:36 - ----------------------------------------------------------
386
+ 2013-09-05 16:30:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
387
+ 2013-09-05 16:30:36 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
388
+ 2013-09-05 16:30:37 - response return (code 00000)
389
+ 2013-09-05 16:35:02 - ----------------------------------------------------------
390
+ 2013-09-05 16:35:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
391
+ 2013-09-05 16:35:02 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
392
+ 2013-09-05 16:35:03 - response return (code 00000)
393
+ 2013-09-05 16:35:07 - ----------------------------------------------------------
394
+ 2013-09-05 16:35:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
395
+ 2013-09-05 16:35:07 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
396
+ 2013-09-05 16:35:08 - response return (code 00000)
397
+ 2013-09-05 16:35:41 - ----------------------------------------------------------
398
+ 2013-09-05 16:35:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
399
+ 2013-09-05 16:35:41 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
400
+ 2013-09-05 16:35:42 - response return (code 00000)
401
+ 2013-09-05 16:35:42 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
402
+ 2013-09-05 16:35:43 - response return (code 00000)
403
+ 2013-09-05 16:35:44 - ----------------------------------------------------------
404
+ 2013-09-05 16:35:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
405
+ 2013-09-05 16:35:44 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
406
+ 2013-09-05 16:35:44 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-06.log ADDED
@@ -0,0 +1,348 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-06 8:12:30 - ----------------------------------------------------------
2
+ 2013-09-06 8:12:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-09-06 8:12:30 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-09-06 8:12:31 - response return (code 02500)
5
+ 2013-09-06 8:14:06 - ----------------------------------------------------------
6
+ 2013-09-06 8:14:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-09-06 8:14:06 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
8
+ 2013-09-06 8:14:08 - response return (code 00000)
9
+ 2013-09-06 8:14:08 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
10
+ 2013-09-06 8:14:09 - response return (code 00000)
11
+ 2013-09-06 8:17:09 - ----------------------------------------------------------
12
+ 2013-09-06 8:17:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
13
+ 2013-09-06 8:17:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
14
+ 2013-09-06 8:17:10 - response return (code 00000)
15
+ 2013-09-06 8:17:10 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
16
+ 2013-09-06 8:17:10 - response return (code 00000)
17
+ 2013-09-06 8:17:11 - ----------------------------------------------------------
18
+ 2013-09-06 8:17:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-09-06 8:17:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
20
+ 2013-09-06 8:17:11 - response return (code 00000)
21
+ 2013-09-06 8:18:58 - ----------------------------------------------------------
22
+ 2013-09-06 8:18:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-09-06 8:18:58 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
24
+ 2013-09-06 8:18:59 - response return (code 00000)
25
+ 2013-09-06 8:18:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
26
+ 2013-09-06 8:19:00 - response return (code 00000)
27
+ 2013-09-06 8:19:01 - ----------------------------------------------------------
28
+ 2013-09-06 8:19:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
29
+ 2013-09-06 8:19:01 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
30
+ 2013-09-06 8:19:03 - response return (code 00000)
31
+ 2013-09-06 8:19:39 - ----------------------------------------------------------
32
+ 2013-09-06 8:19:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
33
+ 2013-09-06 8:19:39 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
34
+ 2013-09-06 8:19:39 - response return (code 00000)
35
+ 2013-09-06 8:19:39 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
36
+ 2013-09-06 8:19:40 - response return (code 00000)
37
+ 2013-09-06 8:19:40 - ----------------------------------------------------------
38
+ 2013-09-06 8:19:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-09-06 8:19:40 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
40
+ 2013-09-06 8:19:41 - response return (code 00000)
41
+ 2013-09-06 8:20:31 - ----------------------------------------------------------
42
+ 2013-09-06 8:20:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-09-06 8:20:31 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
44
+ 2013-09-06 8:20:32 - response return (code 00000)
45
+ 2013-09-06 8:20:32 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
46
+ 2013-09-06 8:20:32 - response return (code 00000)
47
+ 2013-09-06 8:20:33 - ----------------------------------------------------------
48
+ 2013-09-06 8:20:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
49
+ 2013-09-06 8:20:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
50
+ 2013-09-06 8:20:33 - response return (code 00000)
51
+ 2013-09-06 8:22:10 - ----------------------------------------------------------
52
+ 2013-09-06 8:22:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
53
+ 2013-09-06 8:22:10 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
54
+ 2013-09-06 8:22:10 - response return (code 00000)
55
+ 2013-09-06 8:22:10 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
56
+ 2013-09-06 8:22:11 - response return (code 00000)
57
+ 2013-09-06 8:22:11 - ----------------------------------------------------------
58
+ 2013-09-06 8:22:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
59
+ 2013-09-06 8:22:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
60
+ 2013-09-06 8:22:12 - response return (code 00000)
61
+ 2013-09-06 8:24:04 - ----------------------------------------------------------
62
+ 2013-09-06 8:24:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-09-06 8:24:04 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
64
+ 2013-09-06 8:24:05 - response return (code 00000)
65
+ 2013-09-06 8:24:05 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
66
+ 2013-09-06 8:24:06 - response return (code 00000)
67
+ 2013-09-06 8:24:08 - ----------------------------------------------------------
68
+ 2013-09-06 8:24:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
69
+ 2013-09-06 8:24:08 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
70
+ 2013-09-06 8:24:08 - response return (code 00000)
71
+ 2013-09-06 8:26:57 - ----------------------------------------------------------
72
+ 2013-09-06 8:26:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
73
+ 2013-09-06 8:26:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
74
+ 2013-09-06 8:26:57 - response return (code 00000)
75
+ 2013-09-06 8:26:57 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
76
+ 2013-09-06 8:26:58 - response return (code 00000)
77
+ 2013-09-06 8:26:58 - ----------------------------------------------------------
78
+ 2013-09-06 8:26:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
79
+ 2013-09-06 8:26:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
80
+ 2013-09-06 8:26:59 - response return (code 00000)
81
+ 2013-09-06 8:29:08 - ----------------------------------------------------------
82
+ 2013-09-06 8:29:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
83
+ 2013-09-06 8:29:08 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
84
+ 2013-09-06 8:29:09 - response return (code 00000)
85
+ 2013-09-06 8:29:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
86
+ 2013-09-06 8:29:10 - response return (code 00000)
87
+ 2013-09-06 8:29:11 - ----------------------------------------------------------
88
+ 2013-09-06 8:29:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
89
+ 2013-09-06 8:29:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
90
+ 2013-09-06 8:29:11 - response return (code 00000)
91
+ 2013-09-06 8:29:47 - ----------------------------------------------------------
92
+ 2013-09-06 8:29:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
93
+ 2013-09-06 8:29:47 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
94
+ 2013-09-06 8:29:48 - response return (code 00000)
95
+ 2013-09-06 8:29:48 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
96
+ 2013-09-06 8:29:49 - response return (code 00000)
97
+ 2013-09-06 8:30:44 - ----------------------------------------------------------
98
+ 2013-09-06 8:30:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
99
+ 2013-09-06 8:30:44 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
100
+ 2013-09-06 8:30:45 - response return (code 00000)
101
+ 2013-09-06 8:30:45 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
102
+ 2013-09-06 8:30:45 - response return (code 02110)
103
+ 2013-09-06 8:31:30 - ----------------------------------------------------------
104
+ 2013-09-06 8:31:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
105
+ 2013-09-06 8:31:30 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
106
+ 2013-09-06 8:31:31 - response return (code 00000)
107
+ 2013-09-06 8:31:31 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
108
+ 2013-09-06 8:31:32 - response return (code 00000)
109
+ 2013-09-06 8:31:33 - ----------------------------------------------------------
110
+ 2013-09-06 8:31:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
111
+ 2013-09-06 8:31:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
112
+ 2013-09-06 8:31:33 - response return (code 00000)
113
+ 2013-09-06 8:32:27 - ----------------------------------------------------------
114
+ 2013-09-06 8:32:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
115
+ 2013-09-06 8:32:27 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
116
+ 2013-09-06 8:32:27 - response return (code 00000)
117
+ 2013-09-06 8:32:27 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
118
+ 2013-09-06 8:32:28 - response return (code 00000)
119
+ 2013-09-06 8:32:28 - ----------------------------------------------------------
120
+ 2013-09-06 8:32:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
121
+ 2013-09-06 8:32:28 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
122
+ 2013-09-06 8:32:29 - response return (code 00000)
123
+ 2013-09-06 8:38:07 - ----------------------------------------------------------
124
+ 2013-09-06 8:38:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
125
+ 2013-09-06 8:38:07 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
126
+ 2013-09-06 8:38:07 - response return (code 00000)
127
+ 2013-09-06 8:38:07 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
128
+ 2013-09-06 8:38:08 - response return (code 00000)
129
+ 2013-09-06 8:38:09 - ----------------------------------------------------------
130
+ 2013-09-06 8:38:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
131
+ 2013-09-06 8:38:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
132
+ 2013-09-06 8:38:09 - response return (code 00000)
133
+ 2013-09-06 8:39:57 - ----------------------------------------------------------
134
+ 2013-09-06 8:39:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
135
+ 2013-09-06 8:39:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
136
+ 2013-09-06 8:39:58 - response return (code 00000)
137
+ 2013-09-06 8:39:58 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
138
+ 2013-09-06 8:39:59 - response return (code 00000)
139
+ 2013-09-06 8:39:59 - ----------------------------------------------------------
140
+ 2013-09-06 8:39:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
141
+ 2013-09-06 8:39:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
142
+ 2013-09-06 8:40:00 - response return (code 00000)
143
+ 2013-09-06 8:43:32 - ----------------------------------------------------------
144
+ 2013-09-06 8:43:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
145
+ 2013-09-06 8:43:32 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
146
+ 2013-09-06 8:43:32 - response return (code 00000)
147
+ 2013-09-06 8:43:32 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
148
+ 2013-09-06 8:43:33 - response return (code 00000)
149
+ 2013-09-06 8:44:18 - ----------------------------------------------------------
150
+ 2013-09-06 8:44:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
151
+ 2013-09-06 8:44:18 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
152
+ 2013-09-06 8:44:19 - response return (code 00000)
153
+ 2013-09-06 8:44:19 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
154
+ 2013-09-06 8:44:20 - response return (code 00000)
155
+ 2013-09-06 8:44:20 - ----------------------------------------------------------
156
+ 2013-09-06 8:44:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
157
+ 2013-09-06 8:44:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
158
+ 2013-09-06 8:44:21 - response return (code 00000)
159
+ 2013-09-06 8:54:09 - ----------------------------------------------------------
160
+ 2013-09-06 8:54:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
161
+ 2013-09-06 8:54:09 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
162
+ 2013-09-06 8:54:10 - response return (code 00000)
163
+ 2013-09-06 8:54:10 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
164
+ 2013-09-06 8:54:11 - response return (code 00000)
165
+ 2013-09-06 8:54:45 - ----------------------------------------------------------
166
+ 2013-09-06 8:54:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
167
+ 2013-09-06 8:54:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
168
+ 2013-09-06 8:54:47 - response return (code 00000)
169
+ 2013-09-06 8:54:47 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
170
+ 2013-09-06 8:54:47 - response return (code 00000)
171
+ 2013-09-06 8:54:48 - ----------------------------------------------------------
172
+ 2013-09-06 8:54:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
173
+ 2013-09-06 8:54:48 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
174
+ 2013-09-06 8:54:48 - response return (code 00000)
175
+ 2013-09-06 8:57:33 - ----------------------------------------------------------
176
+ 2013-09-06 8:57:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
177
+ 2013-09-06 8:57:33 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
178
+ 2013-09-06 8:57:34 - response return (code 00000)
179
+ 2013-09-06 8:57:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
180
+ 2013-09-06 8:57:34 - response return (code 00000)
181
+ 2013-09-06 8:57:35 - ----------------------------------------------------------
182
+ 2013-09-06 8:57:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
183
+ 2013-09-06 8:57:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
184
+ 2013-09-06 8:57:36 - response return (code 00000)
185
+ 2013-09-06 8:58:14 - ----------------------------------------------------------
186
+ 2013-09-06 8:58:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
187
+ 2013-09-06 8:58:14 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
188
+ 2013-09-06 8:58:15 - response return (code 00000)
189
+ 2013-09-06 8:58:15 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
190
+ 2013-09-06 8:58:15 - response return (code 00000)
191
+ 2013-09-06 8:58:15 - ----------------------------------------------------------
192
+ 2013-09-06 8:58:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
193
+ 2013-09-06 8:58:15 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
194
+ 2013-09-06 8:58:16 - response return (code 00000)
195
+ 2013-09-06 9:45:32 - ----------------------------------------------------------
196
+ 2013-09-06 9:45:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
197
+ 2013-09-06 9:45:32 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
198
+ 2013-09-06 9:45:33 - response return (code 00000)
199
+ 2013-09-06 9:45:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
200
+ 2013-09-06 9:45:34 - response return (code 00000)
201
+ 2013-09-06 9:45:35 - ----------------------------------------------------------
202
+ 2013-09-06 9:45:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
203
+ 2013-09-06 9:45:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
204
+ 2013-09-06 9:45:35 - response return (code 00000)
205
+ 2013-09-06 9:45:35 - ----------------------------------------------------------
206
+ 2013-09-06 9:45:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
207
+ 2013-09-06 9:45:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
208
+ 2013-09-06 9:45:36 - response return (code 00000)
209
+ 2013-09-06 9:45:36 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
210
+ 2013-09-06 9:45:36 - response return (code 00000)
211
+ 2013-09-06 9:45:36 - ----------------------------------------------------------
212
+ 2013-09-06 9:45:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
213
+ 2013-09-06 9:45:36 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
214
+ 2013-09-06 9:45:37 - response return (code 00000)
215
+ 2013-09-06 12:34:17 - ----------------------------------------------------------
216
+ 2013-09-06 12:34:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
217
+ 2013-09-06 12:34:17 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
218
+ 2013-09-06 12:34:19 - response return (code 02500)
219
+ 2013-09-06 12:34:51 - ----------------------------------------------------------
220
+ 2013-09-06 12:34:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
221
+ 2013-09-06 12:34:51 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
222
+ 2013-09-06 12:34:52 - response return (code 00000)
223
+ 2013-09-06 12:34:52 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
224
+ 2013-09-06 12:34:53 - response return (code 00000)
225
+ 2013-09-06 12:34:54 - ----------------------------------------------------------
226
+ 2013-09-06 12:34:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
227
+ 2013-09-06 12:34:54 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
228
+ 2013-09-06 12:34:54 - response return (code 00000)
229
+ 2013-09-06 12:34:55 - ----------------------------------------------------------
230
+ 2013-09-06 12:34:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
231
+ 2013-09-06 12:34:55 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
232
+ 2013-09-06 12:34:55 - response return (code 00000)
233
+ 2013-09-06 12:34:55 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
234
+ 2013-09-06 12:34:56 - response return (code 00000)
235
+ 2013-09-06 12:34:56 - ----------------------------------------------------------
236
+ 2013-09-06 12:34:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
237
+ 2013-09-06 12:34:56 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
238
+ 2013-09-06 12:34:57 - response return (code 00000)
239
+ 2013-09-06 12:41:24 - ----------------------------------------------------------
240
+ 2013-09-06 12:41:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
241
+ 2013-09-06 12:41:24 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
242
+ 2013-09-06 12:41:25 - response return (code 00000)
243
+ 2013-09-06 12:41:25 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
244
+ 2013-09-06 12:41:26 - response return (code 00000)
245
+ 2013-09-06 12:41:26 - ----------------------------------------------------------
246
+ 2013-09-06 12:41:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
247
+ 2013-09-06 12:41:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
248
+ 2013-09-06 12:41:27 - response return (code 00000)
249
+ 2013-09-06 12:42:07 - ----------------------------------------------------------
250
+ 2013-09-06 12:42:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
251
+ 2013-09-06 12:42:07 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
252
+ 2013-09-06 12:42:08 - response return (code 00000)
253
+ 2013-09-06 12:42:08 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
254
+ 2013-09-06 12:42:09 - response return (code 00000)
255
+ 2013-09-06 12:42:09 - ----------------------------------------------------------
256
+ 2013-09-06 12:42:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
257
+ 2013-09-06 12:42:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
258
+ 2013-09-06 12:42:09 - response return (code 00000)
259
+ 2013-09-06 12:49:32 - ----------------------------------------------------------
260
+ 2013-09-06 12:49:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
261
+ 2013-09-06 12:49:32 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
262
+ 2013-09-06 12:49:33 - response return (code 00000)
263
+ 2013-09-06 12:49:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
264
+ 2013-09-06 12:49:34 - response return (code 00000)
265
+ 2013-09-06 12:52:16 - ----------------------------------------------------------
266
+ 2013-09-06 12:52:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
267
+ 2013-09-06 12:52:16 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
268
+ 2013-09-06 12:52:17 - response return (code 00000)
269
+ 2013-09-06 12:52:17 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
270
+ 2013-09-06 12:52:18 - response return (code 00000)
271
+ 2013-09-06 12:56:49 - ----------------------------------------------------------
272
+ 2013-09-06 12:56:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
273
+ 2013-09-06 12:56:49 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
274
+ 2013-09-06 12:56:50 - response return (code 00000)
275
+ 2013-09-06 12:56:56 - ----------------------------------------------------------
276
+ 2013-09-06 12:56:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
277
+ 2013-09-06 12:56:56 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
278
+ 2013-09-06 12:56:57 - response return (code 02500)
279
+ 2013-09-06 13:31:47 - ----------------------------------------------------------
280
+ 2013-09-06 13:31:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
281
+ 2013-09-06 13:31:47 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
282
+ 2013-09-06 13:31:48 - response return (code 00000)
283
+ 2013-09-06 13:31:48 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
284
+ 2013-09-06 13:31:49 - response return (code 00000)
285
+ 2013-09-06 13:31:50 - ----------------------------------------------------------
286
+ 2013-09-06 13:31:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
287
+ 2013-09-06 13:31:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
288
+ 2013-09-06 13:31:50 - response return (code 00000)
289
+ 2013-09-06 14:10:43 - ----------------------------------------------------------
290
+ 2013-09-06 14:10:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
291
+ 2013-09-06 14:10:43 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
292
+ 2013-09-06 14:10:45 - response return (code 00000)
293
+ 2013-09-06 14:10:45 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
294
+ 2013-09-06 14:10:45 - response return (code 00000)
295
+ 2013-09-06 14:10:45 - ----------------------------------------------------------
296
+ 2013-09-06 14:10:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
297
+ 2013-09-06 14:10:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
298
+ 2013-09-06 14:10:46 - response return (code 00000)
299
+ 2013-09-06 14:14:30 - ----------------------------------------------------------
300
+ 2013-09-06 14:14:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
301
+ 2013-09-06 14:14:30 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
302
+ 2013-09-06 14:14:32 - response return (code 00000)
303
+ 2013-09-06 14:14:32 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
304
+ 2013-09-06 14:14:32 - response return (code 00000)
305
+ 2013-09-06 14:14:33 - ----------------------------------------------------------
306
+ 2013-09-06 14:14:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
307
+ 2013-09-06 14:14:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
308
+ 2013-09-06 14:14:33 - response return (code 00000)
309
+ 2013-09-06 15:01:13 - ----------------------------------------------------------
310
+ 2013-09-06 15:01:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
311
+ 2013-09-06 15:01:13 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
312
+ 2013-09-06 15:01:14 - response return (code 00000)
313
+ 2013-09-06 15:01:14 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
314
+ 2013-09-06 15:01:15 - response return (code 00000)
315
+ 2013-09-06 15:01:15 - ----------------------------------------------------------
316
+ 2013-09-06 15:01:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
317
+ 2013-09-06 15:01:15 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
318
+ 2013-09-06 15:01:16 - response return (code 00000)
319
+ 2013-09-06 15:04:11 - ----------------------------------------------------------
320
+ 2013-09-06 15:04:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
321
+ 2013-09-06 15:04:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
322
+ 2013-09-06 15:04:15 - response return (code 00000)
323
+ 2013-09-06 15:04:15 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
324
+ 2013-09-06 15:04:16 - response return (code 00000)
325
+ 2013-09-06 15:04:16 - ----------------------------------------------------------
326
+ 2013-09-06 15:04:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
327
+ 2013-09-06 15:04:16 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
328
+ 2013-09-06 15:04:17 - response return (code 00000)
329
+ 2013-09-06 15:18:18 - ----------------------------------------------------------
330
+ 2013-09-06 15:18:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
331
+ 2013-09-06 15:18:18 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
332
+ 2013-09-06 15:18:20 - response return (code 00000)
333
+ 2013-09-06 15:18:20 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
334
+ 2013-09-06 15:18:20 - response return (code 00000)
335
+ 2013-09-06 15:18:20 - ----------------------------------------------------------
336
+ 2013-09-06 15:18:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
337
+ 2013-09-06 15:18:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
338
+ 2013-09-06 15:18:21 - response return (code 00000)
339
+ 2013-09-06 15:22:17 - ----------------------------------------------------------
340
+ 2013-09-06 15:22:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
341
+ 2013-09-06 15:22:17 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
342
+ 2013-09-06 15:22:18 - response return (code 00000)
343
+ 2013-09-06 15:22:18 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
344
+ 2013-09-06 15:22:19 - response return (code 00000)
345
+ 2013-09-06 15:22:19 - ----------------------------------------------------------
346
+ 2013-09-06 15:22:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
347
+ 2013-09-06 15:22:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
348
+ 2013-09-06 15:22:20 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-09.log ADDED
@@ -0,0 +1,350 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-09 8:15:48 - ----------------------------------------------------------
2
+ 2013-09-09 8:15:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-09-09 8:15:48 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
4
+ 2013-09-09 8:15:50 - response return (code 00000)
5
+ 2013-09-09 8:15:50 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
6
+ 2013-09-09 8:15:53 - response return (code 00000)
7
+ 2013-09-09 8:15:53 - ----------------------------------------------------------
8
+ 2013-09-09 8:15:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
9
+ 2013-09-09 8:15:53 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
10
+ 2013-09-09 8:15:53 - response return (code 00000)
11
+ 2013-09-09 8:31:09 - ----------------------------------------------------------
12
+ 2013-09-09 8:31:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
13
+ 2013-09-09 8:31:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
14
+ 2013-09-09 8:31:11 - response return (code 00000)
15
+ 2013-09-09 8:31:11 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
16
+ 2013-09-09 8:31:12 - response return (code 00000)
17
+ 2013-09-09 8:31:12 - ----------------------------------------------------------
18
+ 2013-09-09 8:31:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-09-09 8:31:12 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
20
+ 2013-09-09 8:31:12 - response return (code 00000)
21
+ 2013-09-09 8:39:13 - ----------------------------------------------------------
22
+ 2013-09-09 8:39:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-09-09 8:39:13 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
24
+ 2013-09-09 8:39:14 - response return (code 00000)
25
+ 2013-09-09 8:39:14 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
26
+ 2013-09-09 8:39:15 - response return (code 00000)
27
+ 2013-09-09 8:39:15 - ----------------------------------------------------------
28
+ 2013-09-09 8:39:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
29
+ 2013-09-09 8:39:15 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
30
+ 2013-09-09 8:39:15 - response return (code 00000)
31
+ 2013-09-09 8:53:17 - ----------------------------------------------------------
32
+ 2013-09-09 8:53:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
33
+ 2013-09-09 8:53:17 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
34
+ 2013-09-09 8:53:18 - response return (code 00000)
35
+ 2013-09-09 8:53:18 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
36
+ 2013-09-09 8:53:19 - response return (code 00000)
37
+ 2013-09-09 8:53:19 - ----------------------------------------------------------
38
+ 2013-09-09 8:53:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-09-09 8:53:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
40
+ 2013-09-09 8:53:19 - response return (code 00000)
41
+ 2013-09-09 9:12:12 - ----------------------------------------------------------
42
+ 2013-09-09 9:12:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-09-09 9:12:12 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
44
+ 2013-09-09 9:12:13 - response return (code 00000)
45
+ 2013-09-09 9:12:13 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
46
+ 2013-09-09 9:12:14 - response return (code 00000)
47
+ 2013-09-09 9:12:14 - ----------------------------------------------------------
48
+ 2013-09-09 9:12:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
49
+ 2013-09-09 9:12:14 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
50
+ 2013-09-09 9:12:14 - response return (code 00000)
51
+ 2013-09-09 9:13:13 - ----------------------------------------------------------
52
+ 2013-09-09 9:13:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
53
+ 2013-09-09 9:13:13 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
54
+ 2013-09-09 9:13:13 - response return (code 00000)
55
+ 2013-09-09 9:13:13 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
56
+ 2013-09-09 9:13:14 - response return (code 00000)
57
+ 2013-09-09 9:13:14 - ----------------------------------------------------------
58
+ 2013-09-09 9:13:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
59
+ 2013-09-09 9:13:14 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
60
+ 2013-09-09 9:13:14 - response return (code 00000)
61
+ 2013-09-09 9:16:41 - ----------------------------------------------------------
62
+ 2013-09-09 9:16:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-09-09 9:16:41 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
64
+ 2013-09-09 9:16:42 - response return (code 00000)
65
+ 2013-09-09 9:16:42 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
66
+ 2013-09-09 9:16:43 - response return (code 00000)
67
+ 2013-09-09 9:16:43 - ----------------------------------------------------------
68
+ 2013-09-09 9:16:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
69
+ 2013-09-09 9:16:43 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
70
+ 2013-09-09 9:16:45 - response return (code 00000)
71
+ 2013-09-09 9:17:26 - ----------------------------------------------------------
72
+ 2013-09-09 9:17:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
73
+ 2013-09-09 9:17:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
74
+ 2013-09-09 9:17:27 - response return (code 00000)
75
+ 2013-09-09 9:17:27 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
76
+ 2013-09-09 9:17:27 - response return (code 00000)
77
+ 2013-09-09 9:17:27 - ----------------------------------------------------------
78
+ 2013-09-09 9:17:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
79
+ 2013-09-09 9:17:27 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
80
+ 2013-09-09 9:17:28 - response return (code 00000)
81
+ 2013-09-09 9:43:17 - ----------------------------------------------------------
82
+ 2013-09-09 9:43:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
83
+ 2013-09-09 9:43:17 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
84
+ 2013-09-09 9:43:19 - response return (code 00000)
85
+ 2013-09-09 9:43:19 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
86
+ 2013-09-09 9:43:20 - response return (code 00000)
87
+ 2013-09-09 9:43:20 - ----------------------------------------------------------
88
+ 2013-09-09 9:43:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
89
+ 2013-09-09 9:43:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
90
+ 2013-09-09 9:43:21 - response return (code 00000)
91
+ 2013-09-09 9:44:09 - ----------------------------------------------------------
92
+ 2013-09-09 9:44:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
93
+ 2013-09-09 9:44:09 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
94
+ 2013-09-09 9:44:10 - response return (code 02500)
95
+ 2013-09-09 9:44:32 - ----------------------------------------------------------
96
+ 2013-09-09 9:44:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
97
+ 2013-09-09 9:44:32 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
98
+ 2013-09-09 9:44:33 - response return (code 00000)
99
+ 2013-09-09 9:44:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
100
+ 2013-09-09 9:44:34 - response return (code 00000)
101
+ 2013-09-09 9:56:01 - ----------------------------------------------------------
102
+ 2013-09-09 9:56:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
103
+ 2013-09-09 9:56:01 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
104
+ 2013-09-09 9:56:02 - response return (code 00000)
105
+ 2013-09-09 9:56:02 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
106
+ 2013-09-09 9:56:03 - response return (code 00000)
107
+ 2013-09-09 10:03:57 - ----------------------------------------------------------
108
+ 2013-09-09 10:03:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
109
+ 2013-09-09 10:03:57 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
110
+ 2013-09-09 10:03:58 - response return (code 00000)
111
+ 2013-09-09 10:03:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
112
+ 2013-09-09 10:03:59 - response return (code 00000)
113
+ 2013-09-09 10:18:14 - ----------------------------------------------------------
114
+ 2013-09-09 10:18:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
115
+ 2013-09-09 10:18:14 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
116
+ 2013-09-09 10:18:16 - response return (code 00000)
117
+ 2013-09-09 10:18:16 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
118
+ 2013-09-09 10:18:17 - response return (code 00000)
119
+ 2013-09-09 12:05:41 - ----------------------------------------------------------
120
+ 2013-09-09 12:05:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
121
+ 2013-09-09 12:05:41 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
122
+ 2013-09-09 12:05:42 - response return (code 02500)
123
+ 2013-09-09 12:09:03 - ----------------------------------------------------------
124
+ 2013-09-09 12:09:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
125
+ 2013-09-09 12:09:03 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
126
+ 2013-09-09 12:09:04 - response return (code 00000)
127
+ 2013-09-09 12:09:04 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
128
+ 2013-09-09 12:09:08 - response return (code 00000)
129
+ 2013-09-09 12:09:08 - ----------------------------------------------------------
130
+ 2013-09-09 12:09:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
131
+ 2013-09-09 12:09:08 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
132
+ 2013-09-09 12:09:10 - response return (code 00000)
133
+ 2013-09-09 12:50:50 - ----------------------------------------------------------
134
+ 2013-09-09 12:50:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
135
+ 2013-09-09 12:50:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
136
+ 2013-09-09 12:50:51 - response return (code 00000)
137
+ 2013-09-09 12:50:51 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
138
+ 2013-09-09 12:50:52 - response return (code 00000)
139
+ 2013-09-09 12:50:52 - ----------------------------------------------------------
140
+ 2013-09-09 12:50:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
141
+ 2013-09-09 12:50:52 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
142
+ 2013-09-09 12:50:53 - response return (code 00000)
143
+ 2013-09-09 12:53:00 - ----------------------------------------------------------
144
+ 2013-09-09 12:53:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
145
+ 2013-09-09 12:53:00 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
146
+ 2013-09-09 12:53:01 - response return (code 00000)
147
+ 2013-09-09 12:53:01 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
148
+ 2013-09-09 12:53:02 - response return (code 00000)
149
+ 2013-09-09 12:53:02 - ----------------------------------------------------------
150
+ 2013-09-09 12:53:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
151
+ 2013-09-09 12:53:02 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
152
+ 2013-09-09 12:53:03 - response return (code 00000)
153
+ 2013-09-09 12:56:41 - ----------------------------------------------------------
154
+ 2013-09-09 12:56:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
155
+ 2013-09-09 12:56:41 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
156
+ 2013-09-09 12:56:42 - response return (code 00000)
157
+ 2013-09-09 12:56:42 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
158
+ 2013-09-09 12:56:42 - response return (code 00000)
159
+ 2013-09-09 12:56:43 - ----------------------------------------------------------
160
+ 2013-09-09 12:56:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
161
+ 2013-09-09 12:56:43 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
162
+ 2013-09-09 12:56:44 - response return (code 00000)
163
+ 2013-09-09 12:59:10 - ----------------------------------------------------------
164
+ 2013-09-09 12:59:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
165
+ 2013-09-09 12:59:10 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
166
+ 2013-09-09 12:59:12 - response return (code 00000)
167
+ 2013-09-09 12:59:12 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
168
+ 2013-09-09 12:59:13 - response return (code 00000)
169
+ 2013-09-09 12:59:14 - ----------------------------------------------------------
170
+ 2013-09-09 12:59:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
171
+ 2013-09-09 12:59:14 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
172
+ 2013-09-09 12:59:14 - response return (code 00000)
173
+ 2013-09-09 13:06:40 - ----------------------------------------------------------
174
+ 2013-09-09 13:06:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
175
+ 2013-09-09 13:06:40 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
176
+ 2013-09-09 13:06:41 - response return (code 00000)
177
+ 2013-09-09 13:06:41 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
178
+ 2013-09-09 13:06:42 - response return (code 00000)
179
+ 2013-09-09 13:06:43 - ----------------------------------------------------------
180
+ 2013-09-09 13:06:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
181
+ 2013-09-09 13:06:43 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
182
+ 2013-09-09 13:06:44 - response return (code 00000)
183
+ 2013-09-09 13:09:02 - ----------------------------------------------------------
184
+ 2013-09-09 13:09:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
185
+ 2013-09-09 13:09:02 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
186
+ 2013-09-09 13:09:03 - response return (code 00000)
187
+ 2013-09-09 13:09:11 - ----------------------------------------------------------
188
+ 2013-09-09 13:09:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
189
+ 2013-09-09 13:09:11 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
190
+ 2013-09-09 13:09:12 - response return (code 00000)
191
+ 2013-09-09 13:17:00 - ----------------------------------------------------------
192
+ 2013-09-09 13:17:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
193
+ 2013-09-09 13:17:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
194
+ 2013-09-09 13:17:01 - response return (code 00000)
195
+ 2013-09-09 13:17:01 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
196
+ 2013-09-09 13:17:02 - response return (code 00000)
197
+ 2013-09-09 13:17:02 - ----------------------------------------------------------
198
+ 2013-09-09 13:17:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
199
+ 2013-09-09 13:17:02 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
200
+ 2013-09-09 13:17:02 - response return (code 00000)
201
+ 2013-09-09 13:27:06 - ----------------------------------------------------------
202
+ 2013-09-09 13:27:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
203
+ 2013-09-09 13:27:06 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
204
+ 2013-09-09 13:27:08 - response return (code 00000)
205
+ 2013-09-09 13:27:08 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
206
+ 2013-09-09 13:27:08 - response return (code 00000)
207
+ 2013-09-09 13:27:09 - ----------------------------------------------------------
208
+ 2013-09-09 13:27:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
209
+ 2013-09-09 13:27:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
210
+ 2013-09-09 13:27:10 - response return (code 00000)
211
+ 2013-09-09 13:27:10 - ----------------------------------------------------------
212
+ 2013-09-09 13:27:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
213
+ 2013-09-09 13:27:10 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
214
+ 2013-09-09 13:27:10 - response return (code 00000)
215
+ 2013-09-09 13:27:10 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
216
+ 2013-09-09 13:27:11 - response return (code 00000)
217
+ 2013-09-09 13:27:11 - ----------------------------------------------------------
218
+ 2013-09-09 13:27:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
219
+ 2013-09-09 13:27:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
220
+ 2013-09-09 13:27:12 - response return (code 00000)
221
+ 2013-09-09 13:29:28 - ----------------------------------------------------------
222
+ 2013-09-09 13:29:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
223
+ 2013-09-09 13:29:28 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
224
+ 2013-09-09 13:29:29 - response return (code 00000)
225
+ 2013-09-09 13:29:29 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
226
+ 2013-09-09 13:29:29 - response return (code 00000)
227
+ 2013-09-09 13:29:30 - ----------------------------------------------------------
228
+ 2013-09-09 13:29:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
229
+ 2013-09-09 13:29:30 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
230
+ 2013-09-09 13:29:30 - response return (code 00000)
231
+ 2013-09-09 13:30:11 - ----------------------------------------------------------
232
+ 2013-09-09 13:30:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
233
+ 2013-09-09 13:30:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
234
+ 2013-09-09 13:30:12 - response return (code 00000)
235
+ 2013-09-09 13:30:12 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
236
+ 2013-09-09 13:30:13 - response return (code 00000)
237
+ 2013-09-09 13:30:13 - ----------------------------------------------------------
238
+ 2013-09-09 13:30:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
239
+ 2013-09-09 13:30:13 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
240
+ 2013-09-09 13:30:13 - response return (code 00000)
241
+ 2013-09-09 13:34:32 - ----------------------------------------------------------
242
+ 2013-09-09 13:34:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
243
+ 2013-09-09 13:34:32 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
244
+ 2013-09-09 13:34:33 - response return (code 00000)
245
+ 2013-09-09 13:34:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
246
+ 2013-09-09 13:34:34 - response return (code 00000)
247
+ 2013-09-09 13:34:34 - ----------------------------------------------------------
248
+ 2013-09-09 13:34:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
249
+ 2013-09-09 13:34:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
250
+ 2013-09-09 13:34:35 - response return (code 00000)
251
+ 2013-09-09 13:34:35 - ----------------------------------------------------------
252
+ 2013-09-09 13:34:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
253
+ 2013-09-09 13:34:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
254
+ 2013-09-09 13:34:36 - response return (code 00000)
255
+ 2013-09-09 13:34:36 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
256
+ 2013-09-09 13:34:37 - response return (code 00000)
257
+ 2013-09-09 13:34:37 - ----------------------------------------------------------
258
+ 2013-09-09 13:34:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
259
+ 2013-09-09 13:34:37 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
260
+ 2013-09-09 13:34:38 - response return (code 00000)
261
+ 2013-09-09 13:42:39 - ----------------------------------------------------------
262
+ 2013-09-09 13:42:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
263
+ 2013-09-09 13:42:39 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
264
+ 2013-09-09 13:42:40 - response return (code 00000)
265
+ 2013-09-09 13:42:40 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
266
+ 2013-09-09 13:42:41 - response return (code 00000)
267
+ 2013-09-09 13:42:42 - ----------------------------------------------------------
268
+ 2013-09-09 13:42:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
269
+ 2013-09-09 13:42:42 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
270
+ 2013-09-09 13:42:43 - response return (code 00000)
271
+ 2013-09-09 13:43:33 - ----------------------------------------------------------
272
+ 2013-09-09 13:43:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
273
+ 2013-09-09 13:43:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
274
+ 2013-09-09 13:43:34 - response return (code 00000)
275
+ 2013-09-09 13:43:34 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
276
+ 2013-09-09 13:43:35 - response return (code 00000)
277
+ 2013-09-09 13:43:35 - ----------------------------------------------------------
278
+ 2013-09-09 13:43:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
279
+ 2013-09-09 13:43:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
280
+ 2013-09-09 13:43:35 - response return (code 00000)
281
+ 2013-09-09 13:44:54 - ----------------------------------------------------------
282
+ 2013-09-09 13:44:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
283
+ 2013-09-09 13:44:54 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
284
+ 2013-09-09 13:44:56 - response return (code 00000)
285
+ 2013-09-09 13:44:56 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
286
+ 2013-09-09 13:44:56 - response return (code 00000)
287
+ 2013-09-09 13:52:45 - ----------------------------------------------------------
288
+ 2013-09-09 13:52:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
289
+ 2013-09-09 13:52:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
290
+ 2013-09-09 13:52:47 - response return (code 00000)
291
+ 2013-09-09 13:52:47 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
292
+ 2013-09-09 13:52:48 - response return (code 00000)
293
+ 2013-09-09 13:52:48 - ----------------------------------------------------------
294
+ 2013-09-09 13:52:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
295
+ 2013-09-09 13:52:48 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
296
+ 2013-09-09 13:52:48 - response return (code 00000)
297
+ 2013-09-09 13:54:10 - ----------------------------------------------------------
298
+ 2013-09-09 13:54:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
299
+ 2013-09-09 13:54:10 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
300
+ 2013-09-09 13:54:11 - response return (code 00000)
301
+ 2013-09-09 13:54:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
302
+ 2013-09-09 13:54:12 - response return (code 00000)
303
+ 2013-09-09 13:56:01 - ----------------------------------------------------------
304
+ 2013-09-09 13:56:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
305
+ 2013-09-09 13:56:01 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
306
+ 2013-09-09 13:56:02 - response return (code 00000)
307
+ 2013-09-09 13:56:02 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
308
+ 2013-09-09 13:56:02 - response return (code 00000)
309
+ 2013-09-09 13:56:02 - ----------------------------------------------------------
310
+ 2013-09-09 13:56:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
311
+ 2013-09-09 13:56:02 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
312
+ 2013-09-09 13:56:02 - response return (code 00000)
313
+ 2013-09-09 15:10:59 - ----------------------------------------------------------
314
+ 2013-09-09 15:10:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
315
+ 2013-09-09 15:10:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
316
+ 2013-09-09 15:11:00 - response return (code 00000)
317
+ 2013-09-09 15:11:00 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
318
+ 2013-09-09 15:11:01 - response return (code 02110)
319
+ 2013-09-09 15:11:43 - ----------------------------------------------------------
320
+ 2013-09-09 15:11:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
321
+ 2013-09-09 15:11:43 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
322
+ 2013-09-09 15:11:44 - response return (code 02500)
323
+ 2013-09-09 15:12:21 - ----------------------------------------------------------
324
+ 2013-09-09 15:12:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
325
+ 2013-09-09 15:12:21 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
326
+ 2013-09-09 15:12:22 - response return (code 00000)
327
+ 2013-09-09 15:12:22 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
328
+ 2013-09-09 15:12:23 - response return (code 00000)
329
+ 2013-09-09 15:13:33 - ----------------------------------------------------------
330
+ 2013-09-09 15:13:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
331
+ 2013-09-09 15:13:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
332
+ 2013-09-09 15:13:33 - response return (code 00000)
333
+ 2013-09-09 15:13:33 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
334
+ 2013-09-09 15:13:34 - response return (code 00000)
335
+ 2013-09-09 15:13:34 - ----------------------------------------------------------
336
+ 2013-09-09 15:13:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
337
+ 2013-09-09 15:13:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
338
+ 2013-09-09 15:13:34 - response return (code 00000)
339
+ 2013-09-09 16:02:49 - ----------------------------------------------------------
340
+ 2013-09-09 16:02:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
341
+ 2013-09-09 16:02:49 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
342
+ 2013-09-09 16:02:51 - response return (code 00000)
343
+ 2013-09-09 16:02:51 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
344
+ 2013-09-09 16:02:53 - response return (code 02110)
345
+ 2013-09-09 16:28:21 - ----------------------------------------------------------
346
+ 2013-09-09 16:28:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
347
+ 2013-09-09 16:28:21 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
348
+ 2013-09-09 16:28:22 - response return (code 00000)
349
+ 2013-09-09 16:28:22 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
350
+ 2013-09-09 16:28:23 - response return (code 02110)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-10.log ADDED
@@ -0,0 +1,352 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-10 7:45:48 - ----------------------------------------------------------
2
+ 2013-09-10 7:45:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-09-10 7:45:48 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-09-10 7:45:50 - response return (code 02500)
5
+ 2013-09-10 7:49:01 - ----------------------------------------------------------
6
+ 2013-09-10 7:49:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-09-10 7:49:01 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
8
+ 2013-09-10 7:49:01 - response return (code 00000)
9
+ 2013-09-10 7:49:01 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
10
+ 2013-09-10 7:49:02 - response return (code 00000)
11
+ 2013-09-10 7:49:03 - ----------------------------------------------------------
12
+ 2013-09-10 7:49:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
13
+ 2013-09-10 7:49:03 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
14
+ 2013-09-10 7:49:04 - response return (code 00000)
15
+ 2013-09-10 7:52:41 - ----------------------------------------------------------
16
+ 2013-09-10 7:52:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
17
+ 2013-09-10 7:52:41 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
18
+ 2013-09-10 7:52:41 - response return (code 00000)
19
+ 2013-09-10 7:52:41 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
20
+ 2013-09-10 7:52:42 - response return (code 00000)
21
+ 2013-09-10 7:52:42 - ----------------------------------------------------------
22
+ 2013-09-10 7:52:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-09-10 7:52:42 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
24
+ 2013-09-10 7:52:42 - response return (code 00000)
25
+ 2013-09-10 9:32:09 - ----------------------------------------------------------
26
+ 2013-09-10 9:32:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-09-10 9:32:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
28
+ 2013-09-10 9:32:10 - response return (code 00000)
29
+ 2013-09-10 9:32:10 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
30
+ 2013-09-10 9:32:11 - response return (code 02110)
31
+ 2013-09-10 9:32:36 - ----------------------------------------------------------
32
+ 2013-09-10 9:32:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
33
+ 2013-09-10 9:32:36 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
34
+ 2013-09-10 9:32:37 - response return (code 02500)
35
+ 2013-09-10 9:32:55 - ----------------------------------------------------------
36
+ 2013-09-10 9:32:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
37
+ 2013-09-10 9:32:55 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
38
+ 2013-09-10 9:32:56 - response return (code 00000)
39
+ 2013-09-10 9:32:56 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
40
+ 2013-09-10 9:32:56 - response return (code 00000)
41
+ 2013-09-10 9:32:57 - ----------------------------------------------------------
42
+ 2013-09-10 9:32:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-09-10 9:32:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
44
+ 2013-09-10 9:32:58 - response return (code 00000)
45
+ 2013-09-10 9:38:50 - ----------------------------------------------------------
46
+ 2013-09-10 9:38:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
47
+ 2013-09-10 9:38:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
48
+ 2013-09-10 9:38:51 - response return (code 00000)
49
+ 2013-09-10 9:38:51 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
50
+ 2013-09-10 9:38:51 - response return (code 00000)
51
+ 2013-09-10 9:38:51 - ----------------------------------------------------------
52
+ 2013-09-10 9:38:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
53
+ 2013-09-10 9:38:51 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
54
+ 2013-09-10 9:38:52 - response return (code 00000)
55
+ 2013-09-10 12:46:22 - ----------------------------------------------------------
56
+ 2013-09-10 12:46:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
57
+ 2013-09-10 12:46:22 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
58
+ 2013-09-10 12:46:23 - response return (code 02500)
59
+ 2013-09-10 12:46:53 - ----------------------------------------------------------
60
+ 2013-09-10 12:46:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
61
+ 2013-09-10 12:46:53 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
62
+ 2013-09-10 12:46:54 - response return (code 00000)
63
+ 2013-09-10 12:46:54 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
64
+ 2013-09-10 12:46:55 - response return (code 00000)
65
+ 2013-09-10 12:46:56 - ----------------------------------------------------------
66
+ 2013-09-10 12:46:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
67
+ 2013-09-10 12:46:56 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
68
+ 2013-09-10 12:46:56 - response return (code 00000)
69
+ 2013-09-10 12:50:43 - ----------------------------------------------------------
70
+ 2013-09-10 12:50:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
71
+ 2013-09-10 12:50:43 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
72
+ 2013-09-10 12:50:44 - response return (code 00000)
73
+ 2013-09-10 12:50:44 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
74
+ 2013-09-10 12:50:45 - response return (code 00000)
75
+ 2013-09-10 12:50:45 - ----------------------------------------------------------
76
+ 2013-09-10 12:50:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
77
+ 2013-09-10 12:50:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
78
+ 2013-09-10 12:50:45 - response return (code 00000)
79
+ 2013-09-10 12:58:56 - ----------------------------------------------------------
80
+ 2013-09-10 12:58:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
81
+ 2013-09-10 12:58:56 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
82
+ 2013-09-10 12:58:57 - response return (code 00000)
83
+ 2013-09-10 12:58:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
84
+ 2013-09-10 12:58:58 - response return (code 00000)
85
+ 2013-09-10 12:58:59 - ----------------------------------------------------------
86
+ 2013-09-10 12:58:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
87
+ 2013-09-10 12:58:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
88
+ 2013-09-10 12:58:59 - response return (code 00000)
89
+ 2013-09-10 13:02:43 - ----------------------------------------------------------
90
+ 2013-09-10 13:02:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
91
+ 2013-09-10 13:02:43 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
92
+ 2013-09-10 13:02:44 - response return (code 00000)
93
+ 2013-09-10 13:02:44 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
94
+ 2013-09-10 13:02:44 - response return (code 00000)
95
+ 2013-09-10 13:02:44 - ----------------------------------------------------------
96
+ 2013-09-10 13:02:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
97
+ 2013-09-10 13:02:44 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
98
+ 2013-09-10 13:02:45 - response return (code 00000)
99
+ 2013-09-10 13:13:16 - ----------------------------------------------------------
100
+ 2013-09-10 13:13:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
101
+ 2013-09-10 13:13:16 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
102
+ 2013-09-10 13:13:17 - response return (code 00000)
103
+ 2013-09-10 13:13:17 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
104
+ 2013-09-10 13:13:18 - response return (code 00000)
105
+ 2013-09-10 13:13:19 - ----------------------------------------------------------
106
+ 2013-09-10 13:13:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
107
+ 2013-09-10 13:13:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
108
+ 2013-09-10 13:13:19 - response return (code 00000)
109
+ 2013-09-10 13:13:19 - ----------------------------------------------------------
110
+ 2013-09-10 13:13:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
111
+ 2013-09-10 13:13:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
112
+ 2013-09-10 13:13:19 - response return (code 00000)
113
+ 2013-09-10 13:13:19 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
114
+ 2013-09-10 13:13:20 - response return (code 00000)
115
+ 2013-09-10 13:13:20 - ----------------------------------------------------------
116
+ 2013-09-10 13:13:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
117
+ 2013-09-10 13:13:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
118
+ 2013-09-10 13:13:20 - response return (code 00000)
119
+ 2013-09-10 13:23:56 - ----------------------------------------------------------
120
+ 2013-09-10 13:23:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
121
+ 2013-09-10 13:23:56 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
122
+ 2013-09-10 13:23:59 - response return (code 00000)
123
+ 2013-09-10 13:23:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
124
+ 2013-09-10 13:24:01 - response return (code 00000)
125
+ 2013-09-10 13:24:02 - ----------------------------------------------------------
126
+ 2013-09-10 13:24:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
127
+ 2013-09-10 13:24:02 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
128
+ 2013-09-10 13:24:04 - response return (code 00000)
129
+ 2013-09-10 13:24:04 - ----------------------------------------------------------
130
+ 2013-09-10 13:24:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
131
+ 2013-09-10 13:24:04 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
132
+ 2013-09-10 13:24:05 - response return (code 00000)
133
+ 2013-09-10 13:24:05 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
134
+ 2013-09-10 13:24:06 - response return (code 00000)
135
+ 2013-09-10 13:24:06 - ----------------------------------------------------------
136
+ 2013-09-10 13:24:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
137
+ 2013-09-10 13:24:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
138
+ 2013-09-10 13:24:06 - response return (code 00000)
139
+ 2013-09-10 13:31:00 - ----------------------------------------------------------
140
+ 2013-09-10 13:31:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
141
+ 2013-09-10 13:31:00 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
142
+ 2013-09-10 13:31:01 - response return (code 00000)
143
+ 2013-09-10 13:31:01 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
144
+ 2013-09-10 13:31:02 - response return (code 00000)
145
+ 2013-09-10 13:31:03 - ----------------------------------------------------------
146
+ 2013-09-10 13:31:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
147
+ 2013-09-10 13:31:03 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
148
+ 2013-09-10 13:31:04 - response return (code 00000)
149
+ 2013-09-10 13:32:32 - ----------------------------------------------------------
150
+ 2013-09-10 13:32:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
151
+ 2013-09-10 13:32:32 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
152
+ 2013-09-10 13:32:34 - response return (code 00000)
153
+ 2013-09-10 13:32:34 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
154
+ 2013-09-10 13:32:34 - response return (code 00000)
155
+ 2013-09-10 13:32:34 - ----------------------------------------------------------
156
+ 2013-09-10 13:32:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
157
+ 2013-09-10 13:32:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
158
+ 2013-09-10 13:32:35 - response return (code 00000)
159
+ 2013-09-10 14:03:34 - ----------------------------------------------------------
160
+ 2013-09-10 14:03:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
161
+ 2013-09-10 14:03:34 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
162
+ 2013-09-10 14:03:36 - response return (code 00000)
163
+ 2013-09-10 14:03:36 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
164
+ 2013-09-10 14:03:37 - response return (code 00000)
165
+ 2013-09-10 14:03:38 - ----------------------------------------------------------
166
+ 2013-09-10 14:03:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
167
+ 2013-09-10 14:03:38 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
168
+ 2013-09-10 14:03:39 - response return (code 00000)
169
+ 2013-09-10 14:08:34 - ----------------------------------------------------------
170
+ 2013-09-10 14:08:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
171
+ 2013-09-10 14:08:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
172
+ 2013-09-10 14:08:35 - response return (code 00000)
173
+ 2013-09-10 14:08:35 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
174
+ 2013-09-10 14:08:35 - response return (code 00000)
175
+ 2013-09-10 14:10:51 - ----------------------------------------------------------
176
+ 2013-09-10 14:10:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
177
+ 2013-09-10 14:10:51 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
178
+ 2013-09-10 14:10:52 - response return (code 00000)
179
+ 2013-09-10 14:10:52 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
180
+ 2013-09-10 14:10:53 - response return (code 02110)
181
+ 2013-09-10 14:11:47 - ----------------------------------------------------------
182
+ 2013-09-10 14:11:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
183
+ 2013-09-10 14:11:47 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
184
+ 2013-09-10 14:11:48 - response return (code 00000)
185
+ 2013-09-10 14:11:48 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
186
+ 2013-09-10 14:11:49 - response return (code 00000)
187
+ 2013-09-10 14:11:49 - ----------------------------------------------------------
188
+ 2013-09-10 14:11:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
189
+ 2013-09-10 14:11:49 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
190
+ 2013-09-10 14:11:50 - response return (code 00000)
191
+ 2013-09-10 14:12:22 - ----------------------------------------------------------
192
+ 2013-09-10 14:12:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
193
+ 2013-09-10 14:12:22 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
194
+ 2013-09-10 14:12:23 - response return (code 00000)
195
+ 2013-09-10 14:12:23 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
196
+ 2013-09-10 14:12:25 - response return (code 02110)
197
+ 2013-09-10 14:12:58 - ----------------------------------------------------------
198
+ 2013-09-10 14:12:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
199
+ 2013-09-10 14:12:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
200
+ 2013-09-10 14:12:59 - response return (code 00000)
201
+ 2013-09-10 14:12:59 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
202
+ 2013-09-10 14:13:00 - response return (code 00000)
203
+ 2013-09-10 14:14:07 - ----------------------------------------------------------
204
+ 2013-09-10 14:14:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
205
+ 2013-09-10 14:14:07 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
206
+ 2013-09-10 14:14:08 - response return (code 00000)
207
+ 2013-09-10 14:14:08 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
208
+ 2013-09-10 14:14:09 - response return (code 00000)
209
+ 2013-09-10 14:14:09 - ----------------------------------------------------------
210
+ 2013-09-10 14:14:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
211
+ 2013-09-10 14:14:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
212
+ 2013-09-10 14:14:10 - response return (code 00000)
213
+ 2013-09-10 14:14:31 - ----------------------------------------------------------
214
+ 2013-09-10 14:14:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
215
+ 2013-09-10 14:14:31 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
216
+ 2013-09-10 14:14:33 - response return (code 00000)
217
+ 2013-09-10 14:14:33 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
218
+ 2013-09-10 14:14:34 - response return (code 02110)
219
+ 2013-09-10 14:15:45 - ----------------------------------------------------------
220
+ 2013-09-10 14:15:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
221
+ 2013-09-10 14:15:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
222
+ 2013-09-10 14:15:45 - response return (code 00000)
223
+ 2013-09-10 14:15:45 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
224
+ 2013-09-10 14:15:46 - response return (code 00000)
225
+ 2013-09-10 14:15:46 - ----------------------------------------------------------
226
+ 2013-09-10 14:15:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
227
+ 2013-09-10 14:15:46 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
228
+ 2013-09-10 14:15:47 - response return (code 00000)
229
+ 2013-09-10 14:21:36 - ----------------------------------------------------------
230
+ 2013-09-10 14:21:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
231
+ 2013-09-10 14:21:36 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
232
+ 2013-09-10 14:21:37 - response return (code 00000)
233
+ 2013-09-10 14:21:37 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
234
+ 2013-09-10 14:21:38 - response return (code 00000)
235
+ 2013-09-10 14:21:39 - ----------------------------------------------------------
236
+ 2013-09-10 14:21:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
237
+ 2013-09-10 14:21:39 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
238
+ 2013-09-10 14:21:39 - response return (code 00000)
239
+ 2013-09-10 14:22:22 - ----------------------------------------------------------
240
+ 2013-09-10 14:22:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
241
+ 2013-09-10 14:22:22 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
242
+ 2013-09-10 14:22:22 - response return (code 00000)
243
+ 2013-09-10 14:22:22 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
244
+ 2013-09-10 14:22:23 - response return (code 00000)
245
+ 2013-09-10 14:24:38 - ----------------------------------------------------------
246
+ 2013-09-10 14:24:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
247
+ 2013-09-10 14:24:38 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
248
+ 2013-09-10 14:24:39 - response return (code 00000)
249
+ 2013-09-10 14:24:39 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
250
+ 2013-09-10 14:24:39 - response return (code 00000)
251
+ 2013-09-10 14:24:40 - ----------------------------------------------------------
252
+ 2013-09-10 14:24:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
253
+ 2013-09-10 14:24:40 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
254
+ 2013-09-10 14:24:40 - response return (code 00000)
255
+ 2013-09-10 14:25:19 - ----------------------------------------------------------
256
+ 2013-09-10 14:25:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
257
+ 2013-09-10 14:25:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
258
+ 2013-09-10 14:25:22 - response return (code 00000)
259
+ 2013-09-10 14:25:22 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
260
+ 2013-09-10 14:25:23 - response return (code 00000)
261
+ 2013-09-10 14:27:55 - ----------------------------------------------------------
262
+ 2013-09-10 14:27:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
263
+ 2013-09-10 14:27:55 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
264
+ 2013-09-10 14:27:57 - response return (code 00000)
265
+ 2013-09-10 14:27:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
266
+ 2013-09-10 14:27:57 - response return (code 00000)
267
+ 2013-09-10 14:27:59 - ----------------------------------------------------------
268
+ 2013-09-10 14:27:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
269
+ 2013-09-10 14:27:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
270
+ 2013-09-10 14:27:59 - response return (code 00000)
271
+ 2013-09-10 14:28:33 - ----------------------------------------------------------
272
+ 2013-09-10 14:28:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
273
+ 2013-09-10 14:28:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
274
+ 2013-09-10 14:28:33 - response return (code 00000)
275
+ 2013-09-10 14:28:33 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
276
+ 2013-09-10 14:28:34 - response return (code 00000)
277
+ 2013-09-10 14:33:10 - ----------------------------------------------------------
278
+ 2013-09-10 14:33:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
279
+ 2013-09-10 14:33:10 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
280
+ 2013-09-10 14:33:11 - response return (code 00000)
281
+ 2013-09-10 14:33:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
282
+ 2013-09-10 14:33:12 - response return (code 00000)
283
+ 2013-09-10 14:33:12 - ----------------------------------------------------------
284
+ 2013-09-10 14:33:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
285
+ 2013-09-10 14:33:12 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
286
+ 2013-09-10 14:33:13 - response return (code 00000)
287
+ 2013-09-10 14:36:41 - ----------------------------------------------------------
288
+ 2013-09-10 14:36:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
289
+ 2013-09-10 14:36:41 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
290
+ 2013-09-10 14:36:43 - response return (code 00000)
291
+ 2013-09-10 14:36:43 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
292
+ 2013-09-10 14:36:44 - response return (code 00000)
293
+ 2013-09-10 14:36:45 - ----------------------------------------------------------
294
+ 2013-09-10 14:36:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
295
+ 2013-09-10 14:36:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
296
+ 2013-09-10 14:36:45 - response return (code 00000)
297
+ 2013-09-10 14:36:58 - ----------------------------------------------------------
298
+ 2013-09-10 14:36:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
299
+ 2013-09-10 14:36:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
300
+ 2013-09-10 14:36:58 - response return (code 00000)
301
+ 2013-09-10 14:36:58 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
302
+ 2013-09-10 14:36:58 - response return (code 00000)
303
+ 2013-09-10 14:36:58 - ----------------------------------------------------------
304
+ 2013-09-10 14:36:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
305
+ 2013-09-10 14:36:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
306
+ 2013-09-10 14:36:59 - response return (code 00000)
307
+ 2013-09-10 14:49:35 - ----------------------------------------------------------
308
+ 2013-09-10 14:49:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
309
+ 2013-09-10 14:49:35 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
310
+ 2013-09-10 14:49:36 - response return (code 00000)
311
+ 2013-09-10 14:49:36 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
312
+ 2013-09-10 14:49:37 - response return (code 00000)
313
+ 2013-09-10 14:49:38 - ----------------------------------------------------------
314
+ 2013-09-10 14:49:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
315
+ 2013-09-10 14:49:38 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
316
+ 2013-09-10 14:49:39 - response return (code 00000)
317
+ 2013-09-10 14:51:56 - ----------------------------------------------------------
318
+ 2013-09-10 14:51:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
319
+ 2013-09-10 14:51:56 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
320
+ 2013-09-10 14:51:57 - response return (code 00000)
321
+ 2013-09-10 14:51:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
322
+ 2013-09-10 14:51:57 - response return (code 00000)
323
+ 2013-09-10 14:52:49 - ----------------------------------------------------------
324
+ 2013-09-10 14:52:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
325
+ 2013-09-10 14:52:49 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
326
+ 2013-09-10 14:52:50 - response return (code 00000)
327
+ 2013-09-10 14:52:50 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
328
+ 2013-09-10 14:52:50 - response return (code 00000)
329
+ 2013-09-10 14:52:50 - ----------------------------------------------------------
330
+ 2013-09-10 14:52:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
331
+ 2013-09-10 14:52:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
332
+ 2013-09-10 14:52:51 - response return (code 00000)
333
+ 2013-09-10 15:14:53 - ----------------------------------------------------------
334
+ 2013-09-10 15:14:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
335
+ 2013-09-10 15:14:53 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
336
+ 2013-09-10 15:14:54 - response return (code 00000)
337
+ 2013-09-10 15:14:54 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
338
+ 2013-09-10 15:14:56 - response return (code 00000)
339
+ 2013-09-10 15:14:56 - ----------------------------------------------------------
340
+ 2013-09-10 15:14:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
341
+ 2013-09-10 15:14:56 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
342
+ 2013-09-10 15:14:57 - response return (code 00000)
343
+ 2013-09-10 15:15:57 - ----------------------------------------------------------
344
+ 2013-09-10 15:15:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
345
+ 2013-09-10 15:15:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
346
+ 2013-09-10 15:15:58 - response return (code 00000)
347
+ 2013-09-10 15:15:58 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
348
+ 2013-09-10 15:15:59 - response return (code 00000)
349
+ 2013-09-10 15:15:59 - ----------------------------------------------------------
350
+ 2013-09-10 15:15:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
351
+ 2013-09-10 15:15:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
352
+ 2013-09-10 15:16:00 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-11.log ADDED
@@ -0,0 +1,264 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-11 8:09:45 - ----------------------------------------------------------
2
+ 2013-09-11 8:09:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-09-11 8:09:45 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-09-11 8:09:46 - response return (code 02500)
5
+ 2013-09-11 8:09:59 - ----------------------------------------------------------
6
+ 2013-09-11 8:09:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-09-11 8:09:59 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
8
+ 2013-09-11 8:10:00 - response return (code 00000)
9
+ 2013-09-11 8:10:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
10
+ 2013-09-11 8:10:01 - response return (code 00000)
11
+ 2013-09-11 8:10:02 - ----------------------------------------------------------
12
+ 2013-09-11 8:10:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
13
+ 2013-09-11 8:10:02 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
14
+ 2013-09-11 8:10:02 - response return (code 00000)
15
+ 2013-09-11 8:10:31 - ----------------------------------------------------------
16
+ 2013-09-11 8:10:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
17
+ 2013-09-11 8:10:31 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
18
+ 2013-09-11 8:10:32 - response return (code 00000)
19
+ 2013-09-11 8:10:32 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
20
+ 2013-09-11 8:10:32 - response return (code 00000)
21
+ 2013-09-11 8:10:32 - ----------------------------------------------------------
22
+ 2013-09-11 8:10:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-09-11 8:10:32 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
24
+ 2013-09-11 8:10:33 - response return (code 00000)
25
+ 2013-09-11 8:12:57 - ----------------------------------------------------------
26
+ 2013-09-11 8:12:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-09-11 8:12:57 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
28
+ 2013-09-11 8:12:58 - response return (code 00000)
29
+ 2013-09-11 8:12:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
30
+ 2013-09-11 8:12:59 - response return (code 00000)
31
+ 2013-09-11 8:12:59 - ----------------------------------------------------------
32
+ 2013-09-11 8:12:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
33
+ 2013-09-11 8:12:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
34
+ 2013-09-11 8:13:00 - response return (code 00000)
35
+ 2013-09-11 8:13:21 - ----------------------------------------------------------
36
+ 2013-09-11 8:13:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
37
+ 2013-09-11 8:13:21 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
38
+ 2013-09-11 8:13:22 - response return (code 00000)
39
+ 2013-09-11 8:13:22 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
40
+ 2013-09-11 8:13:22 - response return (code 00000)
41
+ 2013-09-11 8:13:22 - ----------------------------------------------------------
42
+ 2013-09-11 8:13:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-09-11 8:13:22 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
44
+ 2013-09-11 8:13:23 - response return (code 00000)
45
+ 2013-09-11 8:21:28 - ----------------------------------------------------------
46
+ 2013-09-11 8:21:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
47
+ 2013-09-11 8:21:28 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
48
+ 2013-09-11 8:21:29 - response return (code 00000)
49
+ 2013-09-11 8:21:29 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
50
+ 2013-09-11 8:21:29 - response return (code 00000)
51
+ 2013-09-11 8:21:30 - ----------------------------------------------------------
52
+ 2013-09-11 8:21:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
53
+ 2013-09-11 8:21:30 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
54
+ 2013-09-11 8:21:31 - response return (code 00000)
55
+ 2013-09-11 8:21:47 - ----------------------------------------------------------
56
+ 2013-09-11 8:21:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
57
+ 2013-09-11 8:21:47 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
58
+ 2013-09-11 8:21:48 - response return (code 00000)
59
+ 2013-09-11 8:21:48 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
60
+ 2013-09-11 8:21:49 - response return (code 00000)
61
+ 2013-09-11 8:21:49 - ----------------------------------------------------------
62
+ 2013-09-11 8:21:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-09-11 8:21:49 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
64
+ 2013-09-11 8:21:50 - response return (code 00000)
65
+ 2013-09-11 8:24:37 - ----------------------------------------------------------
66
+ 2013-09-11 8:24:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
67
+ 2013-09-11 8:24:37 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
68
+ 2013-09-11 8:24:38 - response return (code 00000)
69
+ 2013-09-11 8:24:38 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
70
+ 2013-09-11 8:24:38 - response return (code 00000)
71
+ 2013-09-11 8:24:39 - ----------------------------------------------------------
72
+ 2013-09-11 8:24:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
73
+ 2013-09-11 8:24:39 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
74
+ 2013-09-11 8:24:39 - response return (code 00000)
75
+ 2013-09-11 8:24:58 - ----------------------------------------------------------
76
+ 2013-09-11 8:24:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
77
+ 2013-09-11 8:24:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
78
+ 2013-09-11 8:24:59 - response return (code 00000)
79
+ 2013-09-11 8:24:59 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
80
+ 2013-09-11 8:24:59 - response return (code 00000)
81
+ 2013-09-11 8:24:59 - ----------------------------------------------------------
82
+ 2013-09-11 8:24:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
83
+ 2013-09-11 8:24:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
84
+ 2013-09-11 8:25:00 - response return (code 00000)
85
+ 2013-09-11 8:28:20 - ----------------------------------------------------------
86
+ 2013-09-11 8:28:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
87
+ 2013-09-11 8:28:20 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
88
+ 2013-09-11 8:28:21 - response return (code 00000)
89
+ 2013-09-11 8:28:21 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
90
+ 2013-09-11 8:28:22 - response return (code 00000)
91
+ 2013-09-11 8:28:23 - ----------------------------------------------------------
92
+ 2013-09-11 8:28:23 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
93
+ 2013-09-11 8:28:23 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
94
+ 2013-09-11 8:28:24 - response return (code 00000)
95
+ 2013-09-11 8:28:44 - ----------------------------------------------------------
96
+ 2013-09-11 8:28:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
97
+ 2013-09-11 8:28:44 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
98
+ 2013-09-11 8:28:45 - response return (code 00000)
99
+ 2013-09-11 8:28:45 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
100
+ 2013-09-11 8:28:45 - response return (code 00000)
101
+ 2013-09-11 8:28:45 - ----------------------------------------------------------
102
+ 2013-09-11 8:28:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
103
+ 2013-09-11 8:28:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
104
+ 2013-09-11 8:28:46 - response return (code 00000)
105
+ 2013-09-11 8:31:35 - ----------------------------------------------------------
106
+ 2013-09-11 8:31:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
107
+ 2013-09-11 8:31:35 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
108
+ 2013-09-11 8:31:36 - response return (code 00000)
109
+ 2013-09-11 8:31:36 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
110
+ 2013-09-11 8:31:37 - response return (code 00000)
111
+ 2013-09-11 8:31:37 - ----------------------------------------------------------
112
+ 2013-09-11 8:31:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
113
+ 2013-09-11 8:31:37 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
114
+ 2013-09-11 8:31:38 - response return (code 00000)
115
+ 2013-09-11 8:31:38 - ----------------------------------------------------------
116
+ 2013-09-11 8:31:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
117
+ 2013-09-11 8:31:38 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
118
+ 2013-09-11 8:31:38 - response return (code 00000)
119
+ 2013-09-11 8:31:38 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
120
+ 2013-09-11 8:31:39 - response return (code 00000)
121
+ 2013-09-11 8:31:39 - ----------------------------------------------------------
122
+ 2013-09-11 8:31:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
123
+ 2013-09-11 8:31:39 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
124
+ 2013-09-11 8:31:39 - response return (code 00000)
125
+ 2013-09-11 8:35:14 - ----------------------------------------------------------
126
+ 2013-09-11 8:35:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
127
+ 2013-09-11 8:35:14 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
128
+ 2013-09-11 8:35:16 - response return (code 00000)
129
+ 2013-09-11 8:35:16 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
130
+ 2013-09-11 8:35:17 - response return (code 00000)
131
+ 2013-09-11 8:35:18 - ----------------------------------------------------------
132
+ 2013-09-11 8:35:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
133
+ 2013-09-11 8:35:18 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
134
+ 2013-09-11 8:35:18 - response return (code 00000)
135
+ 2013-09-11 8:42:34 - ----------------------------------------------------------
136
+ 2013-09-11 8:42:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
137
+ 2013-09-11 8:42:34 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
138
+ 2013-09-11 8:42:35 - response return (code 00000)
139
+ 2013-09-11 8:42:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
140
+ 2013-09-11 8:42:36 - response return (code 00000)
141
+ 2013-09-11 8:42:37 - ----------------------------------------------------------
142
+ 2013-09-11 8:42:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
143
+ 2013-09-11 8:42:37 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
144
+ 2013-09-11 8:42:38 - response return (code 00000)
145
+ 2013-09-11 8:42:54 - ----------------------------------------------------------
146
+ 2013-09-11 8:42:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
147
+ 2013-09-11 8:42:54 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
148
+ 2013-09-11 8:42:55 - response return (code 00000)
149
+ 2013-09-11 8:42:55 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
150
+ 2013-09-11 8:42:56 - response return (code 00000)
151
+ 2013-09-11 8:42:56 - ----------------------------------------------------------
152
+ 2013-09-11 8:42:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
153
+ 2013-09-11 8:42:56 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
154
+ 2013-09-11 8:42:56 - response return (code 00000)
155
+ 2013-09-11 8:56:18 - ----------------------------------------------------------
156
+ 2013-09-11 8:56:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
157
+ 2013-09-11 8:56:18 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
158
+ 2013-09-11 8:56:19 - response return (code 00000)
159
+ 2013-09-11 8:56:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
160
+ 2013-09-11 8:56:21 - response return (code 00000)
161
+ 2013-09-11 8:56:22 - ----------------------------------------------------------
162
+ 2013-09-11 8:56:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
163
+ 2013-09-11 8:56:22 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
164
+ 2013-09-11 8:56:22 - response return (code 00000)
165
+ 2013-09-11 8:56:41 - ----------------------------------------------------------
166
+ 2013-09-11 8:56:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
167
+ 2013-09-11 8:56:41 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
168
+ 2013-09-11 8:56:42 - response return (code 00000)
169
+ 2013-09-11 8:56:42 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
170
+ 2013-09-11 8:56:42 - response return (code 00000)
171
+ 2013-09-11 8:56:42 - ----------------------------------------------------------
172
+ 2013-09-11 8:56:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
173
+ 2013-09-11 8:56:42 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
174
+ 2013-09-11 8:56:43 - response return (code 00000)
175
+ 2013-09-11 10:11:57 - ----------------------------------------------------------
176
+ 2013-09-11 10:11:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
177
+ 2013-09-11 10:11:57 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
178
+ 2013-09-11 10:11:58 - response return (code 00000)
179
+ 2013-09-11 10:11:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
180
+ 2013-09-11 10:11:59 - response return (code 00000)
181
+ 2013-09-11 10:12:00 - ----------------------------------------------------------
182
+ 2013-09-11 10:12:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
183
+ 2013-09-11 10:12:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
184
+ 2013-09-11 10:12:00 - response return (code 00000)
185
+ 2013-09-11 10:12:24 - ----------------------------------------------------------
186
+ 2013-09-11 10:12:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
187
+ 2013-09-11 10:12:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
188
+ 2013-09-11 10:12:24 - response return (code 00000)
189
+ 2013-09-11 10:12:24 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
190
+ 2013-09-11 10:12:25 - response return (code 00000)
191
+ 2013-09-11 10:12:25 - ----------------------------------------------------------
192
+ 2013-09-11 10:12:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
193
+ 2013-09-11 10:12:25 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
194
+ 2013-09-11 10:12:25 - response return (code 00000)
195
+ 2013-09-11 10:15:17 - ----------------------------------------------------------
196
+ 2013-09-11 10:15:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
197
+ 2013-09-11 10:15:17 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
198
+ 2013-09-11 10:15:18 - response return (code 00000)
199
+ 2013-09-11 10:15:18 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
200
+ 2013-09-11 10:15:19 - response return (code 00000)
201
+ 2013-09-11 10:15:20 - ----------------------------------------------------------
202
+ 2013-09-11 10:15:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
203
+ 2013-09-11 10:15:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
204
+ 2013-09-11 10:15:20 - response return (code 00000)
205
+ 2013-09-11 10:15:42 - ----------------------------------------------------------
206
+ 2013-09-11 10:15:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
207
+ 2013-09-11 10:15:42 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
208
+ 2013-09-11 10:15:43 - response return (code 00000)
209
+ 2013-09-11 10:15:43 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
210
+ 2013-09-11 10:15:44 - response return (code 00000)
211
+ 2013-09-11 10:15:44 - ----------------------------------------------------------
212
+ 2013-09-11 10:15:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
213
+ 2013-09-11 10:15:44 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
214
+ 2013-09-11 10:15:44 - response return (code 00000)
215
+ 2013-09-11 10:17:57 - ----------------------------------------------------------
216
+ 2013-09-11 10:17:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
217
+ 2013-09-11 10:17:57 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
218
+ 2013-09-11 10:17:58 - response return (code 00000)
219
+ 2013-09-11 10:17:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
220
+ 2013-09-11 10:17:59 - response return (code 00000)
221
+ 2013-09-11 10:18:00 - ----------------------------------------------------------
222
+ 2013-09-11 10:18:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
223
+ 2013-09-11 10:18:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
224
+ 2013-09-11 10:18:01 - response return (code 00000)
225
+ 2013-09-11 10:27:03 - ----------------------------------------------------------
226
+ 2013-09-11 10:27:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
227
+ 2013-09-11 10:27:03 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
228
+ 2013-09-11 10:27:04 - response return (code 00000)
229
+ 2013-09-11 10:27:04 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
230
+ 2013-09-11 10:27:05 - response return (code 00000)
231
+ 2013-09-11 10:27:06 - ----------------------------------------------------------
232
+ 2013-09-11 10:27:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
233
+ 2013-09-11 10:27:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
234
+ 2013-09-11 10:27:06 - response return (code 00000)
235
+ 2013-09-11 10:27:24 - ----------------------------------------------------------
236
+ 2013-09-11 10:27:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
237
+ 2013-09-11 10:27:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
238
+ 2013-09-11 10:27:25 - response return (code 00000)
239
+ 2013-09-11 10:27:25 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
240
+ 2013-09-11 10:27:25 - response return (code 00000)
241
+ 2013-09-11 10:27:25 - ----------------------------------------------------------
242
+ 2013-09-11 10:27:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
243
+ 2013-09-11 10:27:25 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
244
+ 2013-09-11 10:27:26 - response return (code 00000)
245
+ 2013-09-11 16:04:05 - ----------------------------------------------------------
246
+ 2013-09-11 16:04:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
247
+ 2013-09-11 16:04:05 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
248
+ 2013-09-11 16:04:06 - response return (code 00000)
249
+ 2013-09-11 16:04:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
250
+ 2013-09-11 16:04:07 - response return (code 00000)
251
+ 2013-09-11 16:04:09 - ----------------------------------------------------------
252
+ 2013-09-11 16:04:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
253
+ 2013-09-11 16:04:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
254
+ 2013-09-11 16:04:09 - response return (code 00000)
255
+ 2013-09-11 16:09:46 - ----------------------------------------------------------
256
+ 2013-09-11 16:09:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
257
+ 2013-09-11 16:09:46 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
258
+ 2013-09-11 16:09:47 - response return (code 00000)
259
+ 2013-09-11 16:09:47 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
260
+ 2013-09-11 16:09:48 - response return (code 00000)
261
+ 2013-09-11 16:09:48 - ----------------------------------------------------------
262
+ 2013-09-11 16:09:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
263
+ 2013-09-11 16:09:48 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
264
+ 2013-09-11 16:09:49 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-12.log ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-12 7:43:40 - ----------------------------------------------------------
2
+ 2013-09-12 7:43:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-09-12 7:43:40 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
4
+ 2013-09-12 7:43:41 - response return (code 00000)
5
+ 2013-09-12 7:43:41 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
6
+ 2013-09-12 7:43:43 - response return (code 00000)
7
+ 2013-09-12 7:43:43 - ----------------------------------------------------------
8
+ 2013-09-12 7:43:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
9
+ 2013-09-12 7:43:43 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
10
+ 2013-09-12 7:43:45 - response return (code 00000)
11
+ 2013-09-12 7:47:48 - ----------------------------------------------------------
12
+ 2013-09-12 7:47:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
13
+ 2013-09-12 7:47:48 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
14
+ 2013-09-12 7:47:49 - response return (code 00000)
15
+ 2013-09-12 7:47:49 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
16
+ 2013-09-12 7:47:50 - response return (code 00000)
17
+ 2013-09-12 7:47:50 - ----------------------------------------------------------
18
+ 2013-09-12 7:47:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-09-12 7:47:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
20
+ 2013-09-12 7:47:51 - response return (code 00000)
21
+ 2013-09-12 8:36:53 - ----------------------------------------------------------
22
+ 2013-09-12 8:36:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-09-12 8:36:53 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
24
+ 2013-09-12 8:36:55 - response return (code 00000)
25
+ 2013-09-12 8:36:55 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
26
+ 2013-09-12 8:36:57 - response return (code 00000)
27
+ 2013-09-12 8:36:57 - ----------------------------------------------------------
28
+ 2013-09-12 8:36:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
29
+ 2013-09-12 8:36:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
30
+ 2013-09-12 8:36:58 - response return (code 00000)
31
+ 2013-09-12 8:39:56 - ----------------------------------------------------------
32
+ 2013-09-12 8:39:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
33
+ 2013-09-12 8:39:56 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
34
+ 2013-09-12 8:39:57 - response return (code 00000)
35
+ 2013-09-12 8:39:57 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
36
+ 2013-09-12 8:39:58 - response return (code 00000)
37
+ 2013-09-12 8:39:58 - ----------------------------------------------------------
38
+ 2013-09-12 8:39:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-09-12 8:39:58 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
40
+ 2013-09-12 8:39:59 - response return (code 00000)
41
+ 2013-09-12 8:41:34 - ----------------------------------------------------------
42
+ 2013-09-12 8:41:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-09-12 8:41:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
44
+ 2013-09-12 8:41:36 - response return (code 00000)
45
+ 2013-09-12 8:41:36 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
46
+ 2013-09-12 8:41:37 - response return (code 00000)
47
+ 2013-09-12 12:38:53 - ----------------------------------------------------------
48
+ 2013-09-12 12:38:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
49
+ 2013-09-12 12:38:53 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
50
+ 2013-09-12 12:38:55 - response return (code 00000)
51
+ 2013-09-12 12:38:55 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
52
+ 2013-09-12 12:38:56 - response return (code 00000)
53
+ 2013-09-12 12:50:25 - ----------------------------------------------------------
54
+ 2013-09-12 12:50:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
55
+ 2013-09-12 12:50:25 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
56
+ 2013-09-12 12:50:26 - response return (code 00000)
57
+ 2013-09-12 12:50:26 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
58
+ 2013-09-12 12:50:27 - response return (code 00000)
59
+ 2013-09-12 12:57:59 - ----------------------------------------------------------
60
+ 2013-09-12 12:57:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
61
+ 2013-09-12 12:57:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
62
+ 2013-09-12 12:58:00 - response return (code 00000)
63
+ 2013-09-12 12:58:00 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
64
+ 2013-09-12 12:58:01 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-13.log ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-13 8:42:57 - ----------------------------------------------------------
2
+ 2013-09-13 8:42:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-09-13 8:42:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
4
+ 2013-09-13 8:42:58 - response return (code 00000)
5
+ 2013-09-13 8:42:58 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
6
+ 2013-09-13 8:43:00 - response return (code 00000)
7
+ 2013-09-13 8:43:00 - ----------------------------------------------------------
8
+ 2013-09-13 8:43:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
9
+ 2013-09-13 8:43:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
10
+ 2013-09-13 8:43:01 - response return (code 00000)
11
+ 2013-09-13 8:46:08 - ----------------------------------------------------------
12
+ 2013-09-13 8:46:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
13
+ 2013-09-13 8:46:08 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
14
+ 2013-09-13 8:46:09 - response return (code 00000)
15
+ 2013-09-13 8:46:09 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
16
+ 2013-09-13 8:46:13 - response return (code 00000)
17
+ 2013-09-13 8:49:00 - ----------------------------------------------------------
18
+ 2013-09-13 8:49:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-09-13 8:49:00 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
20
+ 2013-09-13 8:49:01 - response return (code 00000)
21
+ 2013-09-13 8:49:01 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
22
+ 2013-09-13 8:49:02 - response return (code 00000)
23
+ 2013-09-13 8:50:09 - ----------------------------------------------------------
24
+ 2013-09-13 8:50:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
25
+ 2013-09-13 8:50:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
26
+ 2013-09-13 8:50:12 - response return (code 00000)
27
+ 2013-09-13 8:50:12 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
28
+ 2013-09-13 8:50:13 - response return (code 00000)
29
+ 2013-09-13 8:58:14 - ----------------------------------------------------------
30
+ 2013-09-13 8:58:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-09-13 8:58:14 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
32
+ 2013-09-13 8:58:16 - response return (code 00000)
33
+ 2013-09-13 8:58:17 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
34
+ 2013-09-13 8:58:18 - response return (code 00000)
35
+ 2013-09-13 9:02:30 - ----------------------------------------------------------
36
+ 2013-09-13 9:02:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
37
+ 2013-09-13 9:02:30 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
38
+ 2013-09-13 9:02:32 - response return (code 00000)
39
+ 2013-09-13 9:02:32 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
40
+ 2013-09-13 9:02:33 - response return (code 00000)
41
+ 2013-09-13 9:02:33 - ----------------------------------------------------------
42
+ 2013-09-13 9:02:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-09-13 9:02:33 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
44
+ 2013-09-13 9:02:34 - response return (code 00000)
45
+ 2013-09-13 9:16:35 - ----------------------------------------------------------
46
+ 2013-09-13 9:16:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
47
+ 2013-09-13 9:16:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
48
+ 2013-09-13 9:16:35 - response return (code 00000)
49
+ 2013-09-13 9:16:35 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
50
+ 2013-09-13 9:16:36 - response return (code 00000)
51
+ 2013-09-13 9:17:55 - ----------------------------------------------------------
52
+ 2013-09-13 9:17:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
53
+ 2013-09-13 9:17:55 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
54
+ 2013-09-13 9:17:56 - response return (code 00000)
55
+ 2013-09-13 9:17:56 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
56
+ 2013-09-13 9:17:57 - response return (code 00000)
57
+ 2013-09-13 9:17:57 - ----------------------------------------------------------
58
+ 2013-09-13 9:17:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
59
+ 2013-09-13 9:17:57 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
60
+ 2013-09-13 9:17:58 - response return (code 00000)
61
+ 2013-09-13 9:20:21 - ----------------------------------------------------------
62
+ 2013-09-13 9:20:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-09-13 9:20:21 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
64
+ 2013-09-13 9:20:22 - response return (code 00000)
65
+ 2013-09-13 9:20:22 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
66
+ 2013-09-13 9:20:23 - response return (code 00000)
67
+ 2013-09-13 9:21:05 - ----------------------------------------------------------
68
+ 2013-09-13 9:21:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
69
+ 2013-09-13 9:21:05 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
70
+ 2013-09-13 9:21:06 - response return (code 00000)
71
+ 2013-09-13 9:21:06 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
72
+ 2013-09-13 9:21:06 - response return (code 00000)
73
+ 2013-09-13 9:21:06 - ----------------------------------------------------------
74
+ 2013-09-13 9:21:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
75
+ 2013-09-13 9:21:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
76
+ 2013-09-13 9:21:07 - response return (code 00000)
77
+ 2013-09-13 9:22:35 - ----------------------------------------------------------
78
+ 2013-09-13 9:22:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
79
+ 2013-09-13 9:22:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
80
+ 2013-09-13 9:22:36 - response return (code 00000)
81
+ 2013-09-13 9:22:36 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
82
+ 2013-09-13 9:22:36 - response return (code 00000)
83
+ 2013-09-13 9:25:36 - ----------------------------------------------------------
84
+ 2013-09-13 9:25:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
85
+ 2013-09-13 9:25:36 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
86
+ 2013-09-13 9:25:37 - response return (code 00000)
87
+ 2013-09-13 9:25:37 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
88
+ 2013-09-13 9:25:38 - response return (code 00000)
89
+ 2013-09-13 9:27:24 - ----------------------------------------------------------
90
+ 2013-09-13 9:27:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
91
+ 2013-09-13 9:27:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
92
+ 2013-09-13 9:27:25 - response return (code 00000)
93
+ 2013-09-13 9:27:25 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
94
+ 2013-09-13 9:27:26 - response return (code 00000)
95
+ 2013-09-13 9:27:26 - ----------------------------------------------------------
96
+ 2013-09-13 9:27:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
97
+ 2013-09-13 9:27:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
98
+ 2013-09-13 9:27:27 - response return (code 00000)
99
+ 2013-09-13 9:31:09 - ----------------------------------------------------------
100
+ 2013-09-13 9:31:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
101
+ 2013-09-13 9:31:09 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
102
+ 2013-09-13 9:31:10 - response return (code 00000)
103
+ 2013-09-13 9:31:10 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
104
+ 2013-09-13 9:31:11 - response return (code 00000)
105
+ 2013-09-13 9:31:11 - ----------------------------------------------------------
106
+ 2013-09-13 9:31:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
107
+ 2013-09-13 9:31:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
108
+ 2013-09-13 9:31:12 - response return (code 00000)
109
+ 2013-09-13 9:33:35 - ----------------------------------------------------------
110
+ 2013-09-13 9:33:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
111
+ 2013-09-13 9:33:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
112
+ 2013-09-13 9:33:35 - response return (code 00000)
113
+ 2013-09-13 9:33:36 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
114
+ 2013-09-13 9:33:37 - response return (code 00000)
115
+ 2013-09-13 9:33:37 - ----------------------------------------------------------
116
+ 2013-09-13 9:33:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
117
+ 2013-09-13 9:33:37 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
118
+ 2013-09-13 9:33:37 - response return (code 00000)
119
+ 2013-09-13 12:40:07 - ----------------------------------------------------------
120
+ 2013-09-13 12:40:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
121
+ 2013-09-13 12:40:07 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
122
+ 2013-09-13 12:40:08 - response return (code 02500)
123
+ 2013-09-13 12:40:35 - ----------------------------------------------------------
124
+ 2013-09-13 12:40:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
125
+ 2013-09-13 12:40:35 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
126
+ 2013-09-13 12:40:36 - response return (code 00000)
127
+ 2013-09-13 12:40:42 - ----------------------------------------------------------
128
+ 2013-09-13 12:40:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
129
+ 2013-09-13 12:40:42 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
130
+ 2013-09-13 12:40:43 - response return (code 00000)
131
+ 2013-09-13 12:54:11 - ----------------------------------------------------------
132
+ 2013-09-13 12:54:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
133
+ 2013-09-13 12:54:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
134
+ 2013-09-13 12:54:12 - response return (code 00000)
135
+ 2013-09-13 12:54:12 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
136
+ 2013-09-13 12:54:13 - response return (code 00000)
137
+ 2013-09-13 12:54:13 - ----------------------------------------------------------
138
+ 2013-09-13 12:54:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
139
+ 2013-09-13 12:54:13 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
140
+ 2013-09-13 12:54:13 - response return (code 00000)
141
+ 2013-09-13 13:18:04 - ----------------------------------------------------------
142
+ 2013-09-13 13:18:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
143
+ 2013-09-13 13:18:04 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
144
+ 2013-09-13 13:18:06 - response return (code 00000)
145
+ 2013-09-13 13:18:06 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
146
+ 2013-09-13 13:18:07 - response return (code 00000)
147
+ 2013-09-13 13:18:07 - ----------------------------------------------------------
148
+ 2013-09-13 13:18:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
149
+ 2013-09-13 13:18:07 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
150
+ 2013-09-13 13:18:08 - response return (code 00000)
151
+ 2013-09-13 13:18:50 - ----------------------------------------------------------
152
+ 2013-09-13 13:18:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
153
+ 2013-09-13 13:18:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
154
+ 2013-09-13 13:18:51 - response return (code 00000)
155
+ 2013-09-13 13:18:51 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
156
+ 2013-09-13 13:18:52 - response return (code 00000)
157
+ 2013-09-13 13:18:52 - ----------------------------------------------------------
158
+ 2013-09-13 13:18:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
159
+ 2013-09-13 13:18:52 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
160
+ 2013-09-13 13:18:53 - response return (code 00000)
161
+ 2013-09-13 13:20:24 - ----------------------------------------------------------
162
+ 2013-09-13 13:20:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
163
+ 2013-09-13 13:20:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
164
+ 2013-09-13 13:20:24 - response return (code 00000)
165
+ 2013-09-13 13:20:24 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
166
+ 2013-09-13 13:20:25 - response return (code 00000)
167
+ 2013-09-13 13:20:25 - ----------------------------------------------------------
168
+ 2013-09-13 13:20:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
169
+ 2013-09-13 13:20:25 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
170
+ 2013-09-13 13:20:25 - response return (code 00000)
171
+ 2013-09-13 13:20:49 - ----------------------------------------------------------
172
+ 2013-09-13 13:20:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
173
+ 2013-09-13 13:20:49 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
174
+ 2013-09-13 13:20:50 - response return (code 00000)
175
+ 2013-09-13 13:20:50 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
176
+ 2013-09-13 13:20:50 - response return (code 00000)
177
+ 2013-09-13 13:20:50 - ----------------------------------------------------------
178
+ 2013-09-13 13:20:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
179
+ 2013-09-13 13:20:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
180
+ 2013-09-13 13:20:51 - response return (code 00000)
181
+ 2013-09-13 13:21:26 - ----------------------------------------------------------
182
+ 2013-09-13 13:21:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
183
+ 2013-09-13 13:21:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
184
+ 2013-09-13 13:21:27 - response return (code 00000)
185
+ 2013-09-13 13:21:27 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
186
+ 2013-09-13 13:21:27 - response return (code 00000)
187
+ 2013-09-13 13:21:27 - ----------------------------------------------------------
188
+ 2013-09-13 13:21:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
189
+ 2013-09-13 13:21:27 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
190
+ 2013-09-13 13:21:28 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-16.log ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-16 9:22:32 - ----------------------------------------------------------
2
+ 2013-09-16 9:22:32 - paylineSDK::__construct(37334959742602, Ha****************yD, , , , , 0)
3
+ 2013-09-16 13:10:47 - ----------------------------------------------------------
4
+ 2013-09-16 13:10:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
5
+ 2013-09-16 13:13:53 - ----------------------------------------------------------
6
+ 2013-09-16 13:13:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-09-16 13:15:44 - ----------------------------------------------------------
8
+ 2013-09-16 13:15:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
9
+ 2013-09-16 13:15:44 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
10
+ 2013-09-16 13:15:46 - response return (code 00000)
11
+ 2013-09-16 13:16:26 - ----------------------------------------------------------
12
+ 2013-09-16 13:16:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
13
+ 2013-09-16 13:16:26 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
14
+ 2013-09-16 13:16:27 - response return (code 00000)
15
+ 2013-09-16 13:20:37 - ----------------------------------------------------------
16
+ 2013-09-16 13:20:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
17
+ 2013-09-16 13:20:37 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
18
+ 2013-09-16 13:20:39 - response return (code 02500)
19
+ 2013-09-16 15:50:19 - ----------------------------------------------------------
20
+ 2013-09-16 15:50:19 - paylineSDK::__construct(37334959742602, Ha****************yD, , , , , 0)
21
+ 2013-09-16 15:50:19 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
22
+ 2013-09-16 15:50:21 - response return (code 00000)
23
+ 2013-09-16 16:21:15 - ----------------------------------------------------------
24
+ 2013-09-16 16:21:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
25
+ 2013-09-16 16:21:15 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
26
+ 2013-09-16 16:21:15 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-25.log ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-25 15:46:59 - ----------------------------------------------------------
2
+ 2013-09-25 15:46:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-09-25 15:46:59 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-09-25 15:47:01 - response return (code 02500)
5
+ 2013-09-25 15:48:53 - ----------------------------------------------------------
6
+ 2013-09-25 15:48:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-09-25 15:48:53 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
8
+ 2013-09-25 15:48:54 - response return (code 00000)
9
+ 2013-09-25 15:59:02 - ----------------------------------------------------------
10
+ 2013-09-25 15:59:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-09-25 15:59:02 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
12
+ 2013-09-25 15:59:03 - response return (code 00000)
13
+ 2013-09-25 16:02:20 - ----------------------------------------------------------
14
+ 2013-09-25 16:02:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-09-25 16:02:20 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
16
+ 2013-09-25 16:02:20 - response return (code 00000)
17
+ 2013-09-25 16:06:02 - ----------------------------------------------------------
18
+ 2013-09-25 16:06:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-09-25 16:06:02 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
20
+ 2013-09-25 16:06:03 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-09-26.log ADDED
@@ -0,0 +1,340 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-09-26 7:53:13 - ----------------------------------------------------------
2
+ 2013-09-26 7:53:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-09-26 7:53:13 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-09-26 7:53:14 - response return (code 02500)
5
+ 2013-09-26 7:53:53 - ----------------------------------------------------------
6
+ 2013-09-26 7:53:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-09-26 7:54:27 - ----------------------------------------------------------
8
+ 2013-09-26 7:54:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
9
+ 2013-09-26 7:54:27 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
10
+ 2013-09-26 7:54:28 - response return (code 00000)
11
+ 2013-09-26 8:13:44 - ----------------------------------------------------------
12
+ 2013-09-26 8:13:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
13
+ 2013-09-26 8:13:44 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
14
+ 2013-09-26 8:13:45 - response return (code 02304)
15
+ 2013-09-26 8:15:04 - ----------------------------------------------------------
16
+ 2013-09-26 8:15:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
17
+ 2013-09-26 8:15:04 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
18
+ 2013-09-26 8:15:06 - response return (code 00000)
19
+ 2013-09-26 8:15:27 - ----------------------------------------------------------
20
+ 2013-09-26 8:15:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
21
+ 2013-09-26 8:15:27 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
22
+ 2013-09-26 8:15:27 - response return (code 00000)
23
+ 2013-09-26 8:28:53 - ----------------------------------------------------------
24
+ 2013-09-26 8:28:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
25
+ 2013-09-26 8:28:53 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
26
+ 2013-09-26 8:28:54 - response return (code 00000)
27
+ 2013-09-26 8:29:29 - ----------------------------------------------------------
28
+ 2013-09-26 8:29:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
29
+ 2013-09-26 8:29:29 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
30
+ 2013-09-26 8:29:30 - response return (code 00000)
31
+ 2013-09-26 8:46:39 - ----------------------------------------------------------
32
+ 2013-09-26 8:46:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
33
+ 2013-09-26 8:46:39 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
34
+ 2013-09-26 8:46:40 - response return (code 00000)
35
+ 2013-09-26 8:48:42 - ----------------------------------------------------------
36
+ 2013-09-26 8:48:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
37
+ 2013-09-26 8:48:42 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
38
+ 2013-09-26 8:48:43 - response return (code 02500)
39
+ 2013-09-26 8:48:44 - ----------------------------------------------------------
40
+ 2013-09-26 8:48:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
41
+ 2013-09-26 8:48:44 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
42
+ 2013-09-26 8:48:45 - response return (code 00000)
43
+ 2013-09-26 9:28:35 - ----------------------------------------------------------
44
+ 2013-09-26 9:28:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
45
+ 2013-09-26 9:28:35 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
46
+ 2013-09-26 9:28:36 - response return (code 02516)
47
+ 2013-09-26 9:30:11 - ----------------------------------------------------------
48
+ 2013-09-26 9:30:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
49
+ 2013-09-26 9:30:11 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
50
+ 2013-09-26 9:30:12 - response return (code 00000)
51
+ 2013-09-26 9:31:13 - ----------------------------------------------------------
52
+ 2013-09-26 9:31:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
53
+ 2013-09-26 9:31:13 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
54
+ 2013-09-26 9:31:13 - response return (code 00000)
55
+ 2013-09-26 9:31:58 - ----------------------------------------------------------
56
+ 2013-09-26 9:31:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
57
+ 2013-09-26 9:31:58 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
58
+ 2013-09-26 9:31:58 - response return (code 02503)
59
+ 2013-09-26 9:32:05 - ----------------------------------------------------------
60
+ 2013-09-26 9:32:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
61
+ 2013-09-26 9:32:05 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
62
+ 2013-09-26 9:32:06 - response return (code 02503)
63
+ 2013-09-26 9:32:09 - ----------------------------------------------------------
64
+ 2013-09-26 9:32:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
65
+ 2013-09-26 9:32:09 - webServiceRequest(updateWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
66
+ 2013-09-26 9:32:13 - response return (code 02503)
67
+ 2013-09-26 9:32:22 - ----------------------------------------------------------
68
+ 2013-09-26 9:32:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
69
+ 2013-09-26 9:32:22 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
70
+ 2013-09-26 9:32:23 - response return (code 02503)
71
+ 2013-09-26 9:32:26 - ----------------------------------------------------------
72
+ 2013-09-26 9:32:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
73
+ 2013-09-26 9:32:26 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
74
+ 2013-09-26 9:32:27 - response return (code 02303)
75
+ 2013-09-26 9:32:32 - ----------------------------------------------------------
76
+ 2013-09-26 9:32:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
77
+ 2013-09-26 9:32:32 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
78
+ 2013-09-26 9:32:32 - response return (code 00000)
79
+ 2013-09-26 9:35:07 - ----------------------------------------------------------
80
+ 2013-09-26 9:35:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
81
+ 2013-09-26 9:35:07 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
82
+ 2013-09-26 9:35:08 - response return (code 00000)
83
+ 2013-09-26 9:35:20 - ----------------------------------------------------------
84
+ 2013-09-26 9:35:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
85
+ 2013-09-26 9:35:20 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
86
+ 2013-09-26 9:35:21 - response return (code 00000)
87
+ 2013-09-26 9:35:55 - ----------------------------------------------------------
88
+ 2013-09-26 9:35:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
89
+ 2013-09-26 9:35:55 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
90
+ 2013-09-26 9:35:56 - response return (code 00000)
91
+ 2013-09-26 9:36:15 - ----------------------------------------------------------
92
+ 2013-09-26 9:36:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
93
+ 2013-09-26 9:36:15 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
94
+ 2013-09-26 9:36:16 - response return (code 00000)
95
+ 2013-09-26 9:37:01 - ----------------------------------------------------------
96
+ 2013-09-26 9:37:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
97
+ 2013-09-26 9:37:02 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
98
+ 2013-09-26 9:37:02 - response return (code 00000)
99
+ 2013-09-26 9:37:13 - ----------------------------------------------------------
100
+ 2013-09-26 9:37:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
101
+ 2013-09-26 9:37:13 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
102
+ 2013-09-26 9:37:14 - response return (code 00000)
103
+ 2013-09-26 9:38:04 - ----------------------------------------------------------
104
+ 2013-09-26 9:38:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
105
+ 2013-09-26 9:38:04 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
106
+ 2013-09-26 9:38:05 - response return (code 00000)
107
+ 2013-09-26 9:39:04 - ----------------------------------------------------------
108
+ 2013-09-26 9:39:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
109
+ 2013-09-26 9:39:04 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
110
+ 2013-09-26 9:39:05 - response return (code 00000)
111
+ 2013-09-26 9:39:05 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
112
+ 2013-09-26 9:39:06 - response return (code 00000)
113
+ 2013-09-26 9:58:48 - ----------------------------------------------------------
114
+ 2013-09-26 9:58:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
115
+ 2013-09-26 9:58:48 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
116
+ 2013-09-26 9:58:50 - response return (code 00000)
117
+ 2013-09-26 9:58:50 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
118
+ 2013-09-26 9:58:50 - response return (code 00000)
119
+ 2013-09-26 10:21:51 - ----------------------------------------------------------
120
+ 2013-09-26 10:21:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
121
+ 2013-09-26 10:22:20 - ----------------------------------------------------------
122
+ 2013-09-26 10:22:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
123
+ 2013-09-26 10:22:20 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
124
+ 2013-09-26 10:22:21 - response return (code 00000)
125
+ 2013-09-26 10:22:37 - ----------------------------------------------------------
126
+ 2013-09-26 10:22:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
127
+ 2013-09-26 10:22:37 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
128
+ 2013-09-26 10:22:38 - response return (code 00000)
129
+ 2013-09-26 12:29:37 - ----------------------------------------------------------
130
+ 2013-09-26 12:29:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
131
+ 2013-09-26 12:29:37 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
132
+ 2013-09-26 12:29:38 - response return (code 00000)
133
+ 2013-09-26 12:31:41 - ----------------------------------------------------------
134
+ 2013-09-26 12:31:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
135
+ 2013-09-26 12:31:41 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
136
+ 2013-09-26 12:31:43 - response return (code 00000)
137
+ 2013-09-26 12:32:40 - ----------------------------------------------------------
138
+ 2013-09-26 12:32:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
139
+ 2013-09-26 12:32:40 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
140
+ 2013-09-26 12:32:41 - response return (code 00000)
141
+ 2013-09-26 12:38:27 - ----------------------------------------------------------
142
+ 2013-09-26 12:38:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
143
+ 2013-09-26 12:38:27 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
144
+ 2013-09-26 12:38:28 - response return (code 00000)
145
+ 2013-09-26 12:40:01 - ----------------------------------------------------------
146
+ 2013-09-26 12:40:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
147
+ 2013-09-26 12:40:01 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
148
+ 2013-09-26 12:40:03 - response return (code 00000)
149
+ 2013-09-26 12:49:46 - ----------------------------------------------------------
150
+ 2013-09-26 12:49:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
151
+ 2013-09-26 12:49:46 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
152
+ 2013-09-26 12:49:47 - response return (code 00000)
153
+ 2013-09-26 13:12:18 - ----------------------------------------------------------
154
+ 2013-09-26 13:12:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
155
+ 2013-09-26 13:12:18 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
156
+ 2013-09-26 13:12:19 - response return (code 00000)
157
+ 2013-09-26 13:16:41 - ----------------------------------------------------------
158
+ 2013-09-26 13:16:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
159
+ 2013-09-26 13:16:41 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
160
+ 2013-09-26 13:16:42 - response return (code 00000)
161
+ 2013-09-26 13:26:22 - ----------------------------------------------------------
162
+ 2013-09-26 13:26:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
163
+ 2013-09-26 13:26:22 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
164
+ 2013-09-26 13:26:24 - response return (code 00000)
165
+ 2013-09-26 13:26:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
166
+ 2013-09-26 13:26:25 - response return (code 00000)
167
+ 2013-09-26 14:10:34 - ----------------------------------------------------------
168
+ 2013-09-26 14:10:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
169
+ 2013-09-26 14:10:34 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
170
+ 2013-09-26 14:10:35 - response return (code 00000)
171
+ 2013-09-26 14:10:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
172
+ 2013-09-26 14:10:36 - response return (code 00000)
173
+ 2013-09-26 14:15:19 - ----------------------------------------------------------
174
+ 2013-09-26 14:15:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
175
+ 2013-09-26 14:15:19 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
176
+ 2013-09-26 14:15:20 - response return (code 00000)
177
+ 2013-09-26 14:15:57 - ----------------------------------------------------------
178
+ 2013-09-26 14:15:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
179
+ 2013-09-26 14:15:57 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
180
+ 2013-09-26 14:15:59 - response return (code 00000)
181
+ 2013-09-26 14:16:11 - ----------------------------------------------------------
182
+ 2013-09-26 14:16:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
183
+ 2013-09-26 14:16:11 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
184
+ 2013-09-26 14:16:12 - response return (code 00000)
185
+ 2013-09-26 14:16:24 - ----------------------------------------------------------
186
+ 2013-09-26 14:16:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
187
+ 2013-09-26 14:16:24 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
188
+ 2013-09-26 14:16:25 - response return (code 00000)
189
+ 2013-09-26 14:32:57 - ----------------------------------------------------------
190
+ 2013-09-26 14:32:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
191
+ 2013-09-26 14:32:57 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
192
+ 2013-09-26 14:32:58 - Exception : Index: 0, Size: 0
193
+ 2013-09-26 14:34:32 - ----------------------------------------------------------
194
+ 2013-09-26 14:34:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
195
+ 2013-09-26 14:34:32 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
196
+ 2013-09-26 14:34:33 - Exception : Index: 0, Size: 0
197
+ 2013-09-26 14:34:41 - ----------------------------------------------------------
198
+ 2013-09-26 14:34:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
199
+ 2013-09-26 14:34:41 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
200
+ 2013-09-26 14:34:41 - response return (code 00000)
201
+ 2013-09-26 14:37:19 - ----------------------------------------------------------
202
+ 2013-09-26 14:37:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
203
+ 2013-09-26 14:37:19 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
204
+ 2013-09-26 14:37:20 - response return (code 02500)
205
+ 2013-09-26 14:37:42 - ----------------------------------------------------------
206
+ 2013-09-26 14:37:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
207
+ 2013-09-26 14:37:42 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
208
+ 2013-09-26 14:37:43 - response return (code 00000)
209
+ 2013-09-26 14:37:57 - ----------------------------------------------------------
210
+ 2013-09-26 14:37:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
211
+ 2013-09-26 14:37:57 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
212
+ 2013-09-26 14:37:59 - response return (code 02500)
213
+ 2013-09-26 14:38:00 - ----------------------------------------------------------
214
+ 2013-09-26 14:38:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
215
+ 2013-09-26 14:38:00 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
216
+ 2013-09-26 14:38:01 - response return (code 02500)
217
+ 2013-09-26 14:38:32 - ----------------------------------------------------------
218
+ 2013-09-26 14:38:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
219
+ 2013-09-26 14:38:32 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
220
+ 2013-09-26 14:38:32 - response return (code 02500)
221
+ 2013-09-26 14:38:37 - ----------------------------------------------------------
222
+ 2013-09-26 14:38:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
223
+ 2013-09-26 14:38:37 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
224
+ 2013-09-26 14:38:38 - response return (code 00000)
225
+ 2013-09-26 14:38:49 - ----------------------------------------------------------
226
+ 2013-09-26 14:38:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
227
+ 2013-09-26 14:38:49 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
228
+ 2013-09-26 14:38:50 - response return (code 02500)
229
+ 2013-09-26 14:38:51 - ----------------------------------------------------------
230
+ 2013-09-26 14:38:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
231
+ 2013-09-26 14:38:51 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
232
+ 2013-09-26 14:38:52 - response return (code 02500)
233
+ 2013-09-26 14:39:08 - ----------------------------------------------------------
234
+ 2013-09-26 14:39:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
235
+ 2013-09-26 14:39:08 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
236
+ 2013-09-26 14:39:09 - response return (code 02500)
237
+ 2013-09-26 14:39:16 - ----------------------------------------------------------
238
+ 2013-09-26 14:39:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
239
+ 2013-09-26 14:39:16 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
240
+ 2013-09-26 14:39:17 - response return (code 00000)
241
+ 2013-09-26 14:39:30 - ----------------------------------------------------------
242
+ 2013-09-26 14:39:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
243
+ 2013-09-26 14:39:30 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
244
+ 2013-09-26 14:39:31 - response return (code 02500)
245
+ 2013-09-26 14:39:32 - ----------------------------------------------------------
246
+ 2013-09-26 14:39:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
247
+ 2013-09-26 14:39:32 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
248
+ 2013-09-26 14:39:33 - response return (code 02500)
249
+ 2013-09-26 14:39:39 - ----------------------------------------------------------
250
+ 2013-09-26 14:39:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
251
+ 2013-09-26 14:39:39 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
252
+ 2013-09-26 14:39:40 - response return (code 02500)
253
+ 2013-09-26 14:39:48 - ----------------------------------------------------------
254
+ 2013-09-26 14:39:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
255
+ 2013-09-26 14:39:48 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
256
+ 2013-09-26 14:39:49 - response return (code 00000)
257
+ 2013-09-26 14:40:25 - ----------------------------------------------------------
258
+ 2013-09-26 14:40:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
259
+ 2013-09-26 14:40:25 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
260
+ 2013-09-26 14:40:26 - response return (code 02500)
261
+ 2013-09-26 14:40:27 - ----------------------------------------------------------
262
+ 2013-09-26 14:40:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
263
+ 2013-09-26 14:40:27 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
264
+ 2013-09-26 14:40:29 - response return (code 02500)
265
+ 2013-09-26 14:45:04 - ----------------------------------------------------------
266
+ 2013-09-26 14:45:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
267
+ 2013-09-26 14:45:04 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
268
+ 2013-09-26 14:45:07 - response return (code 02500)
269
+ 2013-09-26 14:46:25 - ----------------------------------------------------------
270
+ 2013-09-26 14:46:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
271
+ 2013-09-26 14:46:25 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
272
+ 2013-09-26 14:46:27 - response return (code 00000)
273
+ 2013-09-26 14:46:27 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
274
+ 2013-09-26 14:46:28 - response return (code 00000)
275
+ 2013-09-26 14:46:29 - webServiceRequest(createWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
276
+ 2013-09-26 14:46:31 - response return (code 02500)
277
+ 2013-09-26 14:46:39 - ----------------------------------------------------------
278
+ 2013-09-26 14:46:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
279
+ 2013-09-26 14:46:39 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
280
+ 2013-09-26 14:46:41 - response return (code 02500)
281
+ 2013-09-26 14:53:37 - ----------------------------------------------------------
282
+ 2013-09-26 14:53:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
283
+ 2013-09-26 14:53:37 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
284
+ 2013-09-26 14:53:38 - response return (code 02500)
285
+ 2013-09-26 14:54:31 - ----------------------------------------------------------
286
+ 2013-09-26 14:54:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
287
+ 2013-09-26 14:54:31 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
288
+ 2013-09-26 14:54:32 - response return (code 00000)
289
+ 2013-09-26 14:54:59 - ----------------------------------------------------------
290
+ 2013-09-26 14:54:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
291
+ 2013-09-26 14:54:59 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
292
+ 2013-09-26 14:55:01 - response return (code 02500)
293
+ 2013-09-26 14:55:02 - ----------------------------------------------------------
294
+ 2013-09-26 14:55:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
295
+ 2013-09-26 14:55:02 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
296
+ 2013-09-26 14:55:04 - response return (code 00000)
297
+ 2013-09-26 14:59:40 - ----------------------------------------------------------
298
+ 2013-09-26 14:59:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
299
+ 2013-09-26 14:59:40 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
300
+ 2013-09-26 14:59:41 - response return (code 02500)
301
+ 2013-09-26 14:59:48 - ----------------------------------------------------------
302
+ 2013-09-26 14:59:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
303
+ 2013-09-26 14:59:48 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
304
+ 2013-09-26 14:59:48 - response return (code 02303)
305
+ 2013-09-26 14:59:54 - ----------------------------------------------------------
306
+ 2013-09-26 14:59:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
307
+ 2013-09-26 14:59:54 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
308
+ 2013-09-26 14:59:55 - response return (code 00000)
309
+ 2013-09-26 15:01:05 - ----------------------------------------------------------
310
+ 2013-09-26 15:01:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
311
+ 2013-09-26 15:01:05 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
312
+ 2013-09-26 15:01:06 - response return (code 00000)
313
+ 2013-09-26 15:01:43 - ----------------------------------------------------------
314
+ 2013-09-26 15:01:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
315
+ 2013-09-26 15:01:43 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
316
+ 2013-09-26 15:01:44 - response return (code 00000)
317
+ 2013-09-26 15:02:04 - ----------------------------------------------------------
318
+ 2013-09-26 15:02:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
319
+ 2013-09-26 15:02:04 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
320
+ 2013-09-26 15:02:05 - response return (code 00000)
321
+ 2013-09-26 15:03:05 - ----------------------------------------------------------
322
+ 2013-09-26 15:03:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
323
+ 2013-09-26 15:03:05 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
324
+ 2013-09-26 15:03:06 - response return (code 00000)
325
+ 2013-09-26 15:03:25 - ----------------------------------------------------------
326
+ 2013-09-26 15:03:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
327
+ 2013-09-26 15:03:25 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
328
+ 2013-09-26 15:03:26 - response return (code 02500)
329
+ 2013-09-26 15:03:28 - ----------------------------------------------------------
330
+ 2013-09-26 15:03:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
331
+ 2013-09-26 15:03:28 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
332
+ 2013-09-26 15:03:28 - response return (code 00000)
333
+ 2013-09-26 15:03:42 - ----------------------------------------------------------
334
+ 2013-09-26 15:03:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
335
+ 2013-09-26 15:03:42 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
336
+ 2013-09-26 15:03:43 - response return (code 02500)
337
+ 2013-09-26 15:48:28 - ----------------------------------------------------------
338
+ 2013-09-26 15:48:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
339
+ 2013-09-26 15:48:28 - webServiceRequest(updateWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
340
+ 2013-09-26 15:48:29 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-10-03.log ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-10-03 9:42:59 - ----------------------------------------------------------
2
+ 2013-10-03 9:42:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-10-03 9:43:00 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-10-03 9:43:02 - response return (code 02500)
5
+ 2013-10-03 9:43:28 - ----------------------------------------------------------
6
+ 2013-10-03 9:43:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-10-03 9:43:28 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
8
+ 2013-10-03 9:43:30 - response return (code 00000)
9
+ 2013-10-03 9:45:54 - ----------------------------------------------------------
10
+ 2013-10-03 9:45:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-10-03 9:47:50 - ----------------------------------------------------------
12
+ 2013-10-03 9:47:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
13
+ 2013-10-03 9:54:46 - ----------------------------------------------------------
14
+ 2013-10-03 9:54:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-10-03 10:03:39 - ----------------------------------------------------------
16
+ 2013-10-03 10:03:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
17
+ 2013-10-03 10:11:07 - ----------------------------------------------------------
18
+ 2013-10-03 10:11:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-10-03 10:11:07 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
20
+ 2013-10-03 10:11:08 - response return (code 00000)
21
+ 2013-10-03 10:17:21 - ----------------------------------------------------------
22
+ 2013-10-03 10:17:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-10-03 10:17:21 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
24
+ 2013-10-03 10:17:22 - response return (code 02501)
25
+ 2013-10-03 12:26:54 - ----------------------------------------------------------
26
+ 2013-10-03 12:26:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-10-03 12:26:54 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
28
+ 2013-10-03 12:26:57 - response return (code 02500)
29
+ 2013-10-03 12:28:56 - ----------------------------------------------------------
30
+ 2013-10-03 12:28:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-10-03 12:28:56 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
32
+ 2013-10-03 12:29:20 - Exception : Could not connect to host
33
+ 2013-10-03 12:30:13 - ----------------------------------------------------------
34
+ 2013-10-03 12:30:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
35
+ 2013-10-03 12:30:13 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
36
+ 2013-10-03 12:30:16 - response return (code 00000)
37
+ 2013-10-03 12:31:16 - ----------------------------------------------------------
38
+ 2013-10-03 12:31:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
39
+ 2013-10-03 12:31:16 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
40
+ 2013-10-03 12:31:19 - response return (code 02501)
41
+ 2013-10-03 12:31:20 - ----------------------------------------------------------
42
+ 2013-10-03 12:31:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
43
+ 2013-10-03 12:31:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
44
+ 2013-10-03 12:31:21 - response return (code 02501)
45
+ 2013-10-03 12:37:41 - ----------------------------------------------------------
46
+ 2013-10-03 12:37:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
47
+ 2013-10-03 12:37:41 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
48
+ 2013-10-03 12:37:43 - response return (code 00000)
49
+ 2013-10-03 12:38:00 - ----------------------------------------------------------
50
+ 2013-10-03 12:38:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
51
+ 2013-10-03 12:38:00 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
52
+ 2013-10-03 12:38:02 - response return (code 02501)
53
+ 2013-10-03 12:38:03 - ----------------------------------------------------------
54
+ 2013-10-03 12:38:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
55
+ 2013-10-03 12:38:03 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
56
+ 2013-10-03 12:38:04 - response return (code 02501)
57
+ 2013-10-03 12:45:27 - ----------------------------------------------------------
58
+ 2013-10-03 12:45:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
59
+ 2013-10-03 12:45:27 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
60
+ 2013-10-03 12:45:29 - response return (code 00000)
61
+ 2013-10-03 12:46:30 - ----------------------------------------------------------
62
+ 2013-10-03 12:46:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
63
+ 2013-10-03 12:46:30 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
64
+ 2013-10-03 12:46:33 - response return (code 02501)
65
+ 2013-10-03 12:46:34 - ----------------------------------------------------------
66
+ 2013-10-03 12:46:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
67
+ 2013-10-03 12:46:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
68
+ 2013-10-03 12:46:35 - response return (code 02501)
69
+ 2013-10-03 12:59:30 - ----------------------------------------------------------
70
+ 2013-10-03 12:59:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
71
+ 2013-10-03 12:59:30 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
72
+ 2013-10-03 12:59:31 - response return (code 00000)
73
+ 2013-10-03 12:59:56 - ----------------------------------------------------------
74
+ 2013-10-03 12:59:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
75
+ 2013-10-03 12:59:56 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
76
+ 2013-10-03 12:59:59 - response return (code 02501)
77
+ 2013-10-03 13:05:11 - ----------------------------------------------------------
78
+ 2013-10-03 13:05:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
79
+ 2013-10-03 13:05:11 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
80
+ 2013-10-03 13:05:15 - response return (code 00000)
81
+ 2013-10-03 13:10:49 - ----------------------------------------------------------
82
+ 2013-10-03 13:10:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
83
+ 2013-10-03 13:10:49 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
84
+ 2013-10-03 13:10:52 - response return (code 02501)
85
+ 2013-10-03 13:13:56 - ----------------------------------------------------------
86
+ 2013-10-03 13:13:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
87
+ 2013-10-03 13:13:56 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
88
+ 2013-10-03 13:13:58 - response return (code 00000)
89
+ 2013-10-03 13:14:41 - ----------------------------------------------------------
90
+ 2013-10-03 13:14:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
91
+ 2013-10-03 13:14:41 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
92
+ 2013-10-03 13:14:43 - response return (code 02501)
93
+ 2013-10-03 13:19:20 - ----------------------------------------------------------
94
+ 2013-10-03 13:19:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
95
+ 2013-10-03 13:19:20 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
96
+ 2013-10-03 13:19:21 - response return (code 00000)
97
+ 2013-10-03 13:19:34 - ----------------------------------------------------------
98
+ 2013-10-03 13:19:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
99
+ 2013-10-03 13:19:34 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
100
+ 2013-10-03 13:19:36 - response return (code 02501)
101
+ 2013-10-03 13:22:46 - ----------------------------------------------------------
102
+ 2013-10-03 13:22:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
103
+ 2013-10-03 13:22:46 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
104
+ 2013-10-03 13:22:48 - response return (code 00000)
105
+ 2013-10-03 13:23:04 - ----------------------------------------------------------
106
+ 2013-10-03 13:23:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
107
+ 2013-10-03 13:23:04 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
108
+ 2013-10-03 13:23:06 - response return (code 02501)
109
+ 2013-10-03 13:28:40 - ----------------------------------------------------------
110
+ 2013-10-03 13:28:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
111
+ 2013-10-03 13:28:40 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
112
+ 2013-10-03 13:28:42 - response return (code 00000)
113
+ 2013-10-03 13:29:44 - ----------------------------------------------------------
114
+ 2013-10-03 13:29:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
115
+ 2013-10-03 13:29:44 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
116
+ 2013-10-03 13:29:45 - response return (code 00000)
117
+ 2013-10-03 13:30:15 - ----------------------------------------------------------
118
+ 2013-10-03 13:30:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
119
+ 2013-10-03 13:30:15 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
120
+ 2013-10-03 13:30:16 - response return (code 02501)
121
+ 2013-10-03 13:32:00 - ----------------------------------------------------------
122
+ 2013-10-03 13:32:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
123
+ 2013-10-03 13:32:00 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
124
+ 2013-10-03 13:32:01 - response return (code 02501)
125
+ 2013-10-03 13:32:36 - ----------------------------------------------------------
126
+ 2013-10-03 13:32:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
127
+ 2013-10-03 13:32:36 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
128
+ 2013-10-03 13:32:38 - response return (code 00000)
129
+ 2013-10-03 13:32:59 - ----------------------------------------------------------
130
+ 2013-10-03 13:32:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
131
+ 2013-10-03 13:32:59 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
132
+ 2013-10-03 13:33:01 - response return (code 02501)
133
+ 2013-10-03 13:34:47 - ----------------------------------------------------------
134
+ 2013-10-03 13:34:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
135
+ 2013-10-03 13:34:47 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
136
+ 2013-10-03 13:34:48 - response return (code 00000)
137
+ 2013-10-03 13:34:58 - ----------------------------------------------------------
138
+ 2013-10-03 13:34:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
139
+ 2013-10-03 13:34:58 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
140
+ 2013-10-03 13:34:59 - response return (code 02501)
141
+ 2013-10-03 13:48:12 - ----------------------------------------------------------
142
+ 2013-10-03 13:48:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
143
+ 2013-10-03 13:48:12 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
144
+ 2013-10-03 13:48:13 - response return (code 00000)
145
+ 2013-10-03 13:48:28 - ----------------------------------------------------------
146
+ 2013-10-03 13:48:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
147
+ 2013-10-03 13:48:28 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
148
+ 2013-10-03 13:48:29 - response return (code 02501)
149
+ 2013-10-03 14:38:44 - ----------------------------------------------------------
150
+ 2013-10-03 14:38:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
151
+ 2013-10-03 14:38:44 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
152
+ 2013-10-03 14:38:45 - response return (code 00000)
153
+ 2013-10-03 14:39:24 - ----------------------------------------------------------
154
+ 2013-10-03 14:39:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
155
+ 2013-10-03 14:39:24 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
156
+ 2013-10-03 14:39:25 - response return (code 02500)
157
+ 2013-10-03 14:39:26 - ----------------------------------------------------------
158
+ 2013-10-03 14:39:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
159
+ 2013-10-03 14:39:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
160
+ 2013-10-03 14:39:27 - response return (code 00000)
161
+ 2013-10-03 15:17:23 - ----------------------------------------------------------
162
+ 2013-10-03 15:17:23 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
163
+ 2013-10-03 15:17:23 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
164
+ 2013-10-03 15:17:25 - response return (code 00000)
165
+ 2013-10-03 15:19:13 - ----------------------------------------------------------
166
+ 2013-10-03 15:19:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
167
+ 2013-10-03 15:19:13 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
168
+ 2013-10-03 15:19:14 - response return (code 00000)
169
+ 2013-10-03 15:20:28 - ----------------------------------------------------------
170
+ 2013-10-03 15:20:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
171
+ 2013-10-03 15:20:28 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
172
+ 2013-10-03 15:20:29 - response return (code 00000)
173
+ 2013-10-03 15:21:41 - ----------------------------------------------------------
174
+ 2013-10-03 15:21:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
175
+ 2013-10-03 15:21:41 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
176
+ 2013-10-03 15:21:42 - response return (code 00000)
177
+ 2013-10-03 15:22:59 - ----------------------------------------------------------
178
+ 2013-10-03 15:22:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
179
+ 2013-10-03 15:22:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
180
+ 2013-10-03 15:23:00 - response return (code 00000)
app/code/community/Monext/Payline/PaylinePHPKit/logs/2013-10-04.log ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2013-10-04 8:25:56 - ----------------------------------------------------------
2
+ 2013-10-04 8:25:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
3
+ 2013-10-04 8:25:56 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
4
+ 2013-10-04 8:25:57 - response return (code 02500)
5
+ 2013-10-04 8:26:11 - ----------------------------------------------------------
6
+ 2013-10-04 8:26:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
7
+ 2013-10-04 8:26:11 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
8
+ 2013-10-04 8:26:13 - response return (code 00000)
9
+ 2013-10-04 8:26:21 - ----------------------------------------------------------
10
+ 2013-10-04 8:26:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
11
+ 2013-10-04 8:26:21 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
12
+ 2013-10-04 8:26:23 - response return (code 02500)
13
+ 2013-10-04 8:26:24 - ----------------------------------------------------------
14
+ 2013-10-04 8:26:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
15
+ 2013-10-04 8:26:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
16
+ 2013-10-04 8:26:25 - response return (code 00000)
17
+ 2013-10-04 8:48:04 - ----------------------------------------------------------
18
+ 2013-10-04 8:48:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
19
+ 2013-10-04 8:48:04 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
20
+ 2013-10-04 8:48:05 - response return (code 00000)
21
+ 2013-10-04 8:48:23 - ----------------------------------------------------------
22
+ 2013-10-04 8:48:23 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
23
+ 2013-10-04 8:48:23 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
24
+ 2013-10-04 8:48:25 - response return (code 02500)
25
+ 2013-10-04 8:48:26 - ----------------------------------------------------------
26
+ 2013-10-04 8:48:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
27
+ 2013-10-04 8:48:26 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
28
+ 2013-10-04 8:48:26 - response return (code 00000)
29
+ 2013-10-04 9:05:22 - ----------------------------------------------------------
30
+ 2013-10-04 9:05:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
31
+ 2013-10-04 9:05:22 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
32
+ 2013-10-04 9:05:23 - response return (code 00000)
app/code/community/Monext/Payline/controllers/Adminhtml/ManagecontractsController.php CHANGED
@@ -21,8 +21,7 @@ class Monext_Payline_Adminhtml_ManagecontractsController extends Mage_Adminhtml_
21
 
22
  $paylineSDK = Mage::helper('payline')->initPayline('CPT');
23
  try {
24
- $result = $paylineSDK->getMerchantSettings(array());
25
- //var_dump($result);return;
26
  } catch (Exception $e) {
27
  Mage::logException($e);
28
  $msg=Mage::helper('payline')->__('Error during import');
@@ -190,15 +189,28 @@ class Monext_Payline_Adminhtml_ManagecontractsController extends Mage_Adminhtml_
190
 
191
  public function massStatusAction()
192
  {
193
- $contractIds = (array)$this->getRequest()->getParam('contract');
194
  $status = (int)$this->getRequest()->getParam('status');
195
  $store = $this->getRequest()->getParam('store',0);
196
- $website = $this->getRequest()->getParam('website',0);
197
-
198
- Mage::getResourceModel('payline/contract_status')->updateContractStatus($contractIds,$status,$website,$store);
199
-
200
- $this->_redirect('*/*/', array('website' => $website, 'store' => $store));
201
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
202
 
203
  /**
204
  * contracts grid for AJAX request
21
 
22
  $paylineSDK = Mage::helper('payline')->initPayline('CPT');
23
  try {
24
+ $result = $paylineSDK->getMerchantSettings( array('version'=>Monext_Payline_Helper_Data::VERSION) );
 
25
  } catch (Exception $e) {
26
  Mage::logException($e);
27
  $msg=Mage::helper('payline')->__('Error during import');
189
 
190
  public function massStatusAction()
191
  {
192
+ $contractIds = (array)$this->getRequest()->getParam('contract');
193
  $status = (int)$this->getRequest()->getParam('status');
194
  $store = $this->getRequest()->getParam('store',0);
195
+ $website = $this->getRequest()->getParam('website',0);
196
+
197
+ Mage::getResourceModel('payline/contract_status')->updateContractStatus($contractIds,$status,$website,$store);
198
+
199
+ $this->_redirect('*/*/', array('website' => $website, 'store' => $store));
200
+ }
201
+
202
+ public function massWalletAction()
203
+ {
204
+ $contractIds = (array)$this->getRequest()->getParam('contract');
205
+ $subscribe = (int)$this->getRequest()->getParam('walletList');
206
+ $store = $this->getRequest()->getParam('store',0);
207
+ $website = $this->getRequest()->getParam('website',0);
208
+
209
+ Mage::getResourceModel('payline/contract')->updateContractWalletList(
210
+ $contractIds, $subscribe, $website, $store );
211
+
212
+ $this->_redirect('*/*/', array('website' => $website, 'store' => $store));
213
+ }
214
 
215
  /**
216
  * contracts grid for AJAX request
app/code/community/Monext/Payline/controllers/IndexController.php CHANGED
@@ -126,22 +126,24 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
126
  }
127
  $array['buyer']['customerId'] = Mage::helper('payline')->encodeString($email);
128
 
129
- // ADDRESS
130
- $array['address']['name'] = Mage::helper('payline')->encodeString(substr($billingAddress->getName(),0,100));
131
- $array['address']['street1'] = Mage::helper('payline')->encodeString(substr($billingAddress->getStreet1(),0,100));
132
- $array['address']['street2'] = Mage::helper('payline')->encodeString(substr($billingAddress->getStreet2(),0,100));
133
- $array['address']['cityName'] = Mage::helper('payline')->encodeString(substr($billingAddress->getCity(),0,40));
134
- $array['address']['zipCode'] = substr($billingAddress->getPostcode(),0,12);
 
135
  //The $billing->getCountry() returns a 2 letter ISO2, should be fine
136
- $array['address']['country'] = $billingAddress->getCountry();
137
  $forbidenCars = array(' ','.','(',')','-');
138
  $phone = str_replace($forbidenCars,'',$billingAddress->getTelephone());
139
  $regexpTel='/^\+?[0-9]{1,14}$/';
140
  if (preg_match($regexpTel, $phone)){
141
- $array['address']['phone']=$phone;
142
  }else{
143
- $array['address']['phone']='';
144
  }
 
145
  return $array;
146
  }
147
 
@@ -154,13 +156,12 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
154
  private function updateOrder($res,$transactionId, $paymentType='CPT'){
155
  Mage::helper('payline/logger')->log("[updateOrder] Mise à jour commande ".$this->order->getIncrementId()." (mode $paymentType) avec la transaction $transactionId");
156
  $orderOk = false;
157
-
158
- if($res['result']['code']){
159
-
160
- if($res['result']['code'] == '00000' || $res['result']['code'] == '02500' || $res['result']['code'] == '04003'){ // transaction OK
161
  $orderOk = true;
162
-
163
- if($paymentType == 'NX'){
164
  Mage::helper('payline/logger')->log("[updateOrder] Cas du paiement NX");
165
  if (isset($res['billingRecordList']['billingRecord'][0])) {
166
  $code_echeance = $res['billingRecordList']['billingRecord'][0]->result->code;
@@ -204,6 +205,10 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
204
  $product_id = $item->getProductId(); // get its ID
205
  $stock = Mage::getModel('cataloginventory/stock_item')->loadByProduct($product_id); // Load the stock for this product
206
  $stock->setQty($stock->getQty()+$quantity); // Set to new Qty
 
 
 
 
207
  $stock->save(); // Save
208
  continue;
209
  }
@@ -211,6 +216,27 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
211
  }
212
  }
213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  /**
215
  * Initialize the cpt payment request
216
  */
@@ -232,13 +258,19 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
232
  $paylineSDK = $helperPayline->initPayline('CPT',$array['payment']['currency']);
233
  $paymentMethod = $this->order->getPayment()->getCcType();
234
  $array['payment']['action'] = Mage::getStoreConfig('payment/PaylineCPT/payline_payment_action');
 
235
  if($paymentMethod) {
236
  // debut ajout FSZ 15/11/2012
237
  Mage::helper('payline/logger')->log('[cptAction] order '.$array['order']['ref'].' - customer selected contract '.$paymentMethod);
238
- if($paymentMethod == 'LEETCHI'){
239
- Mage::helper('payline/logger')->log('[cptAction] order '.$array['order']['ref'].' - LEETCHI selected => payment action is forced to 101');
240
- $array['payment']['action'] = '101';
241
- }
 
 
 
 
 
242
  // fin ajout FSZ 15/11/2012
243
  $array['payment']['contractNumber'] = $paymentMethod;
244
  $array['contracts'] = array($paymentMethod);
@@ -296,7 +328,10 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
296
  }
297
  }
298
  }
299
-
 
 
 
300
  // EXECUTE
301
  try{
302
  $result = $paylineSDK->doWebPayment($array);
@@ -358,7 +393,7 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
358
  $privateData1['key'] = 'orderRef';
359
  $privateData1['value'] = substr(str_replace(array("\r","\n","\t"), array('','',''),$array['order']['ref']), 0,255);
360
  $paylineSDK->setPrivate($privateData1);
361
-
362
  //ORDER DETAILS (optional)
363
  $items = $this->order->getAllItems();
364
  if ($items) {
@@ -376,7 +411,6 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
376
  continue;
377
  }
378
  }
379
-
380
  // CARD INFO
381
  $array['card']['number'] = $_SESSION['payline_ccdata']->cc_number;
382
  $array['card']['cardholder'] = $_SESSION['payline_ccdata']->cc_owner;
@@ -413,30 +447,35 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
413
  // RESPONSE
414
  $failedOrderStatus = Mage::getStoreConfig('payment/payline_common/failed_order_status');
415
  if(isset($author_result) && is_array($author_result) && $author_result['result']['code'] == '00000'){
416
- $array_details = array();
417
- $array_details['orderRef'] = $this->order->getRealOrderId();
418
- $array_details['transactionId'] = $author_result['transaction']['id'];
419
- $array_details['startDate'] = '';
420
- $array_details['endDate'] = '';
421
- $array_details['transactionHistory'] = '';
422
- $array_details['version'] = Monext_Payline_Helper_Data::VERSION;
 
423
  $detail_result = $paylineSDK->getTransactionDetails($array_details);
424
-
425
  if($this->updateOrder($detail_result,$detail_result['transaction']['id'], 'DIRECT')){
426
  $redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
427
  if($detail_result['result']['code'] == '04003') {
428
  $newOrderStatus = Mage::getStoreConfig('payment/payline_common/fraud_order_status');
429
- } else {
430
- $newOrderStatus = Mage::getStoreConfig('payment/payline_common/new_order_status');
431
- }
432
- Mage::helper('payline')->setOrderStatus($this->order, $newOrderStatus);
433
-
 
434
  $array['wallet']['lastName'] = $array['buyer']['lastName'];
435
  $array['wallet']['firstName'] = $array['buyer']['firstName'];
436
  $array['wallet']['email'] = $array['buyer']['email'];
 
 
 
 
437
  Mage::helper('payline')->createWalletForCurrentCustomer($paylineSDK, $array);
438
  Mage::helper('payline')->automateCreateInvoiceAtShopReturn('DIRECT', $this->order);
439
-
440
  $this->order->save();
441
  Mage_Core_Controller_Varien_Action::_redirectSuccess($redirectUrl);
442
  }else{
@@ -484,7 +523,7 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
484
  //PAYMENT
485
  $array['payment']['action'] = Mage::getStoreConfig('payment/PaylineWALLET/payline_payment_action');
486
  $array['payment']['mode'] = 'CPT';
487
-
488
  //Get the wallet contract number from card type
489
  $wallet=Mage::getModel('payline/wallet')->getWalletData();
490
  $contract = Mage::getModel('payline/contract')
@@ -527,6 +566,7 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
527
  $walletId=$customer->getWalletId();
528
  $array['walletId']=$walletId;
529
  $array['cardInd'] = '';
 
530
 
531
  try{
532
  $author_result = $paylineSDK->doImmediateWalletPayment($array);
@@ -545,21 +585,23 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
545
  if(isset($author_result) && is_array($author_result) && $author_result['result']['code'] == '00000'){
546
  $array_details = array();
547
  $array_details['orderRef'] = $this->order->getRealOrderId();
548
- $array_details['transactionId'] = $author_result['transaction']['id'];
549
- $array_details['startDate'] = '';
550
- $array_details['endDate'] = '';
551
- $array_details['transactionHistory'] = '';
552
- $array_details['version'] = Monext_Payline_Helper_Data::VERSION;
 
553
  $detail_result = $paylineSDK->getTransactionDetails($array_details);
554
 
555
  if(is_array($detail_result) && $this->updateOrder($detail_result,$detail_result['transaction']['id'], 'WALLET')){
556
  $redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
557
  if($detail_result['result']['code'] == '04003') {
558
  $newOrderStatus = Mage::getStoreConfig('payment/payline_common/fraud_order_status');
559
- } else {
560
- $newOrderStatus = Mage::getStoreConfig('payment/payline_common/new_order_status');
561
- }
562
- Mage::helper('payline')->setOrderStatus($this->order, $newOrderStatus);
 
563
  Mage::helper('payline')->automateCreateInvoiceAtShopReturn('WALLET', $this->order);
564
  $this->order->save();
565
  Mage_Core_Controller_Varien_Action::_redirectSuccess($redirectUrl);
@@ -598,7 +640,6 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
598
  * Initialize the NX payment request
599
  */
600
  public function nxAction(){
601
-
602
  //Check if wallet is sendable
603
  //Must be done before call to Payline helper initialisation
604
  $expiredWalletId=false;
@@ -613,6 +654,7 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
613
  $array = $this->init();
614
  $helperPayline = Mage::helper('payline');
615
  $paylineSDK = $helperPayline->initPayline('NX',$array['payment']['currency']);
 
616
 
617
  //If wallet isn't sendable...
618
  if ($expiredWalletId){
@@ -673,7 +715,10 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
673
  }
674
  }
675
  }
676
-
 
 
 
677
  // EXECUTE
678
  try{
679
  $result = $paylineSDK->doWebPayment($array);
@@ -689,7 +734,7 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
689
  }
690
  // RESPONSE
691
  $initStatus = Mage::getStoreConfig('payment/payline_common/init_order_status');
692
- if(isset($result) && is_array($result) && $result['result']['code'] == '00000'){
693
  $this->order->setState(Mage_Sales_Model_Order::STATE_NEW,$initStatus,'',false);
694
  $this->order->save();
695
  header("location:".$result['redirectURL']);
@@ -776,6 +821,9 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
776
  if($privateDataList->key == 'orderRef'){
777
  $orderRef = $privateDataList->value;
778
  }
 
 
 
779
  }
780
  }
781
  if (!isset($orderRef)){
@@ -786,17 +834,22 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
786
  $this->order = Mage::getModel('sales/order')->loadByIncrementId($orderRef);
787
  $payment = $this->order->getPayment();
788
  if ($payment->getBaseAmountPaid() != $payment->getBaseAmountOrdered()) {
789
- if($res['result']['code'] == '04003') {
790
- $newOrderStatus = Mage::getStoreConfig('payment/payline_common/fraud_order_status');
791
- } else {
792
- $newOrderStatus = Mage::getStoreConfig('payment/payline_common/new_order_status');
793
- }
794
  $failedOrderStatus = Mage::getStoreConfig('payment/payline_common/failed_order_status');
 
795
  if(is_array($res) && $this->updateOrder($res,$res['transaction']['id'], 'CPT')){
796
  $redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
797
- Mage::helper('payline')->setOrderStatus($this->order, $newOrderStatus);
798
- if (isset($res['privateDataList']['privateData'][1]) && $res['privateDataList']['privateData'][1]->key=="newWalletId" && $res['privateDataList']['privateData'][1]->value!=''){
799
- $this->saveWallet($res['privateDataList']['privateData'][1]->value);
 
 
 
 
 
 
 
 
800
  }
801
  Mage::helper('payline')->automateCreateInvoiceAtShopReturn('CPT', $this->order);
802
  }else{
@@ -807,12 +860,14 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
807
  } else{
808
  $msgLog='Error during order update (#'.$this->order->getIncrementId().')';
809
  }
810
-
811
- if (is_array($res) && $res['result']['code'] == '02304') {
812
- $abandonedStatus = Mage::getStoreConfig('payment/payline_common/resignation_order_status');
813
- $this->order->setState(Mage_Sales_Model_Order::STATE_CANCELED,$abandonedStatus,$msgLog,false);
814
- } else {
815
- $this->order->setState(Mage_Sales_Model_Order::STATE_CANCELED,$failedOrderStatus,$msgLog,false);
 
 
816
  }
817
 
818
  Mage::helper('payline/logger')->log('[cptNotifAction] ' .$this->order->getIncrementId().$msgLog);
@@ -829,7 +884,6 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
829
  * Save NX payment result, called by the bank when the transaction is done
830
  */
831
  public function nxNotifAction(){
832
-
833
  $res = Mage::helper('payline')->initPayline('NX')->getWebPaymentDetails(array('token' => $_GET['token'], 'version' => Monext_Payline_Helper_Data::VERSION));
834
  if (isset($res['privateDataList']['privateData']['value'])){
835
  $orderRef=$res['privateDataList']['privateData']['value'];
@@ -846,13 +900,7 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
846
  $redirectUrl = Mage::getBaseUrl()."checkout/onepage/";
847
  }
848
  $this->order = Mage::getModel('sales/order')->loadByIncrementId($orderRef);
849
-
850
-
851
- if($res['result']['code'] == '04003') {
852
- $newOrderStatus = Mage::getStoreConfig('payment/payline_common/fraud_order_status');
853
- } else {
854
- $newOrderStatus = Mage::getStoreConfig('payment/payline_common/new_order_status');
855
- }
856
  $failedOrderStatus = Mage::getStoreConfig('payment/payline_common/failed_order_status');
857
 
858
  if(isset($res['billingRecordList']['billingRecord'])){
@@ -869,10 +917,20 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
869
  }
870
  }
871
  }
872
-
873
- if($billingRecord && $this->updateOrder($res,$billingRecord->transaction->id,'NX')){
874
  $redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
875
- Mage::helper('payline')->setOrderStatus($this->order, $newOrderStatus);
 
 
 
 
 
 
 
 
 
 
 
876
  if (isset($res['privateDataList']['privateData'][1]) && $res['privateDataList']['privateData'][1]->key=="newWalletId" && $res['privateDataList']['privateData'][1]->value!=''){
877
  $this->saveWallet($res['privateDataList']['privateData'][1]->value);
878
  }
@@ -889,11 +947,17 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
889
  $msgLog='Error during order update (#'.$this->order->getIncrementId().')';
890
  }
891
 
892
- if (is_array($res) && ($res['result']['code'] == '02304')) {
893
- $abandonedStatus = Mage::getStoreConfig('payment/payline_common/resignation_order_status');
894
- $this->order->setState(Mage_Sales_Model_Order::STATE_CANCELED,$abandonedStatus,$msgLog,false);
895
- } else {
896
- $this->order->setState(Mage_Sales_Model_Order::STATE_CANCELED,$failedOrderStatus,$msgLog,false);
 
 
 
 
 
 
897
  }
898
 
899
  Mage::helper('payline/logger')->log('[nxNotifAction] ' .$this->order->getIncrementId().$msgLog);
@@ -902,7 +966,98 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
902
  }
903
  $this->order->save();
904
  return $redirectUrl;
905
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
906
  }
907
 
908
  /**
126
  }
127
  $array['buyer']['customerId'] = Mage::helper('payline')->encodeString($email);
128
 
129
+ // ADDRESS : !!!WARNING!!! PaylineSDK v4.33 reverse billingAddress & shippingAdress.
130
+ // Take this : https://www.youtube.com/watch?v=MA6kXUgZ7lE&list=PLpyrjJvJ7GJ7bM5GjzwHvZIqe6c5l3iF6
131
+ $array['shippingAddress']['name'] = Mage::helper('payline')->encodeString(substr($billingAddress->getName(),0,100));
132
+ $array['shippingAddress']['street1'] = Mage::helper('payline')->encodeString(substr($billingAddress->getStreet1(),0,100));
133
+ $array['shippingAddress']['street2'] = Mage::helper('payline')->encodeString(substr($billingAddress->getStreet2(),0,100));
134
+ $array['shippingAddress']['cityName'] = Mage::helper('payline')->encodeString(substr($billingAddress->getCity(),0,40));
135
+ $array['shippingAddress']['zipCode'] = substr($billingAddress->getPostcode(),0,12);
136
  //The $billing->getCountry() returns a 2 letter ISO2, should be fine
137
+ $array['shippingAddress']['country'] = $billingAddress->getCountry();
138
  $forbidenCars = array(' ','.','(',')','-');
139
  $phone = str_replace($forbidenCars,'',$billingAddress->getTelephone());
140
  $regexpTel='/^\+?[0-9]{1,14}$/';
141
  if (preg_match($regexpTel, $phone)){
142
+ $array['shippingAddress']['phone']=$phone;
143
  }else{
144
+ $array['shippingAddress']['phone']='';
145
  }
146
+ $array['billingAddress'] = null;
147
  return $array;
148
  }
149
 
156
  private function updateOrder($res,$transactionId, $paymentType='CPT'){
157
  Mage::helper('payline/logger')->log("[updateOrder] Mise à jour commande ".$this->order->getIncrementId()." (mode $paymentType) avec la transaction $transactionId");
158
  $orderOk = false;
159
+ if( $res['result']['code'] ) {
160
+ $resultCode = $res['result']['code'];
161
+ $acceptedCodes = array('00000','02500','02501','04003');
162
+ if( in_array( $resultCode, $acceptedCodes ) ) { // transaction OK
163
  $orderOk = true;
164
+ if($paymentType == 'NX') {
 
165
  Mage::helper('payline/logger')->log("[updateOrder] Cas du paiement NX");
166
  if (isset($res['billingRecordList']['billingRecord'][0])) {
167
  $code_echeance = $res['billingRecordList']['billingRecord'][0]->result->code;
205
  $product_id = $item->getProductId(); // get its ID
206
  $stock = Mage::getModel('cataloginventory/stock_item')->loadByProduct($product_id); // Load the stock for this product
207
  $stock->setQty($stock->getQty()+$quantity); // Set to new Qty
208
+ //if qtty = 0 after order and order fails, set stock status is_in_stock to true
209
+ if ( $stock->getQty() > $stock->getMinQty() && !$stock->getIsInStock() ) {
210
+ $stock->setIsInStock( 1 );
211
+ }
212
  $stock->save(); // Save
213
  continue;
214
  }
216
  }
217
  }
218
 
219
+ /**
220
+ * Force this action code of some payment methods to the given action code
221
+ * @param $paymentMethod {string}
222
+ * @param $array {array} conf array. $array is a reference, so no need to return it.
223
+ * @param $actionCode {string} forced action code set in $array
224
+ */
225
+ private function forcePaymentActionTo($paymentMethod, &$array, $actionCode)
226
+ {
227
+ switch( $paymentMethod ) {
228
+ case 'UKASH':
229
+ case 'MONEYCLIC':
230
+ case 'TICKETSURF':
231
+ case 'SKRILL(MONEYBOOKERS)':
232
+ case 'LEETCHI':
233
+ Mage::helper('payline/logger')->log('[cptAction] order '.$array['order']['ref'].' - '.$paymentMethod.' selected => payment action is forced to '.$actionCode);
234
+ $array['payment']['action'] = $actionCode;
235
+ break;
236
+ default: break;
237
+ }
238
+ }
239
+
240
  /**
241
  * Initialize the cpt payment request
242
  */
258
  $paylineSDK = $helperPayline->initPayline('CPT',$array['payment']['currency']);
259
  $paymentMethod = $this->order->getPayment()->getCcType();
260
  $array['payment']['action'] = Mage::getStoreConfig('payment/PaylineCPT/payline_payment_action');
261
+ $array['version'] = Monext_Payline_Helper_Data::VERSION;
262
  if($paymentMethod) {
263
  // debut ajout FSZ 15/11/2012
264
  Mage::helper('payline/logger')->log('[cptAction] order '.$array['order']['ref'].' - customer selected contract '.$paymentMethod);
265
+
266
+ $contractCPT = Mage::getModel('payline/contract')
267
+ ->getCollection()
268
+ ->addFieldToFilter( 'number', $paymentMethod )
269
+ ->getFirstItem();
270
+
271
+ // $paymentMethod = contract number. Filter must be on contract type
272
+ $this->forcePaymentActionTo( $contractCPT->getContractType(), $array, '101' );
273
+
274
  // fin ajout FSZ 15/11/2012
275
  $array['payment']['contractNumber'] = $paymentMethod;
276
  $array['contracts'] = array($paymentMethod);
328
  }
329
  }
330
  }
331
+
332
+ // ADD CONTRACT WALLET ARRAY TO $array
333
+ $array['walletContracts'] = Mage::helper('payline')->buildContractNumberWalletList();
334
+
335
  // EXECUTE
336
  try{
337
  $result = $paylineSDK->doWebPayment($array);
393
  $privateData1['key'] = 'orderRef';
394
  $privateData1['value'] = substr(str_replace(array("\r","\n","\t"), array('','',''),$array['order']['ref']), 0,255);
395
  $paylineSDK->setPrivate($privateData1);
396
+
397
  //ORDER DETAILS (optional)
398
  $items = $this->order->getAllItems();
399
  if ($items) {
411
  continue;
412
  }
413
  }
 
414
  // CARD INFO
415
  $array['card']['number'] = $_SESSION['payline_ccdata']->cc_number;
416
  $array['card']['cardholder'] = $_SESSION['payline_ccdata']->cc_owner;
447
  // RESPONSE
448
  $failedOrderStatus = Mage::getStoreConfig('payment/payline_common/failed_order_status');
449
  if(isset($author_result) && is_array($author_result) && $author_result['result']['code'] == '00000'){
450
+ $array_details = array();
451
+ $array_details['orderRef'] = $this->order->getRealOrderId();
452
+ $array_details['transactionId'] = $author_result['transaction']['id'];
453
+ $array_details['startDate'] = '';
454
+ $array_details['endDate'] = '';
455
+ $array_details['transactionHistory']= '';
456
+ $array_details['version'] = Monext_Payline_Helper_Data::VERSION;
457
+ $array_details['archiveSearch'] = '';
458
  $detail_result = $paylineSDK->getTransactionDetails($array_details);
459
+
460
  if($this->updateOrder($detail_result,$detail_result['transaction']['id'], 'DIRECT')){
461
  $redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
462
  if($detail_result['result']['code'] == '04003') {
463
  $newOrderStatus = Mage::getStoreConfig('payment/payline_common/fraud_order_status');
464
+ Mage::helper('payline')->setOrderStatus($this->order, $newOrderStatus);
465
+ } else {
466
+ Mage::helper('payline')->setOrderStatusAccordingToPaymentMode(
467
+ $this->order, $array['payment']['action'] );
468
+ }
469
+
470
  $array['wallet']['lastName'] = $array['buyer']['lastName'];
471
  $array['wallet']['firstName'] = $array['buyer']['firstName'];
472
  $array['wallet']['email'] = $array['buyer']['email'];
473
+ // remember, the Beast is not so far
474
+ $array['address'] = $array['shippingAddress'];
475
+ $array['ownerAddress'] = null;
476
+
477
  Mage::helper('payline')->createWalletForCurrentCustomer($paylineSDK, $array);
478
  Mage::helper('payline')->automateCreateInvoiceAtShopReturn('DIRECT', $this->order);
 
479
  $this->order->save();
480
  Mage_Core_Controller_Varien_Action::_redirectSuccess($redirectUrl);
481
  }else{
523
  //PAYMENT
524
  $array['payment']['action'] = Mage::getStoreConfig('payment/PaylineWALLET/payline_payment_action');
525
  $array['payment']['mode'] = 'CPT';
526
+
527
  //Get the wallet contract number from card type
528
  $wallet=Mage::getModel('payline/wallet')->getWalletData();
529
  $contract = Mage::getModel('payline/contract')
566
  $walletId=$customer->getWalletId();
567
  $array['walletId']=$walletId;
568
  $array['cardInd'] = '';
569
+ $array['version'] = Monext_Payline_Helper_Data::VERSION;
570
 
571
  try{
572
  $author_result = $paylineSDK->doImmediateWalletPayment($array);
585
  if(isset($author_result) && is_array($author_result) && $author_result['result']['code'] == '00000'){
586
  $array_details = array();
587
  $array_details['orderRef'] = $this->order->getRealOrderId();
588
+ $array_details['transactionId'] = $author_result['transaction']['id'];
589
+ $array_details['startDate'] = '';
590
+ $array_details['endDate'] = '';
591
+ $array_details['transactionHistory']= '';
592
+ $array_details['version'] = Monext_Payline_Helper_Data::VERSION;
593
+ $array_details['archiveSearch'] = '';
594
  $detail_result = $paylineSDK->getTransactionDetails($array_details);
595
 
596
  if(is_array($detail_result) && $this->updateOrder($detail_result,$detail_result['transaction']['id'], 'WALLET')){
597
  $redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
598
  if($detail_result['result']['code'] == '04003') {
599
  $newOrderStatus = Mage::getStoreConfig('payment/payline_common/fraud_order_status');
600
+ Mage::helper('payline')->setOrderStatus($this->order, $newOrderStatus);
601
+ } else {
602
+ Mage::helper('payline')->setOrderStatusAccordingToPaymentMode(
603
+ $this->order, $array['payment']['action'] );
604
+ }
605
  Mage::helper('payline')->automateCreateInvoiceAtShopReturn('WALLET', $this->order);
606
  $this->order->save();
607
  Mage_Core_Controller_Varien_Action::_redirectSuccess($redirectUrl);
640
  * Initialize the NX payment request
641
  */
642
  public function nxAction(){
 
643
  //Check if wallet is sendable
644
  //Must be done before call to Payline helper initialisation
645
  $expiredWalletId=false;
654
  $array = $this->init();
655
  $helperPayline = Mage::helper('payline');
656
  $paylineSDK = $helperPayline->initPayline('NX',$array['payment']['currency']);
657
+ $array['version'] = Monext_Payline_Helper_Data::VERSION;
658
 
659
  //If wallet isn't sendable...
660
  if ($expiredWalletId){
715
  }
716
  }
717
  }
718
+
719
+ // ADD CONTRACT WALLET ARRAY TO $array
720
+ $array['walletContracts'] = Mage::helper('payline')->buildContractNumberWalletList();
721
+
722
  // EXECUTE
723
  try{
724
  $result = $paylineSDK->doWebPayment($array);
734
  }
735
  // RESPONSE
736
  $initStatus = Mage::getStoreConfig('payment/payline_common/init_order_status');
737
+ if(isset($result) && is_array($result) && $result['result']['code'] == '00000'){
738
  $this->order->setState(Mage_Sales_Model_Order::STATE_NEW,$initStatus,'',false);
739
  $this->order->save();
740
  header("location:".$result['redirectURL']);
821
  if($privateDataList->key == 'orderRef'){
822
  $orderRef = $privateDataList->value;
823
  }
824
+ if($privateDataList->key == 'newWalletId'){
825
+ $newWalletId = $privateDataList->value;
826
+ }
827
  }
828
  }
829
  if (!isset($orderRef)){
834
  $this->order = Mage::getModel('sales/order')->loadByIncrementId($orderRef);
835
  $payment = $this->order->getPayment();
836
  if ($payment->getBaseAmountPaid() != $payment->getBaseAmountOrdered()) {
837
+
 
 
 
 
838
  $failedOrderStatus = Mage::getStoreConfig('payment/payline_common/failed_order_status');
839
+
840
  if(is_array($res) && $this->updateOrder($res,$res['transaction']['id'], 'CPT')){
841
  $redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
842
+
843
+ if($res['result']['code'] == '04003') {
844
+ $newOrderStatus = Mage::getStoreConfig('payment/payline_common/fraud_order_status');
845
+ Mage::helper('payline')->setOrderStatus($this->order, $newOrderStatus);
846
+ } else {
847
+ Mage::helper('payline')->setOrderStatusAccordingToPaymentMode(
848
+ $this->order, $res['payment']['action'] );
849
+ }
850
+
851
+ if(isset($newWalletId)){
852
+ $this->saveWallet($newWalletId);
853
  }
854
  Mage::helper('payline')->automateCreateInvoiceAtShopReturn('CPT', $this->order);
855
  }else{
860
  } else{
861
  $msgLog='Error during order update (#'.$this->order->getIncrementId().')';
862
  }
863
+
864
+ if (is_array($res) && !($res['result']['code'] == '02306')) {
865
+ if ($res['result']['code'] == '02304') {
866
+ $abandonedStatus = Mage::getStoreConfig('payment/payline_common/resignation_order_status');
867
+ $this->order->setState(Mage_Sales_Model_Order::STATE_CANCELED,$abandonedStatus,$msgLog,false);
868
+ } else {
869
+ $this->order->setState(Mage_Sales_Model_Order::STATE_CANCELED,$failedOrderStatus,$msgLog,false);
870
+ }
871
  }
872
 
873
  Mage::helper('payline/logger')->log('[cptNotifAction] ' .$this->order->getIncrementId().$msgLog);
884
  * Save NX payment result, called by the bank when the transaction is done
885
  */
886
  public function nxNotifAction(){
 
887
  $res = Mage::helper('payline')->initPayline('NX')->getWebPaymentDetails(array('token' => $_GET['token'], 'version' => Monext_Payline_Helper_Data::VERSION));
888
  if (isset($res['privateDataList']['privateData']['value'])){
889
  $orderRef=$res['privateDataList']['privateData']['value'];
900
  $redirectUrl = Mage::getBaseUrl()."checkout/onepage/";
901
  }
902
  $this->order = Mage::getModel('sales/order')->loadByIncrementId($orderRef);
903
+
 
 
 
 
 
 
904
  $failedOrderStatus = Mage::getStoreConfig('payment/payline_common/failed_order_status');
905
 
906
  if(isset($res['billingRecordList']['billingRecord'])){
917
  }
918
  }
919
  }
920
+ if($billingRecord && $this->updateOrder($res,$billingRecord->transaction->id,'NX')) {
 
921
  $redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
922
+
923
+ if($res['result']['code'] == '04003') {
924
+ $newOrderStatus = Mage::getStoreConfig('payment/payline_common/fraud_order_status');
925
+ Mage::helper('payline')->setOrderStatus($this->order, $newOrderStatus);
926
+ } else if( $res['result']['code'] == '02501' ) { // credit card (CC) will expire
927
+ $statusScheduleAlert = Mage::getStoreConfig('payment/PaylineNX/status_when_payline_schedule_alert');
928
+ Mage::helper('payline')->setOrderStatus( $this->order, $statusScheduleAlert );
929
+ } else {
930
+ Mage::helper('payline')->setOrderStatusAccordingToPaymentMode(
931
+ $this->order, $res['payment']['action'] );
932
+ }
933
+
934
  if (isset($res['privateDataList']['privateData'][1]) && $res['privateDataList']['privateData'][1]->key=="newWalletId" && $res['privateDataList']['privateData'][1]->value!=''){
935
  $this->saveWallet($res['privateDataList']['privateData'][1]->value);
936
  }
947
  $msgLog='Error during order update (#'.$this->order->getIncrementId().')';
948
  }
949
 
950
+ if (is_array($res) && !($res['result']['code'] == '02306')) {
951
+ if (is_array($res) && ($res['result']['code'] == '02304')) {
952
+ $abandonedStatus = Mage::getStoreConfig('payment/payline_common/resignation_order_status');
953
+ $this->order->setState(Mage_Sales_Model_Order::STATE_CANCELED,$abandonedStatus,$msgLog,false);
954
+ } else {
955
+ $statusScheduleAlert = Mage::getStoreConfig('payment/PaylineNX/status_when_payline_schedule_alert');
956
+ if( !empty( $statusScheduleAlert ) ) { // if user conf is set
957
+ $failedOrderStatus = $statusScheduleAlert;
958
+ }
959
+ $this->order->setState(Mage_Sales_Model_Order::STATE_CANCELED,$failedOrderStatus,$msgLog,false);
960
+ }
961
  }
962
 
963
  Mage::helper('payline/logger')->log('[nxNotifAction] ' .$this->order->getIncrementId().$msgLog);
966
  }
967
  $this->order->save();
968
  return $redirectUrl;
969
+ }
970
+
971
+ /**
972
+ * Method called by Payline to notify (except first) each term payment.
973
+ * Url to this action must be set in Payline personnal account.
974
+ */
975
+ public function nxTermNotifAction()
976
+ {
977
+ $statusScheduleAlert = Mage::getStoreConfig('payment/PaylineNX/status_when_payline_schedule_alert');
978
+ $statusCCExpired = Mage::getStoreConfig('payment/PaylineNX/status_when_credit_card_schedule_is_expired');
979
+ if( !empty( $statusScheduleAlert ) || !empty( $statusCCExpired ) ) {
980
+ if( $this->isNxTermParamsOk( $_GET ) ) {
981
+ /* BILL = value required for terms notifications
982
+ WEBTRS = value for cash web payment */
983
+ if( $_GET['notificationType'] == 'BILL' ) { //
984
+ $transactionParams = array();
985
+ $transactionParams['transactionId'] = $_GET['transactionId'];
986
+ $transactionParams['orderRef'] = $_GET['orderRef'];
987
+ $transactionParams['version'] = Monext_Payline_Helper_Data::VERSION;
988
+ $transactionParams['startDate'] = '';
989
+ $transactionParams['endDate'] = '';
990
+ $transactionParams['transactionHistory']= '';
991
+ $transactionParams['archiveSearch'] = '';
992
+
993
+ $res = Mage::helper('payline')->initPayline('NX')->getTransactionDetails( $transactionParams );
994
+
995
+ if( isset( $res )
996
+ && is_array( $res )
997
+ && isset( $res['result'] )
998
+ && isset( $res['result']['code'] ) )
999
+ {
1000
+ $mustSave = true;
1001
+ switch( $res['result']['code'] ) {
1002
+ case '00000':
1003
+ case '02500':
1004
+ case '04003':
1005
+ $mustSave = false;
1006
+ break;
1007
+ case '02501': // payment card will expire
1008
+ if( !empty( $statusScheduleAlert ) ) {
1009
+ $this->order = $this->setOrderStatus( $statusScheduleAlert, $_GET['orderRef'] );
1010
+ break;
1011
+ }
1012
+ default: // if default => error (cc expired or other errors)
1013
+ if( !empty( $statusCCExpired ) ) {
1014
+ $this->order = $this->setOrderStatus( $statusCCExpired, $_GET['orderRef'] );
1015
+ } else {
1016
+ $mustSave = false;
1017
+ }
1018
+ break;
1019
+ }
1020
+ if( $mustSave ) { $this->order->save(); }
1021
+ } // end if ( isset($res) ...
1022
+ } // end if BILL
1023
+ } // end if $this->isNxTermParamsOk
1024
+ } // end if !empty( $statusScheduleAlert ) || !empty( $statusCCExpired )
1025
+ } // end func
1026
+
1027
+ /**
1028
+ * Check if $params contains all the required keys for PaylineSDK#getTransactionDetails()
1029
+ * @param $params {array} array params for PaylineSDK#getTransactionDetails(), should contain all keys required.
1030
+ * @return bool true if $params ok, otherwise false
1031
+ */
1032
+ private function isNxTermParamsOk($params)
1033
+ {
1034
+ if( !isset( $params['notificationType'] ) ) return false;
1035
+ if( !isset( $params['paymentRecordId'] ) ) return false;
1036
+ if( !isset( $params['walletId'] ) ) return false;
1037
+ if( !isset( $params['transactionId'] ) ) return false;
1038
+ if( !isset( $params['billingRecordDate'] ) ) return false;
1039
+ if( !isset( $params['orderRef'] ) ) return false;
1040
+ return true;
1041
+ }
1042
+
1043
+ /**
1044
+ * Set an order status. If !isset($this->order) process order model from $orderRef
1045
+ * @param $status {string} status order to assign
1046
+ * @param $orderRef {string} entity_id order
1047
+ * @return Mage_Sales_Model_Order Return the order object with new status set
1048
+ */
1049
+ private function setOrderStatus($status, $orderRef)
1050
+ {
1051
+ if( isset( $this->order ) ) {
1052
+ $order = $this->order;
1053
+ } else {
1054
+ $order = Mage::getModel('sales/order')
1055
+ ->getCollection()
1056
+ ->addFieldToFilter('increment_id', $orderRef)
1057
+ ->getFirstItem();
1058
+ }
1059
+ Mage::helper('payline')->setOrderStatus( $order, $status );
1060
+ return $order;
1061
  }
1062
 
1063
  /**
app/code/community/Monext/Payline/controllers/WalletController.php CHANGED
@@ -38,7 +38,7 @@ class Monext_Payline_WalletController extends Mage_Core_Controller_Front_Action
38
  $this->_redirect('payline/wallet/subscribe');
39
  return;
40
  }
41
-
42
  $this->loadLayout();
43
 
44
  $this->getLayout()->getBlock('head')->setTitle($this->__('Wallet management'));
@@ -82,7 +82,8 @@ class Monext_Payline_WalletController extends Mage_Core_Controller_Front_Action
82
  'firstName'=>Mage::helper('payline')->encodeString(substr($customer->getFirstname(),0,100)),
83
  'walletId'=>Mage::getModel('payline/wallet')->generateWalletId()
84
  ),
85
- 'address'=>array(),
 
86
  );
87
 
88
  $email=$customer->getEmail();
@@ -99,6 +100,11 @@ class Monext_Payline_WalletController extends Mage_Core_Controller_Front_Action
99
  $array['contracts']=explode(';',$paylineHelper->contractNumberList);
100
 
101
  $array['updatePersonalDetails'] = (Mage::getStoreConfig('payment/PaylineWALLET/update_personal_details') ? 1 : 0);
 
 
 
 
 
102
  try{
103
  $resultCreateWebWallet=$paylineSDK->createWebWallet($array);
104
  }catch (Exception $e){
@@ -220,8 +226,25 @@ class Monext_Payline_WalletController extends Mage_Core_Controller_Front_Action
220
  'contractNumber' => ($customer->getWalletContractNumber()?$customer->getWalletContractNumber():$paylineHelper->contractNumber),
221
  'cardInd' => '',
222
  'updatePersonalDetails' => (Mage::getStoreConfig('payment/PaylineWALLET/update_personal_details') ? 1 : 0),
223
- 'updatePaymentDetails' => (Mage::getStoreConfig('payment/PaylineWALLET/update_payment_details') ? 1 : 0)
 
 
 
 
 
 
 
 
 
224
  );
 
 
 
 
 
 
 
 
225
  $paylineSDK->setPrivate(array('customerId'=>$customer->getId()));
226
  try{
227
  $res=$paylineSDK->updateWebWallet($array);
38
  $this->_redirect('payline/wallet/subscribe');
39
  return;
40
  }
41
+
42
  $this->loadLayout();
43
 
44
  $this->getLayout()->getBlock('head')->setTitle($this->__('Wallet management'));
82
  'firstName'=>Mage::helper('payline')->encodeString(substr($customer->getFirstname(),0,100)),
83
  'walletId'=>Mage::getModel('payline/wallet')->generateWalletId()
84
  ),
85
+ 'billingAddress'=>array(),
86
+ 'shippingAddress'=>array()
87
  );
88
 
89
  $email=$customer->getEmail();
100
  $array['contracts']=explode(';',$paylineHelper->contractNumberList);
101
 
102
  $array['updatePersonalDetails'] = (Mage::getStoreConfig('payment/PaylineWALLET/update_personal_details') ? 1 : 0);
103
+ $array['version'] = Monext_Payline_Helper_Data::VERSION;
104
+
105
+ // ADD CONTRACT WALLET ARRAY TO $array
106
+ $array['walletContracts'] = Mage::helper('payline')->buildContractNumberWalletList();
107
+
108
  try{
109
  $resultCreateWebWallet=$paylineSDK->createWebWallet($array);
110
  }catch (Exception $e){
226
  'contractNumber' => ($customer->getWalletContractNumber()?$customer->getWalletContractNumber():$paylineHelper->contractNumber),
227
  'cardInd' => '',
228
  'updatePersonalDetails' => (Mage::getStoreConfig('payment/PaylineWALLET/update_personal_details') ? 1 : 0),
229
+ 'updatePaymentDetails' => (Mage::getStoreConfig('payment/PaylineWALLET/update_payment_details') ? 1 : 0),
230
+ 'updateOwnerDetails' => 0,
231
+ 'version' => Monext_Payline_Helper_Data::VERSION,
232
+ 'billingAddress' => '',
233
+ 'shippingAddress' => '',
234
+ 'buyer' => array(
235
+ 'lastName'=> Mage::helper('payline')->encodeString(substr($customer->getLastname(),0,100)),
236
+ 'firstName'=> Mage::helper('payline')->encodeString(substr($customer->getFirstname(),0,100)),
237
+ 'walletId' => $walletId
238
+ )
239
  );
240
+ $email=$customer->getEmail();
241
+ $pattern = '/\+/i';
242
+ $charPlusExist = preg_match($pattern, $email);
243
+ if (strlen($email)<=50 && Zend_Validate::is($email, 'EmailAddress') && !$charPlusExist) {
244
+ $array['buyer']['email']=Mage::helper('payline')->encodeString($email);
245
+ }else{
246
+ $array['buyer']['email'] = '';
247
+ }
248
  $paylineSDK->setPrivate(array('customerId'=>$customer->getId()));
249
  try{
250
  $res=$paylineSDK->updateWebWallet($array);
app/code/community/Monext/Payline/etc/config.xml CHANGED
@@ -1,8 +1,8 @@
1
- <?xml version="1.0"?>
2
  <config>
3
  <modules>
4
  <Monext_Payline>
5
- <version>1.7.5</version>
6
  </Monext_Payline>
7
  </modules>
8
  <global>
@@ -37,7 +37,14 @@
37
  <table>payline_nx_fees</table>
38
  </fees>
39
  </entities>
40
- </payline_mysql4>
 
 
 
 
 
 
 
41
  </models>
42
  <helpers>
43
  <payline>
1
+ <?xml version="1.0"?>
2
  <config>
3
  <modules>
4
  <Monext_Payline>
5
+ <version>1.7.6</version>
6
  </Monext_Payline>
7
  </modules>
8
  <global>
37
  <table>payline_nx_fees</table>
38
  </fees>
39
  </entities>
40
+ </payline_mysql4>
41
+
42
+ <sales>
43
+ <rewrite>
44
+ <order_invoice>Monext_Payline_Model_Order_Invoice</order_invoice>
45
+ <order_payment>Monext_Payline_Model_Order_Payment</order_payment>
46
+ </rewrite>
47
+ </sales>
48
  </models>
49
  <helpers>
50
  <payline>
app/code/community/Monext/Payline/etc/system.xml CHANGED
@@ -87,16 +87,36 @@
87
  <show_in_website>1</show_in_website>
88
  <show_in_store>1</show_in_store>
89
  </init_order_status>
90
- <new_order_status translate="label">
91
- <label>Order status when payment accepted by Payline</label>
92
- <comment></comment>
93
  <frontend_type>select</frontend_type>
94
  <source_model>payline/datasource_status</source_model>
95
  <sort_order>130</sort_order>
96
  <show_in_default>1</show_in_default>
97
  <show_in_website>1</show_in_website>
98
  <show_in_store>1</show_in_store>
99
- </new_order_status>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  <canceled_order_status translate="label">
101
  <label>Order status when payment canceled by customer</label>
102
  <comment></comment>
@@ -228,6 +248,18 @@
228
  <show_in_website>1</show_in_website>
229
  <show_in_store>1</show_in_store>
230
  </payline_payment_action>
 
 
 
 
 
 
 
 
 
 
 
 
231
  <send_wallet_id translate="label comment">
232
  <label>Send wallet id</label>
233
  <comment>If wallet id is provided, wallet payment will be available during web payment</comment>
@@ -247,6 +279,16 @@
247
  <show_in_website>1</show_in_website>
248
  <show_in_store>1</show_in_store>
249
  </automate_invoice_creation>
 
 
 
 
 
 
 
 
 
 
250
  </fields>
251
  </PaylineCPT>
252
  <PaylineNX translate="label">
@@ -363,6 +405,26 @@
363
  <show_in_website>1</show_in_website>
364
  <show_in_store>1</show_in_store>
365
  </automate_invoice_creation>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
366
  </fields>
367
  </PaylineNX>
368
  <PaylineDIRECT translate="label">
@@ -398,6 +460,18 @@
398
  <show_in_website>1</show_in_website>
399
  <show_in_store>1</show_in_store>
400
  </payline_payment_action>
 
 
 
 
 
 
 
 
 
 
 
 
401
  <automate_invoice_creation>
402
  <label>Automate invoice creation</label>
403
  <frontend_type>select</frontend_type>
@@ -407,6 +481,16 @@
407
  <show_in_website>1</show_in_website>
408
  <show_in_store>1</show_in_store>
409
  </automate_invoice_creation>
 
 
 
 
 
 
 
 
 
 
410
  </fields>
411
  </PaylineDIRECT>
412
 
@@ -489,6 +573,28 @@
489
  <show_in_website>1</show_in_website>
490
  <show_in_store>1</show_in_store>
491
  </payline_payment_action>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
492
  <update_personal_details translate="label">
493
  <label>Allow user to update his personal details</label>
494
  <source_model>adminhtml/system_config_source_yesno</source_model>
87
  <show_in_website>1</show_in_website>
88
  <show_in_store>1</show_in_store>
89
  </init_order_status>
90
+ <authorized_order_status>
91
+ <label>Order status when payment is authorized</label>
92
+ <comment>Authorize only</comment>
93
  <frontend_type>select</frontend_type>
94
  <source_model>payline/datasource_status</source_model>
95
  <sort_order>130</sort_order>
96
  <show_in_default>1</show_in_default>
97
  <show_in_website>1</show_in_website>
98
  <show_in_store>1</show_in_store>
99
+ </authorized_order_status>
100
+ <captured_order_status>
101
+ <label>Order status when payment is captured</label>
102
+ <comment>Authorize + capture or re-authorized + capture or capture</comment>
103
+ <frontend_type>select</frontend_type>
104
+ <source_model>payline/datasource_status</source_model>
105
+ <sort_order>131</sort_order>
106
+ <show_in_default>1</show_in_default>
107
+ <show_in_website>1</show_in_website>
108
+ <show_in_store>1</show_in_store>
109
+ </captured_order_status>
110
+ <reauthorized_order_status>
111
+ <label>Order status when payment is re-authorized</label>
112
+ <comment>Re-authorize only</comment>
113
+ <frontend_type>select</frontend_type>
114
+ <source_model>payline/datasource_status</source_model>
115
+ <sort_order>132</sort_order>
116
+ <show_in_default>1</show_in_default>
117
+ <show_in_website>1</show_in_website>
118
+ <show_in_store>1</show_in_store>
119
+ </reauthorized_order_status>
120
  <canceled_order_status translate="label">
121
  <label>Order status when payment canceled by customer</label>
122
  <comment></comment>
248
  <show_in_website>1</show_in_website>
249
  <show_in_store>1</show_in_store>
250
  </payline_payment_action>
251
+ <capture_payment_when_i_said translate="label">
252
+ <label>Capture payment when action / status is triggered</label>
253
+ <comment></comment>
254
+ <frontend_type>select</frontend_type>
255
+ <source_model>payline/datasource_Capturepaymentoptions</source_model>
256
+ <sort_order>61</sort_order>
257
+ <show_in_default>1</show_in_default>
258
+ <show_in_website>1</show_in_website>
259
+ <show_in_store>1</show_in_store>
260
+ <!-- 100 => authorization -->
261
+ <depends><payline_payment_action>100</payline_payment_action></depends>
262
+ </capture_payment_when_i_said>
263
  <send_wallet_id translate="label comment">
264
  <label>Send wallet id</label>
265
  <comment>If wallet id is provided, wallet payment will be available during web payment</comment>
279
  <show_in_website>1</show_in_website>
280
  <show_in_store>1</show_in_store>
281
  </automate_invoice_creation>
282
+ <action_when_order_seven_day_old>
283
+ <label>Action when order is at least 7 days old</label>
284
+ <comment>Order action when trying to capture and order is at least 7 seven days old</comment>
285
+ <frontend_type>select</frontend_type>
286
+ <source_model>payline/datasource_paymentactionsreauth</source_model>
287
+ <sort_order>80</sort_order>
288
+ <show_in_default>1</show_in_default>
289
+ <show_in_website>1</show_in_website>
290
+ <show_in_store>1</show_in_store>
291
+ </action_when_order_seven_day_old>
292
  </fields>
293
  </PaylineCPT>
294
  <PaylineNX translate="label">
405
  <show_in_website>1</show_in_website>
406
  <show_in_store>1</show_in_store>
407
  </automate_invoice_creation>
408
+ <status_when_payline_schedule_alert>
409
+ <label>Order status when credit card expiration date is close</label>
410
+ <frontend_type>select</frontend_type>
411
+ <source_model>payline/datasource_statusrowempty</source_model>
412
+ <sort_order>100</sort_order>
413
+ <show_in_default>1</show_in_default>
414
+ <show_in_website>1</show_in_website>
415
+ <show_in_store>1</show_in_store>
416
+ <can_be_empty>1</can_be_empty>
417
+ </status_when_payline_schedule_alert>
418
+ <status_when_credit_card_schedule_is_expired>
419
+ <label>Order status when an instalment fails</label>
420
+ <frontend_type>select</frontend_type>
421
+ <source_model>payline/datasource_statusrowempty</source_model>
422
+ <sort_order>110</sort_order>
423
+ <show_in_default>1</show_in_default>
424
+ <show_in_website>1</show_in_website>
425
+ <show_in_store>1</show_in_store>
426
+ <can_be_empty>1</can_be_empty>
427
+ </status_when_credit_card_schedule_is_expired>
428
  </fields>
429
  </PaylineNX>
430
  <PaylineDIRECT translate="label">
460
  <show_in_website>1</show_in_website>
461
  <show_in_store>1</show_in_store>
462
  </payline_payment_action>
463
+ <capture_payment_when_i_said translate="label">
464
+ <label>Capture payment when action / status is triggered</label>
465
+ <comment></comment>
466
+ <frontend_type>select</frontend_type>
467
+ <source_model>payline/datasource_Capturepaymentoptions</source_model>
468
+ <sort_order>31</sort_order>
469
+ <show_in_default>1</show_in_default>
470
+ <show_in_website>1</show_in_website>
471
+ <show_in_store>1</show_in_store>
472
+ <!-- 100 => authorization -->
473
+ <depends><payline_payment_action>100</payline_payment_action></depends>
474
+ </capture_payment_when_i_said>
475
  <automate_invoice_creation>
476
  <label>Automate invoice creation</label>
477
  <frontend_type>select</frontend_type>
481
  <show_in_website>1</show_in_website>
482
  <show_in_store>1</show_in_store>
483
  </automate_invoice_creation>
484
+ <action_when_order_seven_day_old>
485
+ <label>Action when order is at least 7 days old</label>
486
+ <comment>Order action when trying to capture and order is at least 7 seven days old</comment>
487
+ <frontend_type>select</frontend_type>
488
+ <source_model>payline/datasource_paymentactionsreauth</source_model>
489
+ <sort_order>50</sort_order>
490
+ <show_in_default>1</show_in_default>
491
+ <show_in_website>1</show_in_website>
492
+ <show_in_store>1</show_in_store>
493
+ </action_when_order_seven_day_old>
494
  </fields>
495
  </PaylineDIRECT>
496
 
573
  <show_in_website>1</show_in_website>
574
  <show_in_store>1</show_in_store>
575
  </payline_payment_action>
576
+ <capture_payment_when_i_said translate="label">
577
+ <label>Capture payment when action / status is triggered</label>
578
+ <comment></comment>
579
+ <frontend_type>select</frontend_type>
580
+ <source_model>payline/datasource_Capturepaymentoptions</source_model>
581
+ <sort_order>71</sort_order>
582
+ <show_in_default>1</show_in_default>
583
+ <show_in_website>1</show_in_website>
584
+ <show_in_store>1</show_in_store>
585
+ <!-- 100 => authorization -->
586
+ <depends><payline_payment_action>100</payline_payment_action></depends>
587
+ </capture_payment_when_i_said>
588
+ <action_when_order_seven_day_old>
589
+ <label>Action when order is at least 7 days old</label>
590
+ <comment>Order action when trying to capture and order is at least 7 seven days old</comment>
591
+ <frontend_type>select</frontend_type>
592
+ <source_model>payline/datasource_paymentactionsreauth</source_model>
593
+ <sort_order>72</sort_order>
594
+ <show_in_default>1</show_in_default>
595
+ <show_in_website>1</show_in_website>
596
+ <show_in_store>1</show_in_store>
597
+ </action_when_order_seven_day_old>
598
  <update_personal_details translate="label">
599
  <label>Allow user to update his personal details</label>
600
  <source_model>adminhtml/system_config_source_yesno</source_model>
app/code/community/Monext/Payline/sql/payline_setup/mysql4-upgrade-1.7.5-1.7.6.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** Add is_included_wallet_list column to payline_contract & payline_contract_status tables.
3
+ *
4
+ * Used to know if the contract can be included in contractNumberWalletList params when $paylineSDK->doWebPayment() and
5
+ * $paylineSDK->createWebWallet() are called. */
6
+
7
+ $installer = $this;
8
+ $installer->startSetup();
9
+
10
+ $connection = $installer->getConnection();
11
+
12
+ $connection->addColumn( $this->getTable('payline/contract'), "is_included_wallet_list",
13
+ 'tinyint(1) NOT NULL default 0' );
14
+ $connection->addColumn( $this->getTable('payline/contract_status'), "is_included_wallet_list",
15
+ 'tinyint(1) NOT NULL default 0' );
16
+
17
+ $installer->endSetup();
app/design/adminhtml/default/default/template/payline/payment/info/monext.phtml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <?php echo $this->htmlEscape($this->getMethod()->getTitle()) ?>
3
+ <br />
4
+ <?php
5
+ $name = Mage::helper('payline')->getPaymentContractType(
6
+ $this->getMethod()->getCode(),
7
+ $this->getInfo()->getCcType() );
8
+ echo $name;
9
+ ?>
10
+
11
+ <?php if ($_specificInfo = $this->getSpecificInformation()):?>
12
+ <table>
13
+ <?php foreach ($_specificInfo as $_label => $_value):?>
14
+ <tr>
15
+ <td><?php echo $this->escapeHtml($_label)?>:</td>
16
+ <td><?php echo nl2br(implode($this->getValueAsArray($_value, true), "\n"))?></td>
17
+ </tr>
18
+ <?php endforeach; ?>
19
+ </table>
20
+ <?php endif;?>
21
+
22
+ <?php echo $this->getChildHtml()?>
app/design/frontend/default/default/template/payline/checkout/onepage/addjs.phtml CHANGED
@@ -1,4 +1,4 @@
1
- <script type="text/javascript">
2
  //<![CDATA[
3
 
4
  function paylineTrySkipPaymentMethod() {
1
+ <script type="text/javascript">
2
  //<![CDATA[
3
 
4
  function paylineTrySkipPaymentMethod() {
app/design/frontend/default/default/template/payline/payment/info/monext.phtml ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package default_default
23
+ * @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * @see Mage_Payment_Block_Info
30
+ */
31
+ ?>
32
+ <?php echo $this->htmlEscape($this->getMethod()->getTitle()) ?>
33
+
34
+ <?php if ($_specificInfo = $this->getSpecificInformation()):?>
35
+ <table>
36
+ <?php foreach ($_specificInfo as $_label => $_value):?>
37
+ <tr>
38
+ <td><?php echo $this->escapeHtml($_label)?>:</td>
39
+ <td><?php echo nl2br(implode($this->getValueAsArray($_value, true), "\n"))?></td>
40
+ </tr>
41
+ <?php endforeach; ?>
42
+ </table>
43
+ <?php endif;?>
44
+
45
+ <?php echo $this->getChildHtml()?>
app/locale/en_US/Monext_Payline.csv CHANGED
@@ -34,6 +34,8 @@
34
  "What is this?","What is this? "
35
  "authorization","authorization"
36
  "authorization + capture","authorization + capture"
 
 
37
  "- none -","- none -"
38
  "SSL","SSL"
39
  "Mastercard contract number","Mastercard contract number"
@@ -139,3 +141,4 @@
139
  "Page to return when payment is refused","Page to return when payment is refused"
140
  "Your payment is refused","Your payment is refused"
141
  "Your payment is canceled","Your payment is canceled"
 
34
  "What is this?","What is this? "
35
  "authorization","authorization"
36
  "authorization + capture","authorization + capture"
37
+ "re-authorization","re-authorization"
38
+ "re-authorization + capture","re-authorization + capture"
39
  "- none -","- none -"
40
  "SSL","SSL"
41
  "Mastercard contract number","Mastercard contract number"
141
  "Page to return when payment is refused","Page to return when payment is refused"
142
  "Your payment is refused","Your payment is refused"
143
  "Your payment is canceled","Your payment is canceled"
144
+ "Set","Set"
app/locale/fr_FR/Monext_Payline.csv CHANGED
@@ -38,6 +38,8 @@
38
  "What is this?","Qu'est-ce que c'est ?"
39
  "authorization","autorisation"
40
  "authorization + capture","autorisation + capture"
 
 
41
  "- none -","- aucun -"
42
  "SSL","SSL"
43
  "MASTERCARD contract number","N° contrat MASTERCARD"
@@ -151,3 +153,4 @@
151
  "Page to return when payment is refused","Page de retour si le paiement est refusé"
152
  "Your payment is refused","Votre paiement est refusé"
153
  "Your payment is canceled","Votre paiement est annulé"
 
38
  "What is this?","Qu'est-ce que c'est ?"
39
  "authorization","autorisation"
40
  "authorization + capture","autorisation + capture"
41
+ "re-authorization","ré-autorisation"
42
+ "re-authorization + capture","ré-autorisation + capture"
43
  "- none -","- aucun -"
44
  "SSL","SSL"
45
  "MASTERCARD contract number","N° contrat MASTERCARD"
153
  "Page to return when payment is refused","Page de retour si le paiement est refusé"
154
  "Your payment is refused","Votre paiement est refusé"
155
  "Your payment is canceled","Votre paiement est annulé"
156
+ "Set", "Mettre"
package.xml CHANGED
@@ -1,18 +1,24 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Payline</name>
4
- <version>1.7.5</version>
5
  <stability>stable</stability>
6
- <license>GNU</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Payment module</summary>
10
- <description>Payment module</description>
11
- <notes>new release</notes>
 
 
 
 
 
 
12
  <authors><author><name>Payline</name><user>Payline</user><email>support@payline.com</email></author></authors>
13
- <date>2013-03-26</date>
14
- <time>15:46:14</time>
15
- <contents><target name="magecommunity"><dir name="Monext"><dir name="Payline"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><file name="Grid.php" hash="13b7c449e07ef729fbac8caa708decd1"/></dir><dir name="Managecontracts"><dir name="Edit"><file name="Form.php" hash="05040427f41fb110db974ff5a3eb6ba9"/></dir><file name="Edit.php" hash="7f026d56bfd7a7b03e9e1ad9263a008e"/><file name="Grid.php" hash="5c4415830c82854ec9013bbd611d9ce0"/></dir><file name="Managecontracts.php" hash="343434dde00ba5d5ba35ed255c44a98e"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Create"><file name="Items.php" hash="c7cd82866d8788ff32d42df8fcdc11f8"/></dir></dir><dir name="Total"><file name="Nxfees.php" hash="cd28c26f717481421bfab12c55ab5378"/></dir></dir></dir></dir><dir name="Checkout"><file name="Total.php" hash="df9fd2acea6ca2be213bfd5e335cedd6"/></dir><file name="Cpt.php" hash="85df4f91ef5ca13f14ca3c15a6ff29e3"/><file name="Direct.php" hash="a176d97fe09a830fbb82d517a71c7049"/><dir name="Info"><file name="Direct.php" hash="45e68950f8e0fede01a0e26848367a5e"/></dir><file name="Logo.php" hash="2b7784f040f04489448fbc13b05ffe74"/><file name="Nx.php" hash="e4fd920c944abe9963f76e111e90ba48"/><dir name="Wallet"><file name="Checkoutbtn.php" hash="bbd8b30f2a37e83ce295295f0fe10ebf"/><file name="Details.php" hash="03cb96bd76d2265b842677b2a6825303"/><file name="Infos.php" hash="ae673ceafb630efbf0308657f766a816"/><file name="Sidebar.php" hash="db70b60be9aa20316f91b3fa3a23a2b9"/></dir><file name="Wallet.php" hash="6326c9e76c84777597f30a89d718ccb4"/></dir><dir name="Helper"><file name="Data.php" hash="ef5f079d40a7bb718c09ee60004ebb1a"/><file name="Logger.php" hash="6b7cf036fdf2e6df2cb7fa645c8912b9"/></dir><dir name="Model"><dir name="Contract"><file name="Status.php" hash="67919f148f5d50a266b92e8a32e833f1"/></dir><file name="Contract.php" hash="75ac4b82964f0b87f7b30c4fb0f6b638"/><file name="Cpt.php" hash="ae40cc4e4749b5e5faf1d887451daf90"/><dir name="Datasource"><file name="Actions.php" hash="2152344a8bd5fbf7dbe711c58f97356c"/><file name="Billingcycles.php" hash="bef244e6d9e744fbbc3afed9cc2050f9"/><file name="Billingoccurrences.php" hash="581ce23ec626ed71791b13c7b11fe6db"/><dir name="Cms"><file name="Block.php" hash="eee43f517c9e29e51f0ca21fdc7b74ed"/></dir><file name="Costs.php" hash="ac09cf06fbe9a1fabddb2a4727dd696f"/><file name="Languages.php" hash="17053eec4880c5c5b1f233a3ca9f0bda"/><file name="Paymentactions.php" hash="6c4aae3b1b4e8b987a4da7393a3a92eb"/><file name="Return.php" hash="d8fac75b41a931a4714ed8acf846d9a2"/><file name="Securitymodes.php" hash="06c55b65e9254d96fa87595322839932"/><file name="Shippingmethods.php" hash="1c67f2af87583aae049c86cb4dcdf881"/><dir name="Status"><file name="Canceled.php" hash="c4e799efcb052536081339520c7b72c2"/><file name="Invoice.php" hash="b2cbeeaf4e78ec4545f6d45faba1922e"/></dir><file name="Status.php" hash="893648bdaa413d2ec2e5243a2f63c9d8"/></dir><file name="Direct.php" hash="d7bde5b06b400fb9362a527d556287c2"/><file name="Fees.php" hash="d51c983f019b43e70516b71e163e9a28"/><dir name="Mysql4"><dir name="Contract"><file name="Collection.php" hash="be0834927cd3f5c2e9297661550cc8ae"/><dir name="Status"><file name="Collection.php" hash="3a76926bcab21729191a4045fa9662f7"/></dir><file name="Status.php" hash="d4dd5fdff720ced491887f649b66f3ad"/></dir><file name="Contract.php" hash="0351133a419374084608df1a216584f1"/><dir name="Fees"><file name="Collection.php" hash="b00bb0ec3e0a75a2435f6c55d3eea02c"/></dir><file name="Fees.php" hash="c398d9290276806d03af8631a09eac63"/></dir><file name="Nx.php" hash="830433cc06e92665fd554fe0030070f0"/><file name="Observer.php" hash="a334a384ae4c707661e83558889c3fdb"/><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="f0cb886cd65e23ec397e651d7913ea9e"/></dir></dir></dir><dir name="Total"><dir name="Nx"><file name="Invoice.php" hash="6ead6df53b6169709797d6c08cd4d16c"/><file name="Quote.php" hash="8e7ab3cc36d180c600bb28192193567b"/></dir></dir><file name="Wallet.php" hash="b114d566bd102eb6e25c3070be79303f"/></dir><dir name="PaylinePHPKit"><dir name="configuration"><file name="HighDefinition.ini" hash="689dc8f1ba03e0c04ae6a8758df38f1b"/></dir><dir name="lib"><file name="Payline.wsdl" hash="e8cfcc182f30b639d91891e68bdfa933"/><file name="jIniFileModifier.php" hash="f7d309bd1fb8f408528151b0555b188c"/><file name="lib_debug.php" hash="9cec1fd5e55fd625b98b03ca336214d1"/><file name="paylineSDK.php" hash="ec231c2cc9a025a7715acd0f1e7fa1e2"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ManagecontractsController.php" hash="1a45c5e30f44adaf9b6f1059cb23ee52"/></dir><file name="CheckoutonepageController.php" hash="da35bdb14ac62a258479b44011dacc01"/><file name="IndexController.php" hash="32dbf48be80fa0bcd48ad0dfe8eb2a52"/><file name="UnloggedwalletController.php" hash="90af5be8a8fa8dd1b2e29a442c0b7aab"/><file name="WalletController.php" hash="68e4591c26c2d178b7a5cb1ef6cb7fb1"/></dir><dir name="etc"><file name="config.xml" hash="201c26c4a33aa941b182da8db4a1454e"/><file name="system.xml" hash="a5e3cd90780f6ce9084e8413c83c726d"/></dir><dir name="sql"><dir name="payline_setup"><file name="mysql4-install-1.6.0.php" hash="ed5013f743ba36a7b2884fc432f97e16"/><file name="mysql4-upgrade-1.7.2-1.7.3.php" hash="7eeb0f5cfc6c379d8300428a5ec39c46"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="payline.xml" hash="0488c4cfab8321f91ec7a9adaf482837"/></dir><dir name="template"><dir name="payline"><file name="contracts.phtml" hash="6d398a529e799880533d954f53f6df96"/><dir name="customer"><dir name="tab"><file name="view.phtml" hash="1c3d9c842c802967bc867ff2be008504"/></dir></dir><file name="switcher.phtml" hash="ced863f3f520e271497c0a6bcc4b38e4"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="payline.xml" hash="d23c6df56d32a39b55a9780245036d75"/></dir><dir name="template"><dir name="payline"><file name="Cpt.phtml" hash="d5a78eb6488ad0985a4fd62bd10e05e3"/><file name="Direct.phtml" hash="08167b333ce1380879ebaea26c1362ca"/><file name="Payline.phtml" hash="dc264172e5a6c5ae627b697208dff65d"/><dir name="checkout"><dir name="onepage"><file name="addjs.phtml" hash="8079e728f10e676bd03fd00352bcfeb5"/><dir name="info"><file name="default.phtml" hash="4689f891bab252ff10bb789d37e9bc2b"/></dir><file name="shipping-method.phtml" hash="a81a9f308f15008842bfd9ba69852aa9"/></dir><file name="onepage.phtml" hash="1f19d5af1a65cd7b5f4debf785bba49a"/><file name="total.phtml" hash="24170fbb2b43da6fc3d4a51db4b80d7a"/></dir><file name="iframe.phtml" hash="4a841413fa569be79b31464fc8f9a88a"/><file name="iframeleaver.phtml" hash="b617751653aa68ada738385a3959e863"/><file name="logo.phtml" hash="b850cc0f8b99d4486dedebc7c913d363"/><dir name="page"><file name="empty.phtml" hash="02134361869217c7445f46af028a050a"/></dir><dir name="wallet"><file name="checkoutbtn.phtml" hash="612617f342e05a34f6a2a618e3bf9162"/><file name="details.phtml" hash="b8d7e336b994261f66f1a9af5841661e"/><file name="form.phtml" hash="7358f21e31266c65982afb15239e659f"/><file name="manage.phtml" hash="994c98abd9b4f2f68f76eefe20c637d1"/><dir name="sidebar"><file name="form.phtml" hash="b7662b515f5195faada2736cf38b01aa"/><file name="notlogged.phtml" hash="169ccfe11034a47c74a9a78e0eac6046"/></dir><file name="sidebar.phtml" hash="2113b8dba864cd94b241dc7ecd6dff0a"/><file name="subscribe.phtml" hash="a737e95240e262e91ec01a02e2ce97a2"/><file name="update.phtml" hash="1b7048c9a839b0b0994beaf5e72b755c"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Monext_Payline.csv" hash="b2d6b503c16f3c9f589cead3f6ccf24b"/></dir><dir name="fr_FR"><file name="Monext_Payline.csv" hash="3dbaf43cd8ab9f4f10c426acdeca03d2"/></dir></target><target name="mageetc"><dir name="modules"><file name="Monext_Payline.xml" hash="d6ff98113ab17d2b19ee89d7a80cf7e9"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="payline.css" hash="414432db8dc1d0682f4988917bd8dd6f"/></dir><dir name="images"><file name="ae.gif" hash="bac424b0cfaa43bdba4d8d8425878159"/><file name="amex.gif" hash="bac424b0cfaa43bdba4d8d8425878159"/><file name="cb.gif" hash="4ced25b94a1720cb786cdff1debc1535"/><file name="mastercard.gif" hash="c2b21baeafcb69c8e6bef8b3f0aa550c"/><file name="mc.gif" hash="c2b21baeafcb69c8e6bef8b3f0aa550c"/><file name="payline-logo.png" hash="553b387e92d95aef92a35f332e75cac4"/><file name="vi.gif" hash="639ee8e26a7f7c4dfefb3bfbbcefbdd2"/><file name="visa.gif" hash="639ee8e26a7f7c4dfefb3bfbbcefbdd2"/><dir name="payline_moyens_paiement"><file name="1euro.png" hash="8d5e4917497ba61120090e166014886d"/><file name="3xcb.png" hash="c76c834e238d3a8e3b3b4a2c116f189c"/><file name="amex.png" hash="a47d6bfc7eb4e06f3e3acb8a55cfd3c9"/><file name="amexoneclick.png" hash="a47d6bfc7eb4e06f3e3acb8a55cfd3c9"/><file name="aurore.png" hash="e2be3e130bd1212d9375a3bdb354cb78"/><file name="buyster.png" hash="8ec0f280dccd1c18c84cfbd368c6f579"/><file name="casino.png" hash="ce5b159bc98c7f71e8149e1d8b256dbd"/><file name="cb.png" hash="a5d9178bc831cbc78238dff27f79a48b"/><file name="cofinoga.png" hash="1dd7025dd22ac998aa968b38693a6a71"/><file name="cyrillus.png" hash="f762ad007f552bf409f5baa610f6746a"/><file name="default.png" hash="26c2dff177e1f8a94994352f6a7cec88"/><file name="diners.png" hash="6c907b8f0233b035ec4c27c2e9542406"/><file name="elv.png" hash="d0bd93c59ef64709b9a5cd81ff557e28"/><file name="fnac.png" hash="c0a7aa595b18fb52105d9337fda3eb1c"/><file name="ideal.png" hash="e0594aed23073daab150d8288a81103c"/><file name="internetplus.png" hash="fe1bc34531cfd6fd3dab6a6614e7ca3f"/><file name="jcb.png" hash="9801aeed2550ffccbdc3fe88b5292a60"/><file name="kangourou.png" hash="5fac97aa8f70380ec3b601ff32fdc012"/><file name="leetchi.png" hash="ecf6612b0228b889c723498f476c4309"/><file name="maestro.png" hash="19d331ae4783d590dba694cbcbb26da9"/><file name="mandarine.png" hash="745a8999468f60753c9c51a0052c527a"/><file name="mastercard.png" hash="cb7aa4a6f3870145295c4ce16a602d1e"/><file name="maxicheque.png" hash="fc3e2988c9944467fc8d4e44b4118a32"/><file name="mcvisa.png" hash="ba6349155be595d6da5ee584241c2946"/><file name="moneo.png" hash="283cf98332a5c05521229282875a158d"/><file name="neosurf.png" hash="9a747833ce3d9cbb3c26d4a11d7e4b4b"/><file name="okshopping.png" hash="8498bd45cf87124d12c4bfbf81272f14"/><file name="pass.png" hash="adb923e16cd9419960a51d0d41f26f97"/><file name="passvisa.png" hash="bd88d99714e9a3ba5000f881a0289f58"/><file name="payfair.png" hash="82f5dc87ea6f43f386b0e4887f33e5e8"/><file name="paypal.png" hash="2e9a634ffb111e1ce20b5e9017a35b29"/><file name="paysafecard.png" hash="a6776e5140ad443596587e3de12cd6a2"/><file name="printemps.png" hash="072cde23d8600c39457cf02a983b6d7f"/><file name="privilege.png" hash="883c70c0ce1c5bac23865397b0b63c5c"/><file name="skrill.png" hash="5d77ac7b63309a8691c27628aad9f60a"/><file name="sofinco.png" hash="93081c5cb7ce8ba216bbc42019cde8d3"/><file name="surcouf.png" hash="d8633f7d4b47460faac4e8657ce42f4d"/><file name="switch.png" hash="e2924bb36ad3de3d3ee61fa4dc3ffa8b"/><file name="ticketpremium.png" hash="5146987c213691e20a5461d7eed59f09"/><file name="ticketsurf.png" hash="bcd9aeb8b2784ea6a06e80cc2b2393ec"/><file name="visa.png" hash="bd8890f0147d451bf1a488d4e268332c"/><file name="wexpay.png" hash="1f3bb2ec092f283a8b27c66e2c32f22f"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.2.0</min><max>5.3.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Payline</name>
4
+ <version>1.7.6</version>
5
  <stability>stable</stability>
6
+ <license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Paiement par carte bancaire avec Payline, par Monext.</summary>
10
+ <description>&lt;p&gt;Profitez d&#xE8;s &#xE0; pr&#xE9;sent de l&#x2019;essor du march&#xE9; de la vente &#xE0; distance en proposant &#xE0; vos clients une solution de paiement totalement s&#xE9;curis&#xE9;e. Gr&#xE2;ce &#xE0; Payline vous permettez &#xE0; vos clients de r&#xE9;gler avec leur moyen de paiement habituel, quel que soit votre canal de vente. Vous leur proposez une interface de paiement facile &#xE0; utiliser, en mesure de vous accompagner dans votre d&#xE9;veloppement &#xE0; l&#x2019;international, en toute simplicit&#xE9;.&lt;/p&gt;&#xD;
11
+ &lt;p&gt;Fonctionnalit&#xE9;s : autorisation, autorisation + capture, paiement en n fois, paiement en 1 clic, remboursement (partiel), multi-sites, multi-lingues&lt;/p&gt;&#xD;
12
+ &lt;p&gt;Compatibilit&#xE9; : 1.3.2.4, 1.4, 1.8, 1.9&lt;/p&gt;&#xD;
13
+ &lt;p&gt;&#xA0;&lt;/p&gt;&#xD;
14
+ &lt;p&gt;&#xA0;&lt;/p&gt;&#xD;
15
+ &lt;p&gt;&lt;a href="http://www.smile.fr"&gt;by Smile.fr&lt;/a&gt;&lt;/p&gt;</description>
16
+ <notes>Mise &#xE0; jour SDK Payline&#xD;
17
+ Ajout param&#xE9;trages</notes>
18
  <authors><author><name>Payline</name><user>Payline</user><email>support@payline.com</email></author></authors>
19
+ <date>2013-10-10</date>
20
+ <time>09:08:47</time>
21
+ <contents><target name="magecommunity"><dir name="Monext"><dir name="Payline"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><file name="Grid.php" hash="13b7c449e07ef729fbac8caa708decd1"/></dir><dir name="Managecontracts"><dir name="Edit"><file name="Form.php" hash="05040427f41fb110db974ff5a3eb6ba9"/></dir><file name="Edit.php" hash="7f026d56bfd7a7b03e9e1ad9263a008e"/><file name="Grid.php" hash="de14d88f9c299895168e5d1a214e267f"/></dir><file name="Managecontracts.php" hash="343434dde00ba5d5ba35ed255c44a98e"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Create"><file name="Items.php" hash="c7cd82866d8788ff32d42df8fcdc11f8"/></dir></dir><dir name="Total"><file name="Nxfees.php" hash="cd28c26f717481421bfab12c55ab5378"/></dir></dir></dir></dir><dir name="Checkout"><file name="Total.php" hash="df9fd2acea6ca2be213bfd5e335cedd6"/></dir><file name="Cpt.php" hash="85df4f91ef5ca13f14ca3c15a6ff29e3"/><file name="Direct.php" hash="a176d97fe09a830fbb82d517a71c7049"/><dir name="Info"><file name="Default.php" hash="028809c8e83cd97df32d3fe15833e609"/><file name="Direct.php" hash="f3a87e79429f581e2c896cc99f169aed"/></dir><file name="Logo.php" hash="2b7784f040f04489448fbc13b05ffe74"/><file name="Nx.php" hash="e4fd920c944abe9963f76e111e90ba48"/><dir name="Wallet"><file name="Checkoutbtn.php" hash="bbd8b30f2a37e83ce295295f0fe10ebf"/><file name="Details.php" hash="03cb96bd76d2265b842677b2a6825303"/><file name="Infos.php" hash="ae673ceafb630efbf0308657f766a816"/><file name="Sidebar.php" hash="db70b60be9aa20316f91b3fa3a23a2b9"/></dir><file name="Wallet.php" hash="6326c9e76c84777597f30a89d718ccb4"/></dir><dir name="Helper"><file name="Data.php" hash="4edd6778b8a3342cdbeae5b1493bb649"/><file name="Logger.php" hash="6b7cf036fdf2e6df2cb7fa645c8912b9"/></dir><dir name="Model"><dir name="Contract"><file name="Status.php" hash="67919f148f5d50a266b92e8a32e833f1"/></dir><file name="Contract.php" hash="75ac4b82964f0b87f7b30c4fb0f6b638"/><file name="Cpt.php" hash="94254eb4113dc8a0a6cc1d4c8521a602"/><dir name="Datasource"><file name="Actions.php" hash="2152344a8bd5fbf7dbe711c58f97356c"/><file name="Billingcycles.php" hash="bef244e6d9e744fbbc3afed9cc2050f9"/><file name="Billingoccurrences.php" hash="581ce23ec626ed71791b13c7b11fe6db"/><file name="Capturepaymentoptions.php" hash="8095a47418aa5d7f0cea91718de2323f"/><dir name="Cms"><file name="Block.php" hash="eee43f517c9e29e51f0ca21fdc7b74ed"/></dir><file name="Costs.php" hash="ac09cf06fbe9a1fabddb2a4727dd696f"/><file name="Languages.php" hash="17053eec4880c5c5b1f233a3ca9f0bda"/><file name="Paymentactions.php" hash="6c4aae3b1b4e8b987a4da7393a3a92eb"/><file name="Paymentactionsreauth.php" hash="ef87674b1742240f9c2af17eb38fd994"/><file name="Return.php" hash="d8fac75b41a931a4714ed8acf846d9a2"/><file name="Securitymodes.php" hash="06c55b65e9254d96fa87595322839932"/><file name="Shippingmethods.php" hash="1c67f2af87583aae049c86cb4dcdf881"/><dir name="Status"><file name="Canceled.php" hash="c4e799efcb052536081339520c7b72c2"/><file name="Invoice.php" hash="b2cbeeaf4e78ec4545f6d45faba1922e"/></dir><file name="Status.php" hash="893648bdaa413d2ec2e5243a2f63c9d8"/><file name="Statusrowempty.php" hash="5d342031d511a204b15d2d9c8c852162"/></dir><file name="Direct.php" hash="d7bde5b06b400fb9362a527d556287c2"/><file name="Fees.php" hash="d51c983f019b43e70516b71e163e9a28"/><dir name="Mysql4"><dir name="Contract"><file name="Collection.php" hash="7d71121cac131f11dc012375b4412d85"/><dir name="Status"><file name="Collection.php" hash="3a76926bcab21729191a4045fa9662f7"/></dir><file name="Status.php" hash="3deb3f63a199b110a3fa581ff777172f"/></dir><file name="Contract.php" hash="33cbc24553f2d90ba164363172e2f4c7"/><dir name="Fees"><file name="Collection.php" hash="b00bb0ec3e0a75a2435f6c55d3eea02c"/></dir><file name="Fees.php" hash="c398d9290276806d03af8631a09eac63"/></dir><file name="Nx.php" hash="830433cc06e92665fd554fe0030070f0"/><file name="Observer.php" hash="94824604b2ea364b1bed23bbaa01033b"/><dir name="Order"><file name="Invoice.php" hash="4b1a7d53444ad7069479ac617d7396b6"/><file name="Payment.php" hash="c8207b103d284bde7e511c57d9a5399c"/></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="f0cb886cd65e23ec397e651d7913ea9e"/></dir></dir></dir><dir name="Total"><dir name="Nx"><file name="Invoice.php" hash="6ead6df53b6169709797d6c08cd4d16c"/><file name="Quote.php" hash="8e7ab3cc36d180c600bb28192193567b"/></dir></dir><file name="Wallet.php" hash="b114d566bd102eb6e25c3070be79303f"/></dir><dir name="PaylinePHPKit"><dir name="configuration"><file name="HighDefinition.ini" hash="689dc8f1ba03e0c04ae6a8758df38f1b"/></dir><dir name="lib"><file name="Payline.wsdl" hash="b22b4ddfb2751c886e25d7202731c686"/><file name="jIniFileModifier.php" hash="f7d309bd1fb8f408528151b0555b188c"/><file name="lib_debug.php" hash="9cec1fd5e55fd625b98b03ca336214d1"/><file name="paylineSDK.php" hash="6cfdcd0718dfc0e795feb86729cad679"/></dir><dir name="logs"><file name="2013-07-10.log" hash="43313ee0a50423965a813c2d890c522a"/><file name="2013-08-19.log" hash="4f7087572c66bf07a04d218584dd13b7"/><file name="2013-08-20.log" hash="db9bd2a7cc032d76fee877c9aa02e993"/><file name="2013-08-21.log" hash="9bfa1e970c9e782bd330d1f090cda503"/><file name="2013-08-22.log" hash="0deb04a4bfee5b735506ab619c8b84d5"/><file name="2013-08-23.log" hash="49f23c4807adbf80aa6e38ca928ec3b5"/><file name="2013-08-26.log" hash="305cb5686da9471c57aea5a64d263460"/><file name="2013-08-27.log" hash="0dfe6da0d29209d5bc361432a6aca9ec"/><file name="2013-08-28.log" hash="b26cc274c0ef37a090bec011cbdfbe0a"/><file name="2013-08-29.log" hash="84b7f98969ee423094353025e4249b7e"/><file name="2013-08-30.log" hash="261dcb4cc6dd1918d7ff33f864e7e332"/><file name="2013-09-02.log" hash="8ebc7e67b1b71a15d86c10ca7569ec3a"/><file name="2013-09-03.log" hash="62364b3d08c42cb6856acafa52a686ee"/><file name="2013-09-04.log" hash="18fb6b4d9e8fae691fa4838cc0cfa37b"/><file name="2013-09-05.log" hash="ffb7f03afe6e7db1cf84c4c941cd4751"/><file name="2013-09-06.log" hash="9e2e73a4a58ba43513e5037bca7f79e1"/><file name="2013-09-09.log" hash="59b12ef51503e5f03dc4a5cec2ea8f0b"/><file name="2013-09-10.log" hash="519b31b2ef6fbda5f7a426da2a349bcd"/><file name="2013-09-11.log" hash="105e457b4c9040d5a53ef1745bd52153"/><file name="2013-09-12.log" hash="09409afc2f230cc2f01f32b8bdeed772"/><file name="2013-09-13.log" hash="818b9632e224499dddc95eb035936b17"/><file name="2013-09-16.log" hash="dfe44505aaa5d12eaf2541ed9b3506d3"/><file name="2013-09-25.log" hash="1ac2947026b30244f9a152d5abda05e1"/><file name="2013-09-26.log" hash="9e2037f470287ec7a317ca3c70dcf579"/><file name="2013-10-03.log" hash="ebc12335aadc43244734669b99dd539a"/><file name="2013-10-04.log" hash="dc06896eb71ff3ce4f4f587fab6d050e"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ManagecontractsController.php" hash="f5c8ac2227e34766baed1e3e0af4bf87"/></dir><file name="CheckoutonepageController.php" hash="da35bdb14ac62a258479b44011dacc01"/><file name="IndexController.php" hash="e2f9ff1e53b10045dea2ff54b758b13a"/><file name="UnloggedwalletController.php" hash="90af5be8a8fa8dd1b2e29a442c0b7aab"/><file name="WalletController.php" hash="9bedfe037d2d845d4b1fe2acbbf69033"/></dir><dir name="etc"><file name="config.xml" hash="ffdf62228530df026b6ef791abce66cc"/><file name="system.xml" hash="0d83d9a3b18a03bbc71191da32c22bc2"/></dir><dir name="sql"><dir name="payline_setup"><file name="mysql4-install-1.6.0.php" hash="ed5013f743ba36a7b2884fc432f97e16"/><file name="mysql4-upgrade-1.7.2-1.7.3.php" hash="7eeb0f5cfc6c379d8300428a5ec39c46"/><file name="mysql4-upgrade-1.7.5-1.7.6.php" hash="0ebfd38e90a8139c67087fc1e16f1aba"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="payline.xml" hash="0488c4cfab8321f91ec7a9adaf482837"/></dir><dir name="template"><dir name="payline"><file name="contracts.phtml" hash="6d398a529e799880533d954f53f6df96"/><dir name="customer"><dir name="tab"><file name="view.phtml" hash="1c3d9c842c802967bc867ff2be008504"/></dir></dir><dir name="payment"><dir name="info"><file name="monext.phtml" hash="6daa4bb0bc10c81fcf2a099dd789903d"/></dir></dir><file name="switcher.phtml" hash="ced863f3f520e271497c0a6bcc4b38e4"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="payline.xml" hash="d23c6df56d32a39b55a9780245036d75"/></dir><dir name="template"><dir name="payline"><file name="Cpt.phtml" hash="d5a78eb6488ad0985a4fd62bd10e05e3"/><file name="Direct.phtml" hash="08167b333ce1380879ebaea26c1362ca"/><file name="Payline.phtml" hash="dc264172e5a6c5ae627b697208dff65d"/><dir name="checkout"><dir name="onepage"><file name="addjs.phtml" hash="8baee7d7d804635a6062bbb41ad4f162"/><dir name="info"><file name="default.phtml" hash="4689f891bab252ff10bb789d37e9bc2b"/></dir><file name="shipping-method.phtml" hash="a81a9f308f15008842bfd9ba69852aa9"/></dir><file name="onepage.phtml" hash="1f19d5af1a65cd7b5f4debf785bba49a"/><file name="total.phtml" hash="24170fbb2b43da6fc3d4a51db4b80d7a"/></dir><file name="iframe.phtml" hash="4a841413fa569be79b31464fc8f9a88a"/><file name="iframeleaver.phtml" hash="b617751653aa68ada738385a3959e863"/><file name="logo.phtml" hash="b850cc0f8b99d4486dedebc7c913d363"/><dir name="page"><file name="empty.phtml" hash="02134361869217c7445f46af028a050a"/></dir><dir name="payment"><dir name="info"><file name="monext.phtml" hash="ce3c565c9cdae42debacb267e2c9a9ea"/></dir></dir><dir name="wallet"><file name="checkoutbtn.phtml" hash="612617f342e05a34f6a2a618e3bf9162"/><file name="details.phtml" hash="b8d7e336b994261f66f1a9af5841661e"/><file name="form.phtml" hash="7358f21e31266c65982afb15239e659f"/><file name="manage.phtml" hash="994c98abd9b4f2f68f76eefe20c637d1"/><dir name="sidebar"><file name="form.phtml" hash="b7662b515f5195faada2736cf38b01aa"/><file name="notlogged.phtml" hash="169ccfe11034a47c74a9a78e0eac6046"/></dir><file name="sidebar.phtml" hash="2113b8dba864cd94b241dc7ecd6dff0a"/><file name="subscribe.phtml" hash="a737e95240e262e91ec01a02e2ce97a2"/><file name="update.phtml" hash="1b7048c9a839b0b0994beaf5e72b755c"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Monext_Payline.csv" hash="b972d5544df49c367f96e7fecc2ec3eb"/></dir><dir name="fr_FR"><file name="Monext_Payline.csv" hash="f32aeede40718e91cc4ff927f05f93e1"/></dir></target><target name="mageetc"><dir name="modules"><file name="Monext_Payline.xml" hash="d6ff98113ab17d2b19ee89d7a80cf7e9"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="payline.css" hash="414432db8dc1d0682f4988917bd8dd6f"/></dir><dir name="images"><file name="ae.gif" hash="bac424b0cfaa43bdba4d8d8425878159"/><file name="amex.gif" hash="bac424b0cfaa43bdba4d8d8425878159"/><file name="cb.gif" hash="4ced25b94a1720cb786cdff1debc1535"/><file name="mastercard.gif" hash="c2b21baeafcb69c8e6bef8b3f0aa550c"/><file name="mc.gif" hash="c2b21baeafcb69c8e6bef8b3f0aa550c"/><file name="payline-logo.png" hash="553b387e92d95aef92a35f332e75cac4"/><file name="vi.gif" hash="639ee8e26a7f7c4dfefb3bfbbcefbdd2"/><file name="visa.gif" hash="639ee8e26a7f7c4dfefb3bfbbcefbdd2"/><dir name="payline_moyens_paiement"><file name="1euro.png" hash="8d5e4917497ba61120090e166014886d"/><file name="3xcb.png" hash="c76c834e238d3a8e3b3b4a2c116f189c"/><file name="amex.png" hash="a47d6bfc7eb4e06f3e3acb8a55cfd3c9"/><file name="amexoneclick.png" hash="a47d6bfc7eb4e06f3e3acb8a55cfd3c9"/><file name="aurore.png" hash="e2be3e130bd1212d9375a3bdb354cb78"/><file name="buyster.png" hash="8ec0f280dccd1c18c84cfbd368c6f579"/><file name="casino.png" hash="ce5b159bc98c7f71e8149e1d8b256dbd"/><file name="cb.png" hash="a5d9178bc831cbc78238dff27f79a48b"/><file name="cofinoga.png" hash="1dd7025dd22ac998aa968b38693a6a71"/><file name="cyrillus.png" hash="f762ad007f552bf409f5baa610f6746a"/><file name="default.png" hash="26c2dff177e1f8a94994352f6a7cec88"/><file name="diners.png" hash="6c907b8f0233b035ec4c27c2e9542406"/><file name="elv.png" hash="d0bd93c59ef64709b9a5cd81ff557e28"/><file name="fnac.png" hash="c0a7aa595b18fb52105d9337fda3eb1c"/><file name="ideal.png" hash="e0594aed23073daab150d8288a81103c"/><file name="internetplus.png" hash="fe1bc34531cfd6fd3dab6a6614e7ca3f"/><file name="jcb.png" hash="9801aeed2550ffccbdc3fe88b5292a60"/><file name="kangourou.png" hash="5fac97aa8f70380ec3b601ff32fdc012"/><file name="leetchi.png" hash="ecf6612b0228b889c723498f476c4309"/><file name="maestro.png" hash="19d331ae4783d590dba694cbcbb26da9"/><file name="mandarine.png" hash="745a8999468f60753c9c51a0052c527a"/><file name="mastercard.png" hash="cb7aa4a6f3870145295c4ce16a602d1e"/><file name="maxicheque.png" hash="fc3e2988c9944467fc8d4e44b4118a32"/><file name="mcvisa.png" hash="ba6349155be595d6da5ee584241c2946"/><file name="moneo.png" hash="283cf98332a5c05521229282875a158d"/><file name="neosurf.png" hash="9a747833ce3d9cbb3c26d4a11d7e4b4b"/><file name="okshopping.png" hash="8498bd45cf87124d12c4bfbf81272f14"/><file name="pass.png" hash="adb923e16cd9419960a51d0d41f26f97"/><file name="passvisa.png" hash="bd88d99714e9a3ba5000f881a0289f58"/><file name="payfair.png" hash="82f5dc87ea6f43f386b0e4887f33e5e8"/><file name="paypal.png" hash="2e9a634ffb111e1ce20b5e9017a35b29"/><file name="paysafecard.png" hash="a6776e5140ad443596587e3de12cd6a2"/><file name="printemps.png" hash="072cde23d8600c39457cf02a983b6d7f"/><file name="privilege.png" hash="883c70c0ce1c5bac23865397b0b63c5c"/><file name="skrill.png" hash="5d77ac7b63309a8691c27628aad9f60a"/><file name="sofinco.png" hash="93081c5cb7ce8ba216bbc42019cde8d3"/><file name="surcouf.png" hash="d8633f7d4b47460faac4e8657ce42f4d"/><file name="switch.png" hash="e2924bb36ad3de3d3ee61fa4dc3ffa8b"/><file name="ticketpremium.png" hash="5146987c213691e20a5461d7eed59f09"/><file name="ticketsurf.png" hash="bcd9aeb8b2784ea6a06e80cc2b2393ec"/><file name="visa.png" hash="bd8890f0147d451bf1a488d4e268332c"/><file name="wexpay.png" hash="1f3bb2ec092f283a8b27c66e2c32f22f"/></dir></dir></dir></dir></dir></target></contents>
22
  <compatible/>
23
+ <dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
24
  </package>