You are here

function _uc_recurring_cybersource_soap_wsdl_url in UC Recurring Payments and Subscriptions 7.2

Same name and namespace in other branches
  1. 6.2 includes/uc_recurring.uc_cybersource.inc \_uc_recurring_cybersource_soap_wsdl_url()

Get the WDSL URL used for SOAP requests

3 calls to _uc_recurring_cybersource_soap_wsdl_url()
uc_recurring_cybersource_profile_form in includes/uc_recurring.uc_cybersource.inc
List the profile information.
_uc_recurring_cybersource_create_profile in includes/uc_recurring.uc_cybersource.inc
Set up a CyberSource customer profile
_uc_recurring_uc_cybersource_update_paymentprofile in includes/uc_recurring.uc_cybersource.inc
Update the payment profile

File

includes/uc_recurring.uc_cybersource.inc, line 373
Uc recurring implementation for the CyberSource module.

Code

function _uc_recurring_cybersource_soap_wsdl_url() {
  if (variable_get('uc_cybersource_server', 'test') == 'test') {
    return 'https://ics2wstest.ic3.com/commerce/1.x/transactionProcessor/CyberSourceTransaction_1.38.wsdl';
  }
  else {
    return 'https://ics2ws.ic3.com/commerce/1.x/transactionProcessor/CyberSourceTransaction_1.38.wsdl';
  }
}