> > I'm extending a project of mine to support multiple database vendors.
> > I'm thinking about creating db-specific gateways extending a generic one
> > and then injecting the appropriate version into the services based on a
> > config param.
> >
> > I
It might have been datamgr.
http://datamgr.riaforge.org/
G!
On Sat, May 28, 2011 at 4:52 PM, .jonah wrote:
>
> Hi All,
>
> I'm extending a project of mine to support multiple database vendors.
> I'm thinking about creating db-specific gateways extending a generic one
Hi All,
I'm extending a project of mine to support multiple database vendors.
I'm thinking about creating db-specific gateways extending a generic one
and then injecting the appropriate version into the services based on a
config param.
I remember looking at some open source app a
Wondering if these checks belong in a gateway, I'll keep it simple:
Assuming I want my service to update a user object only if there's no user
using the username or email provided by the submitted form.
UserService.cfc
public void function updateUser(username,password,email){
var userid = 0;
use
Also, the server will need to be restarted after you add them to the folder.
--
/Kevin Pepperman
~|
Want to reach the ColdFusion community with something they want? Let them know
on the House of Fusion mailing lists
Archive:
Usually they go in your lib folder, at least in the standalone server.
eg. C:\ColdFusion9\lib\
In a J2EE install the path would be under the /webroot/WEB-INF/lib/
--
/Kevin Pepperman
~|
Want to reach the ColdFusion community
I'm trying to set up a Yahoo gateway on my local server and I keep
running into an issue that I don't know where to put the files.
I downloaded a bunch of jar files to set up a yahoo gateway, but when
I go to add it, CF Administrator tells me..
* Error creating gateway type.
Unable to
I tried this, and I'm not seeing any of non-local scoped vars showing up. I
see each of my DAOs and Gateways and each of their internal methods, but I
don't see any reference to the non-local vars (of which, I know there are
many). I'm just doing a , correct?
Jonathan
&
> You have not var'd q_programs
Good catch.
As someone mentioned earlier, all function local variables must var scoped.
That includes things you often forget, like: query names, loop indexes,
etcetera.
~|
Want to
You have not var'd q_programs - use local.q_programs otherwise every
concurrent request will be overwriting the same variable and you'll
get unpredictable results.
Sean
On Wed, Jan 13, 2010 at 11:35 PM, Jonathan Price
wrote:
>
> Yeah, we're on CF8 for better or worse. So I redid the previous f
> So the worked fine in our CF8 environment, but CF7 is
> complaining about it. Is {} just a CF8 shorthand for struct? I replaced the
> {} with StructNew(), > and it seems to work. I'm just terrified of screwing
> this up and having to chase down some phantom bugs three months from now.
Yea
Jonathan Price wrote:
> Thanks for the reply! I'm definitely trying to get a handle on this as I
> don't want to chase down the repercussions in the future! Thank so much for
> your help. It almost makes sense to me now...
>
A useful trick if you are creating your CFC in any persistent scope
Thanks for the reply! I'm definitely trying to get a handle on this as I don't
want to chase down the repercussions in the future! Thank so much for your
help. It almost makes sense to me now...
> > should I not worry about running 'createObject' on the same local.
> o_program structure mem
So the worked fine in our CF8 environment, but CF7 is
complaining about it. Is {} just a CF8 shorthand for struct? I replaced the
{} with StructNew(), and it seems to work. I'm just terrified of screwing this
up and having to chase down some phantom bugs three months from now.
~~~
> should I not worry about running 'createObject' on the same local.o_program
> structure member everytime?
The fact that createObject is INSIDE the loop is precisely why it is
working now and that is good. When you posted your first "real" code
sample (the second one) with the createObject ou
CF copies objects by reference. Each time you changed the object in
the loop, you updated each previous reference. You could use
duplicate() to put a copy into the array.
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/
2010/1/14 Jonathan Price :
>
> 2) Should m
Yeah, we're on CF8 for better or worse. So I redid the previous function to
look like this:
And I'm getting the correct info back now. Last two quest
Right, I tried this but it behaved weirdly - as thought the ArrayAppend were
passing just a pointer to the one object each time so that after appending all
my objects, the array was full replicas of whichever object was loaded last
instead of a bunch of different objects. To clarify, here's so
> If you're on CF9 things may a little different in that you may not need to
> explicitly var
> scope,
If you are on CF9, use the local scope as it is inherently "varred":
...
If you are not on CF9, I could recommend still getting in the habit of
pretending there is a local scope and putt
Hi Jonathon,
There's only one thisContact variable, which is being reused each time
through the loop. So all you need to do is put:
right at the start. There's an indeterminate number of values that are
passing through that one variable on their way into the array, but it's
still one variabl
So, I'm relatively new to OO in ColdFusion, and I'm banging my head against one
issue in particular. Let's say I've got a DAO or Gateway object in my
APPLICATION scope that needs to return a collection of beans, I'm having
trouble understanding the need to VAR scope all internally used variabl
ny so they
> don't scrap it and go to .Net or some crappy IBM product. Guess thats not
> going to happen using the directory watcher gateway.
Be aware that is only true of the example gateways provided in source
form - and that's why the source is provided! It's open source
I just found this.
http://forums.adobe.com/message/60801#60801
"Well, the directory watcher is supplied as an *example* and is not
really intended to be production-quality code. The source is supplied
so you are free to modify it yourself as needed.
--
Sean A Corfield "
So I guess I spent all t
I'm having issues with a directory watcher event gateway. I just tried
uploading 10 files to a server via FTP. The first and the last file were
noticed and handled. The 2-9 files were ignored.
Any idea why and how I should handle this? I have the interval set to 500.
Should I try a longer amo
Thanks, I found the problem. I use standard edition but need to use enterprise
one.
>On mine, it's CF Admin > Event Gateways > Gateway Instances.
>
>
>
>>
>> I can not find CF Admin > Data & Services > Event Gateways > Gateway
>> Insta
John M Bliss wrote:
> On mine, it's CF Admin > Event Gateways > Gateway Instances.
>
> Tarek Jubaer wrote:
>> I can not find CF Admin > Data & Services > Event Gateways > Gateway
>> Instances option in my local CF admin panel.
>>
>> Is
On mine, it's CF Admin > Event Gateways > Gateway Instances.
On Wed, May 13, 2009 at 7:47 AM, Tarek Jubaer wrote:
>
> I can not find CF Admin > Data & Services > Event Gateways > Gateway
> Instances option in my local CF admin panel.
>
> Is there an
I can not find CF Admin > Data & Services > Event Gateways > Gateway Instances
option in my local CF admin panel.
Is there anything that i need to install/configure?
~|
Want to reach the ColdFusion community w
On Sun, Aug 31, 2008 at 10:59 PM, Gerald Guido wrote:
>>>Hope it helps. Sorry if it's not too helpful, I am sorta buzzed.
>
> LMAO. Me too. Got in to a beer fueled coding session
WOOHOO!
Cheers!
:DeN
--
It is by doubting that we come to investigate, and by investigating
that we recognize
>>Hope it helps. Sorry if it's not too helpful, I am sorta buzzed.
LMAO. Me too. Got in to a beer fueled coding session
"what would happen if I ..."
"I wonder if I could ... Nope... Dammit... Infinite loop"
"Huh... I wonder what that would do Who, COOL"
Thanx Guys
~G~
On Mon
If your application scoped CFC doesn't use instance data then yes, by
copying the method out of the CFC dynamically. However, at that point
it's time to give up and use evaluate() imo.
Evaluate() is there to be used in these situations; overusing it is
bad but it does have its place.
On Mon, Sep
On Sun, Aug 31, 2008 at 10:09 PM, Gerald Guido wrote:
>>>Use cfinvoke.
>
> Thanx James
>
> I thought about that, and you are right. But I was hoping to keep it in a
> cfscript block.
>
> Is there a way to do that? This is more of an academic pursuit than a
> practical one btw. Just digging in and s
>>Use cfinvoke.
Thanx James
I thought about that, and you are right. But I was hoping to keep it in a
cfscript block.
Is there a way to do that? This is more of an academic pursuit than a
practical one btw. Just digging in and seeing what I can do more than
anything else.
Thanx
G
On Sun, Aug
Use cfinvoke. This allows you to specify an arbitrary component and
method to call.
On Mon, Sep 1, 2008 at 11:24 AM, Gerald Guido <[EMAIL PROTECTED]> wrote:
>
> What I want to do is eliminate "evaluate" from the mix even though it seems
> to me to be doing exactly what it was designed to do, much
I did not see this go though on http://www.houseoffusion.com/groups/cf-talk/
So i am re-posting it
Goal: to create a create a generic function to update database records
(CRUD) on multiple tables with out creating a function for each table.
Back ground. For various reasons I am using a coded gene
Hi fellow cfers,
First a little history... I am working on a project that requires me to use the
directory watcher event gateway. For those who have used the event gateways,
they hit supplied cfc's as (non-singletons ... correct me if i'm wrong :-) ),
which removes the ability to cr
I use google checkout for a non-profit organization - they do not
charge any processing fees for nonprofits - at least until the end of 2009...
they have been excellent so far.
At 09:10 PM 7/27/2008, William Seiter wrote:
>I get the feeling that Paypal is a bad choice.
>
>I have had some runi
>>it may be just because Paypal having been around for such a long time,
there are more people using it,
thus more people to report problems.
This is true, but my impression is that it not so much people having
problems as much as the "Shoot first, ask questions later" approach that
they take tha
>>Anyone have any experience with Google Checkout or any other
companies that
I should look into?
Yes, good question.
I have the feeling that if a significant number of developers here are
complaining about Paypal,
it may be just because Paypal having been around for such a long time,
there a
ninginthemargins.com
> Use PassKey: GoldenGrove
> You'll be glad you did.
>
>
> ::-Original Message-
> ::From: Mike Kear [mailto:[EMAIL PROTECTED]
> ::Sent: Sunday, July 27, 2008 1:47 PM
> ::To: CF-Talk
> ::Subject: Re: [ot] - Payment Gateways?
> ::
> ::I
::From: Mike Kear [mailto:[EMAIL PROTECTED]
::Sent: Sunday, July 27, 2008 1:47 PM
::To: CF-Talk
::Subject: Re: [ot] - Payment Gateways?
::
::I guess it works great until you start to sell virtual goods, such as
::software, music downloads, hosting, video, etc.
::
::Once you sell something that you
I guess it works great until you start to sell virtual goods, such as
software, music downloads, hosting, video, etc.
Once you sell something that you cant demonstate fits in a box and
goes in the post or you can get a signed receipt for a UPS voucher,
you're screwed. It will be a matter of time
rience in connecting several different payment gateways
> to
> my clients sites so that they can process CC transactions. But, it seems
> when it comes to my own website, I need a little advice on which company
> has
> the best system.
>
> I am putting together a very simple webs
I also agree about paypal. I run a small Linux Hosting Biz as well as being
a programmer.
I had a customer pay me 400.00 on his bill ( Hosting and alot of PHP
programming). Well almost 3 weeks later PayPal took the money (put my
account -300.00) back from me stating he paid me with fraudulant fund
>I asked the paypal person I was talking to how i can change things so
>I dont get this happening in teh future, and his answer was, you cant.
> You cant use PAYPAL if you are selling virtual goods, and expect to
>get protection from Paypal
>
>As i said, my opinion is to tell paypal to take their
lliam Seiter <[EMAIL PROTECTED]> wrote:
> Ok, so I have experience in connecting several different payment gateways to
> my clients sites so that they can process CC transactions. But, it seems
> when it comes to my own website, I need a little advice on which company has
> th
Ok, so I have experience in connecting several different payment gateways to
my clients sites so that they can process CC transactions. But, it seems
when it comes to my own website, I need a little advice on which company has
the best system.
I am putting together a very simple website that
Does anyone have experience with integrating innovative gateways coldfusion
api - please contact me off list.
Thanks
Steve
~|
ColdFusion 8 beta â
Damn well solved.
What it was was simpler, and its a DOH! moment. The Event Gateway CFC
was under a CF application that was protected, so anytime the
EventGateway wanted to be run, well, it was being redirected (or
something, error log is very hazy on this) so it didn't run.
And that is it.
Have you tried to call the CFC directly via a browser? If there are compile
issues in the cfc you should get a cfadmin login screen. If there issues you
should see them. Also, in the have it return something. I.e.
. On top of that, if you are using application.cfc verify that
your onRequ
eliminate a security issue by setting both servers to run as
admin for a moment and test the directory watcher.
Chris
-Original Message-
From: Mark Drew [mailto:[EMAIL PROTECTED]
Sent: Monday, April 23, 2007 10:56 AM
To: CF-Talk
Subject: Re: Problems with Event Gateways
The gateway
Time for a server reboot :-)
On 4/23/07, Mark Drew <[EMAIL PROTECTED]> wrote:
>
> The gateway instance is of a Directory Watcher, so there is no
> calling page. That is the only error message I can find in *ALL* the
> logs. Which tells me precisely nothing.
>
>
> On 23 Apr 2007, at 15:23, Ryan, Te
The gateway instance is of a Directory Watcher, so there is no
calling page. That is the only error message I can find in *ALL* the
logs. Which tells me precisely nothing.
On 23 Apr 2007, at 15:23, Ryan, Terrence wrote:
> Mark, are you seeing any errors in the eventgateway.log, or in the
>
Yep, they have full Access at the moment
MD
On 23 Apr 2007, at 15:08, Robertson-Ravo, Neil (RX) wrote:
> Windows machines? Not that it should make any difference but have you
> checked the file permissions on the relevant folders etc based on the
> startup user account??
>
>
>
Yep
Local System
On 23 Apr 2007, at 15:09, Peterson, Chris wrote:
> Mark,
>
> Are the CF services on both machines running with the same
> credentials?
>
> Chris
>
>
~|
Create robust enterprise, web RIAs.
Upgrade & integrate
rence Ryan
Senior Systems Programmer
Wharton Computing and Information Technology
E-mail: [EMAIL PROTECTED]
-Original Message-
From: Mark Drew [mailto:[EMAIL PROTECTED]
Sent: Monday, April 23, 2007 10:06 AM
To: CF-Talk
Subject: Re: Problems with Event Gateways
Oh yeah.. first
with Event Gateways
Oh yeah.. first place I checked before I removed what was left of my
hair...
CFC works fine, its a shell, does nothing. the cfg is obviously
looking in the right place (since it is running when a file changes
in a directory). and the code runs on 4 other servers that I
Mark,
Are the CF services on both machines running with the same credentials?
Chris
~|
ColdFusion MX7 and Flex 2
Build sales & marketing dashboard RIAâs for your business. Upgrade now
http://www.adobe.com/products/coldfusion/
am a bit stumped, unless its some hidden winderz security setting
(I have made the directory modifiable by all so it isnt that)
MD
On 23 Apr 2007, at 13:33, AJ Mercer wrote:
> Hi Mark,
>
> just to ask the obvious, is the gateway services enabled?
> cfadmin -> Event gateways -&g
Hi Mark,
just to ask the obvious, is the gateway services enabled?
cfadmin -> Event gateways -> settings
On 4/23/07, Mark Drew <[EMAIL PROTECTED]> wrote:
>
> I have a couple of servers (live and staging) that I have deployed
> and event gateway to. Both servers are same v
I have a couple of servers (live and staging) that I have deployed
and event gateway to. Both servers are same version of Java and CF,
running CF standalone (rather than deployment onto JRun) and on one
server the event gateway runs fine, on the other I get the following
error:
Error invo
Could be a resource issue. Try reducing the the number of concurrent threads
it will process at one time.
Also, I've run into a similar issue where some of my threads will not
complete. For example if they throw an error for any reason, I trap the
errors and reload that item back into the queue fo
Hey hey, I'm trying to import a large file into a database by sending the
insert statements to an asynchronous gateway. The gateway itself is nothing but
a database insert, and it is working to some extent. For instance, with my test
data of about 701 inserts, only about 150-180 actually get ins
I would say my favorite 2 are
1.) PayPal Payflow Pro
2.) Authorize.net
I have some getting started and faqs about paypals service on my site at
http://www.danvega.org/blog
On 12/7/06, Jenny Gavin-Wear <[EMAIL PROTECTED]> wrote:
>
> I am looking for some advice on payment gatewa
I am looking for some advice on payment gateways.
What would be ideal is a gateway that is:
1. Internationally supported (especially UK/USA)
2. Integrates seamlessly with a shopping cart
3. Ideally, will not require SSL
4. Is reliable/robust with decent documentation, preferably code examples
for
On Friday 06 October 2006 15:00, Richard Kroll wrote:
> composited within one another, how this affected performance. Once
> there were 4-5 objects composited within an object, the instantiation
> time of the object became really slow. My thought was to use a resource
> pool within application me
> > >if all your objects are in the session
> > Noo, never do this. Eats up memory fast, JRUN will crash.
>I had a CF 7.0.1 site that got thousends of page views/day doing this,
and >it was fine.
> We were using Weblogic though, which is a tad more industrial than
JRrun,
> IMVHO.
This is som
On Friday 06 October 2006 09:59, Snake wrote:
> >if all your objects are in the session
> Noo, never do this. Eats up memory fast, JRUN will crash.
I had a CF 7.0.1 site that got thousends of page views/day doing this, and it
was fine.
We were using Weblogic though, which is a tad more indust
>if all your objects are in the session
Noo, never do this. Eats up memory fast, JRUN will crash.
Russ
~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by
On Friday 06 October 2006 03:19, Justin Holzer wrote:
> simple task if you just use a url variable, or something similar, to
> trigger the re-initialization. But until my team, and the production
> support team, adopt this idea as a standard, there is no use in
> implementing it, because it will ce
Yes, using a URL parameter is really easy. Even though we are in a clustered
environment, writing a script to make the necessary http requests to all of
the v-tiers would not be a big deal. Like I said in my original post, if I
was in charge, this is the way I would do things. Being that I'm not in
That is a good idea, but unfortumately our system is split up into a bunch
different modules, and we generally don't push them all at the same time,
but they all share the same application name, and at the moment, they all
need to share the same application name, or the session data will not be
acc
using a URL var to re-init is simpleunless you are in a clustered
environment, then its a PITA.
nice sig BTW.
DK
On 10/5/06, Tom Chiverton <[EMAIL PROTECTED]> wrote:
>
> On Thursday 05 October 2006 15:59, Douglas Knudsen wrote:
> > This will force your app to be re-inited without any interve
On Thursday 05 October 2006 15:59, Douglas Knudsen wrote:
> This will force your app to be re-inited without any intervention, flags,
> etc.
I like simple :-)
--
Tom Chiverton
Helping to conveniently repurpose corporate CEOs
This email is se
just had a thought...why not rename your application with each code push?
By application I mean the name inteh cfapplication tag.
wrote:
>
> On Wednesday 04 October 2006 02:44, Justin Holzer wrote:
> > server or have to run an extra script to re-init the application
> variables
> > after deployme
On Wednesday 04 October 2006 02:44, Justin Holzer wrote:
> server or have to run an extra script to re-init the application variables
> after deployment. I'm trying to get this changed, but for now I have to
> deal with it.
Just put your init code in an Application.cfm, and set a flag once you are
I will not bore everyone with all the details of my conundrum, but suffice
it to say, even though I would like to, I cannot implement my DAOs and
Gateways as shared CFC objects in the application scope in the existing
systems that I am enhancing at work. The simple reason is that the
production
Thanks Michael. I got it working now and ready to have some fun. WooWho!
On 9/19/06, Michael Dinowitz <[EMAIL PROTECTED]> wrote:
> One of the problems with gateways is that they operate in a different
> 'space' than a standard CF application and if an error is thrown,
One of the problems with gateways is that they operate in a different
'space' than a standard CF application and if an error is thrown, the site
wide error handler does not handle it. What I do is have a separate gateway
directory with my gateways in it (actually gateway stubs) alo
I took the examples I've found and made a cfc that watches a directory
for changes. I then tried to start my new gateway and it fails. I
looked in the logs and I cant find any real error message. Just that
it tried to start it. I tried to start the ones that came with MX7 and
those fail to start to
On 9/19/06, Michael Dinowitz <[EMAIL PROTECTED]> wrote:
> What issues are you having?
>
> >I'm trying to do a basic directory watcher but I'm not having much
> >luck. Can some one point me to a good tutorial for this?
> >
Hi Phil,
Jeff Peters recently published an article in the CFDJ specifically
What issues are you having?
>I'm trying to do a basic directory watcher but I'm not having much
>luck. Can some one point me to a good tutorial for this?
>
>Thanks
>
>--
>Phil
~|
Introducing the Fusion Authority Quarterly Update
I'm trying to do a basic directory watcher but I'm not having much
luck. Can some one point me to a good tutorial for this?
Thanks
--
Phil
~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-da
exactamundo! Going with XML, generated in the SQL even, returned to the
view. Use the 'bean force' for manipulating the data.
shazzam!
DK
On 8/29/06, Kris Jones <[EMAIL PROTECTED]> wrote:
>
> > So, in the gateway I have a method that
> > grabs all 1100 rows, loops over them creating a bean fr
The next step I would do would be to add cfflush to the mix.
Then append periods (.) and some other output indicators throughout your
loops.
See if the process experiences a slowdown at any point.
Terrence Ryan
Senior Systems Programmer
Wharton Computing and Information Technology
E-
> So, in the gateway I have a method that
> grabs all 1100 rows, loops over them creating a bean from the row, and
> adding the bean to a array which is eventually returned. Performance
> absolutely sucks. It takes about 15 seconds to do this. Any ideas on how
> to speed this up?
Unless you are
arrayresize didn't matter really, but a good point for sure. With debugging
on, times increased by about 4 to 5 fold, already caught that one!
danke
DK
On 8/29/06, Ryan, Terrence <[EMAIL PROTECTED]> wrote:
>
> I have a feeling that it will take a couple passes to improve the
> performance of th
I have a feeling that it will take a couple passes to improve the
performance of the operation.
Are you using ArrayResize to allocate the size of the array before hand?
This helps the performance of Large Arrays.
Are you a CFC function to assign the results to a bean, and repeating
all 1
be killing your
> speed possibly?
>
> Chris
>
> -Original Message-
> From: Douglas Knudsen [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, August 29, 2006 1:18 PM
> To: CF-Talk
> Subject: performance and CFC gateways
>
> Ok, working on some Flex apps here using CF
I think we've decided that Evaluate no longer has a noticeable performance
hit.
Russ
> -Original Message-
> From: Peterson, Chris [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, August 29, 2006 1:33 PM
> To: CF-Talk
> Subject: RE: performance and CFC gateways
>
> W
: performance and CFC gateways
Ok, working on some Flex apps here using CF on the backside. Got the
usual cadre of bean, gateway, and DAO cfcs. I have a table with 1100
rows in it I want returned via the gateway. So, in the gateway I have a
method that grabs all 1100 rows, loops over them creating a
Ok, working on some Flex apps here using CF on the backside. Got the usual
cadre of bean, gateway, and DAO cfcs. I have a table with 1100 rows in it I
want returned via the gateway. So, in the gateway I have a method that
grabs all 1100 rows, loops over them creating a bean from the row, and
add
tore the first
>and last 4.
>
>-Original Message-
>From: Doug Brown [mailto:[EMAIL PROTECTED]
>Sent: Monday, August 14, 2006 7:47 PM
>To: CF-Talk
>Subject: OT: Payment gateways & storing of CC info
>
>I was wondering what payment gateways you are using. I check
at http://www.reedexpo.com
>
> -Original Message-
> From: Doug Brown
> To: CF-Talk
> Sent: Tue Aug 15 00:47:17 2006
> Subject: OT: Payment gateways & storing of CC info
>
> I was wondering what payment gateways you are using. I checked on wells
> fargo, and
On Tuesday 15 August 2006 02:56, Joe Rosensteel wrote:
> You could also store the credit card as a hashed value. This way it is
> secure and yet it is still accessible for charge backs issued by the bank.
> A hashed card could only be looked up if you already knew the credit card
> number.
*Ac
website at http://www.reedexpo.com
-Original Message-
From: Doug Brown
To: CF-Talk
Sent: Tue Aug 15 00:47:17 2006
Subject: OT: Payment gateways & storing of CC info
I was wondering what payment gateways you are using. I checked on wells
fargo, and they charge 2.4% per transaction plus
Monday, August 14, 2006 7:47 PM
>To: CF-Talk
>Subject: OT: Payment gateways & storing of CC info
>
>I was wondering what payment gateways you are using. I checked on wells
>fargo, and they charge 2.4% per transaction plus 0.31 cents per transaction.
>Anyone know of others with
Most secure way is not to store it. If you have to, I would store the first
and last 4.
-Original Message-
From: Doug Brown [mailto:[EMAIL PROTECTED]
Sent: Monday, August 14, 2006 7:47 PM
To: CF-Talk
Subject: OT: Payment gateways & storing of CC info
I was wondering what pay
I was wondering what payment gateways you are using. I checked on wells fargo,
and they charge 2.4% per transaction plus 0.31 cents per transaction. Anyone
know of others with better rates? Also, I was wondering how everybody stores
their CC information. I of course want the most secure way
B V wrote:
> clickatell looks interesting, and I am hosted on HMS like you said, so
> gateways would also be good.. What do you mean by 'async'? I'm not too
> familiar with gateways.. Thanks..
clickatell (and several other aggregators) doesn't support
1 - 100 of 162 matches
Mail list logo