Re: VeriSign PayFlow Configuration/Sample Code

2002-03-28 Thread Tony Schreiber

here's what I use:

CFX_PFPRO
HostAddress=payflow.verisign.com HostPort=443 TimeOut=30
 TRXTYPE=A VENDOR=username
USER=username PWD=username TENDER=C PARTNER=VeriSign
 ACCT=#ManageCC.Num#
EXPDATE=#ManageCC.Exp# AMT=#total# ZIP=#Billing.Zip#

CFOUTPUT Query=PNResponse
CFSET PF_#Name# = Value
/CFOUTPUT

CFIF PF_Result EQ 0
CFSET TransactionID = PF_PNRef
!--- Queries ---
CFINCLUDE
TEMPLATE=inc_placeorder.hmn
CFSET StoreStatus = Order
Placed
CFELSEIF PF_Result EQ -1
CFSET StoreStatus =
There was a problem accessing the credit card processor. Please try again
in a few minutes.
CFELSE
CFSET StoreStatus = There was an
error talking to the credit card processor [#PF_RespMSG#]. Please contact
the administrator.
/CFIF

 Can anybody point me at some ColdFusion-specific
 documentation and sample code on setting up and
 using VeriSign's PayFlow credit card payment
 system?

 Thanks in advance

 Joe Tartaglia
 High Caliber Systems
 212-684-5553
 http://www.HighCaliber.com
 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Tony Schreiber, Senior Partner  Man and Machine, Limited
mailto:[EMAIL PROTECTED]   http://www.technocraft.com

http://www.simplemessageboard.com ___Free Forum Software for Cold Fusion
http://www.is300.net ___The Enthusiast's Home of the Lexus IS300
http://www.digitacamera.com __DigitA Camera Scripts and Tips
http://www.linklabexchange.com _Miata Link ECU Data Exchange

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: VeriSign PayFlow Configuration/Sample Code

2002-03-28 Thread Tony_Petruzzi

just make sure to put a cflock around the cfx tag.

Anthony Petruzzi
Webmaster
954-321-4703
http://www.sheriff.org


-Original Message-
From: Tony Schreiber [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 28, 2002 3:39 PM
To: CF-Talk
Subject: Re: VeriSign PayFlow Configuration/Sample Code


here's what I use:

CFX_PFPRO
HostAddress=payflow.verisign.com HostPort=443 TimeOut=30
 TRXTYPE=A VENDOR=username
USER=username PWD=username TENDER=C PARTNER=VeriSign
 ACCT=#ManageCC.Num#
EXPDATE=#ManageCC.Exp# AMT=#total# ZIP=#Billing.Zip#

CFOUTPUT Query=PNResponse
CFSET PF_#Name# = Value
/CFOUTPUT

CFIF PF_Result EQ 0
CFSET TransactionID = PF_PNRef
!--- Queries ---
CFINCLUDE
TEMPLATE=inc_placeorder.hmn
CFSET StoreStatus = Order
Placed
CFELSEIF PF_Result EQ -1
CFSET StoreStatus =
There was a problem accessing the credit card processor. Please try again
in a few minutes.
CFELSE
CFSET StoreStatus = There was an
error talking to the credit card processor [#PF_RespMSG#]. Please contact
the administrator.
/CFIF

 Can anybody point me at some ColdFusion-specific
 documentation and sample code on setting up and
 using VeriSign's PayFlow credit card payment
 system?

 Thanks in advance

 Joe Tartaglia
 High Caliber Systems
 212-684-5553
 http://www.HighCaliber.com
 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Tony Schreiber, Senior Partner  Man and Machine, Limited
mailto:[EMAIL PROTECTED]   http://www.technocraft.com

http://www.simplemessageboard.com ___Free Forum Software for Cold Fusion
http://www.is300.net ___The Enthusiast's Home of the Lexus IS300
http://www.digitacamera.com __DigitA Camera Scripts and Tips
http://www.linklabexchange.com _Miata Link ECU Data Exchange


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: VeriSign PayFlow Configuration/Sample Code

2002-03-28 Thread Tony Schreiber

I should add some information to this...

First is that we Auth the transaction first. Then when it ships do a
delayed capture...  The credit card info comes from a custom tag I wrote
(ManageCC).

The PNResponse query is what the CFX_PFPRO tag returns.

 here's what I use:

   CFX_PFPRO
 HostAddress=payflow.verisign.com HostPort=443 TimeOut=30
TRXTYPE=A VENDOR=username
 USER=username PWD=username TENDER=C PARTNER=VeriSign
ACCT=#ManageCC.Num#
 EXPDATE=#ManageCC.Exp# AMT=#total# ZIP=#Billing.Zip#

   CFOUTPUT Query=PNResponse
   CFSET PF_#Name# = Value
   /CFOUTPUT

   CFIF PF_Result EQ 0
   CFSET TransactionID = PF_PNRef
   !--- Queries ---
   CFINCLUDE
 TEMPLATE=inc_placeorder.hmn
   CFSET StoreStatus = Order
 Placed
   CFELSEIF PF_Result EQ -1
   CFSET StoreStatus =
 There was a problem accessing the credit card processor. Please try again
 in a few minutes.
   CFELSE
   CFSET StoreStatus = There was an
 error talking to the credit card processor [#PF_RespMSG#]. Please contact
 the administrator.
   /CFIF

  Can anybody point me at some ColdFusion-specific
  documentation and sample code on setting up and
  using VeriSign's PayFlow credit card payment
  system?
 
  Thanks in advance
 
  Joe Tartaglia
  High Caliber Systems
  212-684-5553
  http://www.HighCaliber.com
  FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
  Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
 


 Tony Schreiber, Senior Partner  Man and Machine, Limited
 mailto:[EMAIL PROTECTED]   http://www.technocraft.com

 http://www.simplemessageboard.com ___Free Forum Software for Cold Fusion
 http://www.is300.net ___The Enthusiast's Home of the Lexus IS300
 http://www.digitacamera.com __DigitA Camera Scripts and Tips
 http://www.linklabexchange.com _Miata Link ECU Data Exchange




Tony Schreiber, Senior Partner  Man and Machine, Limited
mailto:[EMAIL PROTECTED]   http://www.technocraft.com

http://www.simplemessageboard.com ___Free Forum Software for Cold Fusion
http://www.is300.net ___The Enthusiast's Home of the Lexus IS300
http://www.digitacamera.com __DigitA Camera Scripts and Tips
http://www.linklabexchange.com _Miata Link ECU Data Exchange

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: VeriSign PayFlow Configuration/Sample Code

2002-03-28 Thread VAN VLIET, SCOTT E (SBCSI)

There are two releases of the Verisign CFX implementation: Version 2.31
(which is the C++ version), and Version 3.0.* (which is a Java-based CFX
tag.  A client of mine was forced to upgrade to the Java version because of
issues with the FraudScreen service.

If you need code for the Java version, let me know and I will post it.

-- 
SCOTT VAN VLIET 
SENIOR ANALYST 
SBC SERVICES, INC 
Tel: 858.886.3878 
Fax: 858.653.6763 
Email: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 




-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 28, 2002 12:55 PM
To: CF-Talk
Subject: VeriSign PayFlow Configuration/Sample Code



Can anybody point me at some ColdFusion-specific
documentation and sample code on setting up and
using VeriSign's PayFlow credit card payment
system?

Thanks in advance

Joe Tartaglia
High Caliber Systems
212-684-5553
http://www.HighCaliber.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists