[EMAIL PROTECTED] wrote: > But the second part I'm not sure how to write the syntax... > webpay.put_certificatePath bundle, "c:\webpay\gateway.cer" > > > Any ideas?
In VBScript you can omit the parantheses from a method call, like so: object.method arg1, arg2 So they would translate to this in CF: <cfscript> webpay.put_certificatePath(bundle, "c:\webpay\gateway.cer"); webpay.put(bundle, "CLIENTID", "10000000"); </cfscript> -- Lindsay Evans. Developer, Red Square Productions. [p] 8596.4000 [f] 8596.4001 [w] www.redsquare.com.au --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MXDU2004 + Macromedia DevCon AsiaPac + Sydney, Australia http://www.mxdu.com/ + 24-25 February, 2004
