Re: catching broken links?

2006-05-08 Thread One User
I have a pure CF solution. email me if interested. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239843 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

Re: getting the closest number to an increment of 25,000

2006-04-06 Thread One User
Closest number, which is SMALLER than a given num (round down): cfset down25 = 25000 * int(num/25000) Closest number, which is LARGER than a given num (round up): cfset up25 = 25000 * ceiling(num/25000) Closest number (round): cfset round25 = 25000 * int(0.5 + num/25000)

Re: CFEXECUTE

2006-04-06 Thread One User
Try to use cscript.exe instead of wscript.exe ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237120 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

Re: getting the closest number to an increment of 25,000

2006-04-06 Thread One User
Closest number (round): cfset round25 = 25000 * int(0.5 + num/25000) You can just use round for this, instead of adding an then using int: cfset round25 = 25000 * round(num / 25000) / cheers, barneyb On 4/6/06, One User [EMAIL PROTECTED] wrote: -- Barney Boisvert Of course. I use int(0.5

Re: Multithreading within a request

2006-04-06 Thread One User
Is it possible to multithread within a single request. For example, I would like to make multiple http requests to a web service, but at the moment they run one after the other, taken about 3 seconds each, but if I could run them both at the same time it would improve the performance of

Re: Cybersource CF tag

2005-09-06 Thread One User
If you under Windows, post your email. I am looking for someone who has or can write me a CF tag for processing credit cards through cybersource's payment gateway. They publish examples for most scripting languages: http://www.cybersource.com/support_center/implementation/downloads/ I just

Re: CFHTTP calling an infinite loop

2005-08-12 Thread One User
This fixes the problem: http://www.cftagstore.com/tags/cfxhttp5.cfm Thanks for looking at it Dave, it has me completely stumped, I always seem to find the cruelest limitations of a technology where there's no way out. I think the CFHTTP timeout is probably working as intended, so that if no

Re: CFHTTP calling an infinite loop

2005-08-12 Thread One User
Oops... Found the original post... This is not a timeout issue, because their server is outputting data and does not stop. Since HTTP allows the response not to have Content-Length header, the garbage they output is perfectly valid response. What needed is some limit on the size of received

Re: File Progress Bar - Flash Remoting

2005-08-08 Thread One User
http://www.cftagstore.com/tags/cfxupload.cfm ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today.

Don't wait for webservice?

2005-06-19 Thread One User
May want to look here: http://www.cftagstore.com/tags/cfxhttp5.cfm I would like to use a web service to invoke a function on a remote server, but I explicitly *don't* want my local server to wait for the remote server to complete the action. I just want my local server to send the

executing windows scheduled tasks through CF

2005-06-15 Thread One User
If the problem is in executing a task under another account, use this: http://www.cftagstore.com/tags/cfxexec.cfm This is a replacement for CFEXECUTE that allows account switching. ~| Logware (www.logware.us): a new and

Re: REPOST Re: FedEx Shipping custom tags

2005-06-11 Thread One User
We use CFX_FEDEX for a long time and it works fine. What else can I say? I don't have any experience with the other tag. If people are selling it, I assume it works also. spent a week or so trying to work out the integration myself for my ecommerce software . . . I'm not sure I'd pay $250

Re: REPOST Re: FedEx Shipping custom tags

2005-06-11 Thread One User
Also. Just checked cf_FedEx on adminprotools.com. Here some observations: - For $49 you get only the ability to issue the rate and tracking requests. No actual shipping supported. You have to pay $149 for a full version that allows shipping operations. - Labels are browser-based, as far as

Re: asynch cfml gateway - working example

2005-06-07 Thread One User
This provides asynchronous capabilities in full. And without MX7. http://www.cftagstore.com/tags/cfxhttp5.cfm ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

Re: asynch cfml gateway - working example

2005-06-07 Thread One User
Windows hosts files? Potential external/unknown variables? Hmmm... What you are talking about? Give me a potential point of break. Multithreading assumes cooperation between different parts of a task. So-called async gateways are just parallel and NOT cooperating DIFFERENT tasks. If this is what

Digest Authentication

2005-05-28 Thread One User
This tag supports it: http://www.cftagstore.com/tags/cfxhttp5.cfm ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client

Re: cfexecute and wget

2005-05-28 Thread One User
Try this instead: http://www.cftagstore.com/tags/cfxhttp5.cfm Roger I was using cfexecute because I wanted the process to launch and then release. So the page calling it could still continue processing. Kind of a poor mans version of creating another thread to process in the background.