Skip to content

Commit

Permalink
changed all webservices schema to https
Browse files Browse the repository at this point in the history
  • Loading branch information
samuraee committed Jan 19, 2021
1 parent 3e090ed commit fff5eb3
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions src/Adapter/Mellat.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class Mellat extends AdapterAbstract implements AdapterInterface
protected $WSDL = 'https://bpm.shaparak.ir/pgwchannel/services/pgw?wsdl';
protected $endPoint = 'https://bpm.shaparak.ir/pgwchannel/startpay.mellat';

protected $testWSDL = 'http://banktest.ir/gateway/mellat/ws?wsdl';
protected $testEndPoint = 'http://banktest.ir/gateway/mellat/gate';
protected $testWSDL = 'https://banktest.ir/gateway/mellat/ws?wsdl';
protected $testEndPoint = 'https://banktest.ir/gateway/mellat/gate';

protected $reverseSupport = true;

Expand Down
10 changes: 5 additions & 5 deletions src/Adapter/Parsian.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ class Parsian extends AdapterAbstract implements AdapterInterface

protected $endPoint = 'https://pec.shaparak.ir/NewIPG/';

protected $testWSDLSale = 'http://banktest.ir/gateway/Parsian/NewIPGServices/Sale/SaleService.asmx?WSDL';
protected $testWSDLConfirm = 'http://banktest.ir/gateway/Parsian/NewIPGServices/Confirm/ConfirmService.asmx?WSDL';
protected $testWSDLReversal = 'http://banktest.ir/gateway/Parsian/NewIPGServices/Reverse/ReversalService.asmx?WSDL';
protected $testWSDLMultiplex = 'http://banktest.ir/gateway/Parsian/NewIPGServices/MultiplexedSale/OnlineMultiplexedSalePaymentService.asmx?WSDL';
protected $testWSDLSale = 'https://banktest.ir/gateway/Parsian/NewIPGServices/Sale/SaleService.asmx?WSDL';
protected $testWSDLConfirm = 'https://banktest.ir/gateway/Parsian/NewIPGServices/Confirm/ConfirmService.asmx?WSDL';
protected $testWSDLReversal = 'https://banktest.ir/gateway/Parsian/NewIPGServices/Reverse/ReversalService.asmx?WSDL';
protected $testWSDLMultiplex = 'https://banktest.ir/gateway/Parsian/NewIPGServices/MultiplexedSale/OnlineMultiplexedSalePaymentService.asmx?WSDL';

protected $testEndPoint = 'http://banktest.ir/gateway/Parsian/NewIPGq';
protected $testEndPoint = 'https://banktest.ir/gateway/Parsian/NewIPGq';

protected $reverseSupport = true;

Expand Down
6 changes: 3 additions & 3 deletions src/Adapter/Saderat.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ class Saderat extends AdapterAbstract implements AdapterInterface
protected $endPoint = 'https://mabna.shaparak.ir';
protected $verifyWSDL = 'https://mabna.shaparak.ir/TransactionReference/TransactionReference?wsdl';

protected $testWSDL = 'http://mabna.shaparak.ir/PayloadTokenService?wsdl';
protected $testEndPoint = 'http://mabna.shaparak.ir';
protected $testVerifyWSDL = 'http://mabna.shaparak.ir/TransactionReference/TransactionReference?wsdl';
protected $testWSDL = 'https://mabna.shaparak.ir/PayloadTokenService?wsdl';
protected $testEndPoint = 'https://mabna.shaparak.ir';
protected $testVerifyWSDL = 'https://mabna.shaparak.ir/TransactionReference/TransactionReference?wsdl';

protected $reverseSupport = false;

Expand Down
6 changes: 3 additions & 3 deletions src/Adapter/Saman.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class Saman extends AdapterAbstract implements AdapterInterface
protected $tokenWSDL = 'https://sep.shaparak.ir/Payments/InitPayment.asmx?WSDL';
protected $endPoint = 'https://sep.shaparak.ir/Payment.aspx';

protected $testWSDL = 'http://banktest.ir/gateway/saman/payments/referencepayment?wsdl';
protected $testTokenWSDL = 'http://banktest.ir/gateway/saman/Payments/InitPayment?wsdl';
protected $testEndPoint = 'http://banktest.ir/gateway/saman/gate';
protected $testWSDL = 'https://banktest.ir/gateway/saman/payments/referencepayment?wsdl';
protected $testTokenWSDL = 'https://banktest.ir/gateway/saman/Payments/InitPayment?wsdl';
protected $testEndPoint = 'https://banktest.ir/gateway/saman/gate';

protected $reverseSupport = true;

Expand Down
4 changes: 2 additions & 2 deletions src/Adapter/Zarinpal.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class Zarinpal extends AdapterAbstract implements AdapterInterface
protected $zarinEndPoint = 'https://www.zarinpal.com/pg/StartPay/{authority}/ZarinGate';
protected $mobileEndPoint = 'https://www.zarinpal.com/pg/StartPay/{authority}/MobileGate';

protected $testWSDL = 'http://banktest.ir/gateway/zarinpal/ws?wsdl';
protected $testEndPoint = 'http://banktest.ir/gateway/zarinpal/gate/{authority}';
protected $testWSDL = 'https://banktest.ir/gateway/zarinpal/ws?wsdl';
protected $testEndPoint = 'https://banktest.ir/gateway/zarinpal/gate/{authority}';

public $reverseSupport = false;

Expand Down

0 comments on commit fff5eb3

Please sign in to comment.