Re: Examples of configurable database gateways?

2011-05-28 Thread Russ Michaels
> > 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

Re: Examples of configurable database gateways?

2011-05-28 Thread Gerald Guido
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

Examples of configurable database gateways?

2011-05-28 Thread .jonah
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

MVC Services & Gateways

2010-11-15 Thread Clint Willard
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

Re: Gateways

2010-02-14 Thread Kevin Pepperman
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:

Re: Gateways

2010-02-14 Thread Kevin Pepperman
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

Gateways

2010-02-14 Thread Phillip Vector
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

Re: Can application scope gateways/DAOs returning an array of Objects?

2010-01-20 Thread Jonathan Price
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 &

Re: Can application scope gateways/DAOs returning an array of Objects?

2010-01-14 Thread Leigh
> 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

Re: Can application scope gateways/DAOs returning an array of Objects?

2010-01-14 Thread Sean Corfield
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

RE: Can application scope gateways/DAOs returning an array of Objects?

2010-01-14 Thread brad
> 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

Re: Can application scope gateways/DAOs returning an array of Objects?

2010-01-14 Thread Kym Kovan
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

Re: Can application scope gateways/DAOs returning an array of Objects?

2010-01-14 Thread Jonathan Price
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

Re: Can application scope gateways/DAOs returning an array of Objects?

2010-01-14 Thread Jonathan Price
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. ~~~

RE: Can application scope gateways/DAOs returning an array of Objects?

2010-01-14 Thread brad
> 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

Re: Can application scope gateways/DAOs returning an array of Objects?

2010-01-13 Thread James Holmes
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

Re: Can application scope gateways/DAOs returning an array of Objects?

2010-01-13 Thread Jonathan Price
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

Re: Can application scope gateways/DAOs returning an array of Objects?

2010-01-13 Thread Jonathan Price
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

RE: Can application scope gateways/DAOs returning an array of Objects?

2010-01-13 Thread brad
> 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

Re: Can application scope gateways/DAOs returning an array of Objects?

2010-01-13 Thread Jaime Metcher
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

Can application scope gateways/DAOs returning an array of Objects?

2010-01-13 Thread Jonathan Price
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

Re: WTF? Re: Anyone here good with Event Gateways?

2009-07-24 Thread Sean Corfield
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

WTF? Re: Anyone here good with Event Gateways?

2009-07-24 Thread Phillip B
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

Anyone here good with Event Gateways?

2009-07-24 Thread Phillip B
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

Re: Unable to find Data & Services > Event Gateways > Gateway Instances

2009-05-20 Thread Tarek Jubaer
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

RE: Unable to find Data & Services > Event Gateways > Gateway Instances [SEC=Unclassified]

2009-05-13 Thread Miles Jordan
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

Re: Unable to find Data & Services > Event Gateways > Gateway Instances

2009-05-13 Thread John M Bliss
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

Unable to find Data & Services > Event Gateways > Gateway Instances

2009-05-13 Thread Tarek Jubaer
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

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread denstar
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

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread Gerald Guido
>>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

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread James Holmes
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

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread denstar
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

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread Gerald Guido
>>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

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread James Holmes
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

Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread Gerald Guido
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

using persist type objects in event gateways and other cfc's

2008-08-07 Thread Patrick Santora
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

RE: [ot] - Payment Gateways?

2008-07-28 Thread Al Musella, DPM
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

Re: [ot] - Payment Gateways?

2008-07-28 Thread Gerald Guido
>>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

Re: [ot] - Payment Gateways?

2008-07-27 Thread Claude Schneegans
>>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

Re: [ot] - Payment Gateways?

2008-07-27 Thread Phillip M. Vector
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

RE: [ot] - Payment Gateways?

2008-07-27 Thread William Seiter
::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

Re: [ot] - Payment Gateways?

2008-07-27 Thread Mike Kear
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

Re: [ot] - Payment Gateways?

2008-07-27 Thread Radek Valachovic
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

Re: [ot] - Payment Gateways?

2008-07-27 Thread Eric Haskins
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

Re: [ot] - Payment Gateways?

2008-07-27 Thread Will Tomlinson
>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

Re: [ot] - Payment Gateways?

2008-07-27 Thread Mike Kear
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

[ot] - Payment Gateways?

2008-07-27 Thread William Seiter
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

Anyone used Innovative Merchant Gateways Coldfusion API

2007-06-06 Thread Steve Kahn
Does anyone have experience with integrating innovative gateways coldfusion api - please contact me off list. Thanks Steve ~| ColdFusion 8 beta â

Re: Problems with Event Gateways

2007-04-23 Thread Mark Drew
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.

