They have different services (at least thet used to) for different requirements, for example there's a multi currency option and a single (or dual) option. One of the options also supports multiple cart entries whereas another only allows you to send a single item (though this may be a totalled item comprising of multiple items from your cart). Also be aware of the different mechanisme for getting your cart data to the server. One method is to post your cart contents there. If you do this, make sure you provide enough checking to prevent someone spoofing a cart with bogus prices. The other technique - which I prefer, is data fetch. This is where you pass through only a cart ID - which can be stored in whatever format you choose (a Db or application structure). Worldpay then request a predetermined URL from your site and pass this ID back. Your callback page should then present the cart contents in a specific format to WP.
At least this is how it was the first time I meddled with WP (about 3 years ago). May have changed, may be the same. Steve > -----Original Message----- > From: Gordon Burns [mailto:[EMAIL PROTECTED] > Sent: 01 July 2003 12:21 > To: [EMAIL PROTECTED] > Subject: [ cf-dev ] World Pay and CF > > > Is anyone using World Pay and CF ? > > If so any tips on a simple (fast way to get this up and running > with a limited number of products) > > Thanks > > Gordon > > > -- > ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ > > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > For human help, e-mail: [EMAIL PROTECTED] > > -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail: [EMAIL PROTECTED]
