on 7/4/02 10:16 AM, Dan Stein at [EMAIL PROTECTED] wrote:

> Three questions
> 
> 1. Can I set up testing without getting a security certificate for my
> development machine?

yes


> 2. do you have a sample snippet of the return response so I can see what
> parsing it is like. I am assuming I will have to use <@POSTARG> to get my
> results
> 



the first results we look for is the default authorize net argument "<@ARG
x_response_code>". this numerical value will be either 1,2 or 3.
(!=approved, 2=denied, 3=error). the form we send them includes a large
number of hidden arguments, some of which I show below:


<FORM METHOD=POST 
ACTION="https://secure.authorize.net/gateway/transact.dll";>


<INPUT TYPE=HIDDEN NAME="x_Cust_ID" VALUE="@@user$member_record_id">
<INPUT TYPE=HIDDEN NAME="x_Invoice_Num" VALUE="@@user$member_record_id">
<INPUT TYPE=HIDDEN NAME="userref" VALUE="<@USERREFERENCEARGUMENT>">
<INPUT TYPE=HIDDEN NAME="x_Login" VALUE="forestweb">
<INPUT TYPE=HIDDEN NAME="x_Header_Html_Payment_Form" VALUE="<HTML><HEAD>
Forestweb form</HEAD><BODY><CENTER>">
<INPUT TYPE=HIDDEN NAME="x_Color_Background" VALUE="FFFFFF">
<INPUT TYPE=HIDDEN NAME="x_Version" VALUE="3.0">
<INPUT TYPE=HIDDEN NAME="x_Email_Customer" VALUE="FALSE">
<INPUT TYPE=HIDDEN NAME="x_adc_relay_response" VALUE="TRUE">
<INPUT TYPE=HIDDEN NAME="x_adc_url"
VALUE="https://www.forestweb.com/nborderbill.taf?function=passed&;<@USERREFER
ENCEARGUMENT>">



As you can see the form comes back to use from authorize net to
nborderbill.taf?function=passed&<@USERREFERENCEARGUMENT>">. At that function
there is an if statement to check  the value of <@ARG x_response_code>.
Depending on it's value the user is re-assigned variable, told to try again
etc.

Does this help?

-Cornelius Conboy


> 3. Do you use ADC Relay or ADC direct response. Seems like ADC Direct
> response avoids the URL referrer URL issue altogether. Does it cause other
> problems for Witango?


________________________________________________________________________
TO UNSUBSCRIBE: send a plain text/US ASCII email to [EMAIL PROTECTED]
                with unsubscribe witango-talk in the message body

Reply via email to