You would need to figure out what the requirements of the clearing house are. Send the data they need, then parse the results they give you. There is no simple answer for this question, it all depends on the company you are dealing with. Does any of the data get sent as part of the URL? How about as cookies? Will the resulting data be in HTML? XML? Some proprietary custom format? Maybe the clearing house doesn't use HTTP/HTTPS at all... maybe there is a custom protocol and you will need to deal with it at the socket level.

There is no straight answer here because it will vary depending on the clearing house. You need to obtain info from them *first*, then you can start to consider how to handle communications from Rev.

On Dec 1, 2004, at 3:10 PM, Hershel Fisch wrote:

Hi gentlemen , you are missing the point . the question is the same way you could do CC payment thru an ms internet explorer app. that connects to certain clearing houses this should be done from within a RR window ? and the answer is there is an external from ???? I think from Alt. to run explorer or ??? the other name from within RR.
Hershel
On Wednesday, December 1, 2004, at 02:45 PM, Nelson Zink wrote:


To all,

For what it's worth here is an algorithm to identify 'good' credit card
numbers:


---- Determine the number of digits
if the number of chars of temp =16 or the number of chars of temp=13
then
------Verification Algorithm
if the number of chars of temp=16 then
repeat with zz=1 to 8
put 2*(char ((2*zz)-1) of temp) into CC
if CC>=10 then put (cc mod 10)+1 into char ((2*zz)-1) of temp
else put CC into char ((2*zz)-1) of temp
end repeat
end if


    if the number of chars of temp=13 then
      repeat with zz=1 to 6
        put 2*(char (2*zz) of temp) into CC
        if CC>=10 then put (cc mod 10)+1 into char (2*zz) of temp
        else put CC into char (2*zz) of temp
      end repeat
    end if

------ Sum all digits
put empty into TT
repeat with zz=1 to the number of chars of temp
add char zz of temp to TT
end repeat
if TT mod 10 is not 0 then put "Number in error, re-enter Credit Card
number."


else put "Re-enter Credit Card number-- incorrect number of digits."

end if


Nelson

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


_______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution


-----------------------------------------------------------
Frank D. Engel, Jr.  <[EMAIL PROTECTED]>

$ ln -s /usr/share/kjvbible /usr/manual
$ true | cat /usr/manual | grep "John 3:16"
John 3:16 For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life.
$




___________________________________________________________
$0 Web Hosting with up to 120MB web space, 1000 MB Transfer
10 Personalized POP and Web E-mail Accounts, and much more.
Signup at www.doteasy.com

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to