Advanced orders WCPayments plug-in deployment descriptor

The WCPayments plug-in integrates with the Payment Plug-in Controller through the plug-in deployment descriptor. The following PluginDeployment.xml file is the deployment descriptor used by the WCPayments plug-in. The deployment descriptor describes the specific configuration requirements that must be resolved for the plug-in to work correctly.

<?xml version="1.0" encoding="UTF-8"?>
<Plugin xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:noNamespaceSchemaLocation="../PaymentPlugin.xsd">
  <PluginInformation 
        jndi="ejb/com/ibm/commerce/payments/plugin/wcpayments/bean/WCPaymentsPluginHome" 
        home="com.ibm.commerce.payments.plugin.wcpayments.bean.WCPaymentsPluginHome"
                name="WCPaymentsPlugin" 
                version="1.0.0" 
                vendor="IBM"
                independentCredit="true" 
                virtualTerminal="http://black.cn.ibm.com:5432/webapp/PaymentManager">
        <PluginProperty name="hostName" value="black.cn.ibm.com"/>
        <PluginProperty name="port" value="5433"/>
        <PluginProperty name="useSSL" value="true"/>        
        <PluginProperty name="userid" value="wcsadmin"/>
        <PluginProperty name="password" value="LDQyrjLnHfEYtVMzWp5zxg=="/>
        <PluginProperty name="maxWCOrderCreationRetries" value="5"/>
    </PluginInformation>
</Plugin>

In addition to the common plug-in parameters (such as jndi and home), the WCPayments plug-in requires the following properties that are unique to this plug-in:

Feedback