Re: Problems with Event Gateways

2007-04-23 Thread Dave Ferguson
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

RE: Problems with Event Gateways

2007-04-23 Thread Peterson, Chris
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

Re: Problems with Event Gateways

2007-04-23 Thread AJ Mercer
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

Re: Problems with Event Gateways

2007-04-23 Thread Mark Drew
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 >

Re: Problems with Event Gateways

2007-04-23 Thread Mark Drew
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?? > > >

Re: Problems with Event Gateways

2007-04-23 Thread Mark Drew
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

RE: Problems with Event Gateways

2007-04-23 Thread Ryan, Terrence
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

RE: Problems with Event Gateways

2007-04-23 Thread Robertson-Ravo, Neil (RX)
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

RE: Problems with Event Gateways

2007-04-23 Thread Peterson, Chris
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/

Re: Problems with Event Gateways

2007-04-23 Thread Mark Drew
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

Re: Problems with Event Gateways

2007-04-23 Thread AJ Mercer
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

Problems with Event Gateways

2007-04-23 Thread Mark Drew
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

Re: Asynchonous Gateways error/question

2007-02-08 Thread Alan Rother
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

Asynchonous Gateways error/question

2007-02-08 Thread Adam Fortuna
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

Re: Payment Gateways

2006-12-07 Thread Dan Vega
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

Payment Gateways

2006-12-07 Thread Jenny Gavin-Wear
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

Re: Bad use of DAOs and Gateways?

2006-10-06 Thread Tom Chiverton
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

RE: Bad use of DAOs and Gateways?

2006-10-06 Thread Richard Kroll
> > >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

Re: Bad use of DAOs and Gateways?

2006-10-06 Thread Tom Chiverton
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

RE: Bad use of DAOs and Gateways?

2006-10-06 Thread Snake
>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

Re: Bad use of DAOs and Gateways?

2006-10-06 Thread Tom Chiverton
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

Re: Bad use of DAOs and Gateways?

2006-10-05 Thread Justin Holzer
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

Re: Bad use of DAOs and Gateways?

2006-10-05 Thread Justin Holzer
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

Re: Bad use of DAOs and Gateways?

2006-10-05 Thread Douglas Knudsen
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

Re: Bad use of DAOs and Gateways?

2006-10-05 Thread Tom Chiverton
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

Re: Bad use of DAOs and Gateways?

2006-10-05 Thread Douglas Knudsen
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

Re: Bad use of DAOs and Gateways?

2006-10-05 Thread Tom Chiverton
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

Bad use of DAOs and Gateways?

2006-10-03 Thread Justin Holzer
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

Re: need some help with event gateways

2006-09-19 Thread Phill B
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,

Re: need some help with event gateways

2006-09-19 Thread Michael Dinowitz
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

Re: need some help with event gateways

2006-09-19 Thread Phill B
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

Re: need some help with event gateways

2006-09-19 Thread Dave Carabetta
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

Re: need some help with event gateways

2006-09-19 Thread Michael Dinowitz
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

need some help with event gateways

2006-09-19 Thread Phill B
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

Re: performance and CFC gateways

2006-08-29 Thread Douglas Knudsen
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

RE: performance and CFC gateways

2006-08-29 Thread Ryan, Terrence
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-

Re: performance and CFC gateways

2006-08-29 Thread Kris Jones
> 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

Re: performance and CFC gateways

2006-08-29 Thread Douglas Knudsen
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

RE: performance and CFC gateways

2006-08-29 Thread Ryan, Terrence
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

Re: performance and CFC gateways

2006-08-29 Thread Douglas Knudsen
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

RE: performance and CFC gateways

2006-08-29 Thread Russ
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

RE: performance and CFC gateways

2006-08-29 Thread Peterson, Chris
: 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

performance and CFC gateways

2006-08-29 Thread Douglas Knudsen
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

Re: Payment gateways & storing of CC info

2006-08-15 Thread Jeff Houser
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

Re: OT: Payment gateways & storing of CC info

2006-08-15 Thread Casey Dougall
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

Re: Payment gateways & storing of CC info

2006-08-15 Thread Tom Chiverton
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

Re: OT: Payment gateways & storing of CC info

2006-08-15 Thread Robertson-Ravo, Neil (RX)
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

Re: Payment gateways & storing of CC info

2006-08-14 Thread Joe Rosensteel
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

RE: Payment gateways & storing of CC info

2006-08-14 Thread Coldfusion
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

OT: Payment gateways & storing of CC info

2006-08-14 Thread Doug Brown
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

Re: sms msg and euent gateways

2006-07-13 Thread Paul Hastings
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   2   >