January 14, 2009
I’m setting up my first production implementation of CFPAYMENT and I’m managing it with ColdSpring (of coz). Here’s a neat little snippet of ColdSpring configuration that shows how easy it is to get started with the project:
<bean id="PaymentService" class="model.cfpayment.core">
<constructor-arg name="config">
<map>
<entry key="path"><value>braintree.braintree</value></entry>
<entry key="MerchantAccount"><value>0</value></entry>
<entry key="Username"><value>demo</value></entry>
<entry key="Password"><value>password</value></entry>
<entry key="TestMode"><value>true</value></entry>
</map>
</constructor-arg>
</bean>
Mark Mazelin has already gone live with his Skipjack gateway and is doing some clean up on our documentation. We’re getting closer to a release and the code is looking solid.
Comments are closed.