Dear All

I am utilising a SECPAY payment authorisation service to process client 
payments.

I collect data via a form, do a database insert with it and then do a cfhttp 
post to Secpay's Secure server.

I have only just noticed that when I do the post I do not get to see the 
https in the url nor do I see the secure lock in the bottom part of the 
browser window.

I therefore have two questions:

1) Is the connection still secure to the secpay server?
2) Is it possible to show the https or the padlock in the bottom of the 
browser window?

Code listing:

<cfhttp method="Post"
url="https://www.secpay.com/java-bin/ValCard";>
<cfhttpparam name="merchant" type="formfield" value="#REQUEST.merchant#">
<cfhttpparam name="trans_id" type="formfield" value="#REQUEST.trans_id#">
<cfhttpparam name="amount" type="formfield" value="#REQUEST.field_amount#">
<cfhttpparam name="callback" type="formfield" value="#REQUEST.callback#">
<cfhttpparam name="test_status" type="formfield" value="live">
<cfhttpparam name="template" type="formfield" 
value="http://www.secpay.com/users/digita02/temp.html";>
<cfhttpparam name="options" type="formfield" value="cb_post=true">
<cfhttpparam name="currency" type="formfield" 
value="#Request.field_currency#">
<cfhttpparam name="bill_name" type="formfield" value="#REQUEST.field_name#">
<cfhttpparam name="bill_company" type="formfield" 
value="#REQUEST.field_company#">
<cfhttpparam name="bill_email" type="formfield" 
value="#REQUEST.field_email#">
<cfhttpparam name="bill_tel" type="formfield" value="#REQUEST.field_phone#">
<cfhttpparam name="bill_addr_1" type="formfield" 
value="#REQUEST.field_address1#">
<cfhttpparam name="bill_addr_2" type="formfield" 
value="#REQUEST.field_address2#">
<cfhttpparam name="bill_city" type="formfield" value="#REQUEST.field_town#">
<cfhttpparam name="bill_state" type="formfield" 
value="#REQUEST.field_county#">
<cfhttpparam name="bill_post_code" type="formfield" 
value="#REQUEST.field_postcode#">
<cfhttpparam name="bill_country" type="formfield" 
value="#REQUEST.field_country#">
<cfhttpparam name="mail_merchants" type="formfield" 
value="[EMAIL PROTECTED]:[EMAIL PROTECTED]">
<cfhttpparam name="mail_attach_customer" type="formfield" value="false">
<cfhttpparam name="mail_attach_merchant" type="formfield" value="false">
<cfhttpparam name="mail_customer" type="formfield" value="true">
<cfhttpparam name="mail_subject" type="formfield" value="MacVideo: Order 
Confirmation #REQUEST.trans_id#">
</cfhttp>
<html>
<head>
<title></title>
</head>
<body>
<cfoutput>
#cfhttp.filecontent#<br>
</cfoutput>
</body>
</html>

Any help offered is greatly appreciated.

regards
Graham Cole
[EMAIL PROTECTED] 


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243332
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to