RE: Why is there query.recordcount with non-SELECT queries?

2006-04-19 Thread Nashir Sunderji
You log ingo to 'search' and type in search by name the letters naf and you should be able to find him Customer service -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED] Sent: 18 April 2006 16:16 To: CF-Talk Subject: Why is there query.recordcount with non-SELECT

RE: Why is there query.recordcount with non-SELECT queries?

2006-04-19 Thread Russ Michaels
erm, god knows what this guys reply has to do with your question but. No, only selects return a recordcount. Although SQL does return a message about how many records are updated, but I cannot recall if this is stored in the query object, so try cfdumping it and see if its there. Russ

Directory watcher for standard edition

2006-04-19 Thread Chris Velevitch
Where can I find the equivalent of the directory watcher gateway for cf standard edition? I want to be able to use my existing directory watcher code without change. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au

RE: Evaluate vs ?

2006-04-19 Thread Russ Michaels
the variable must exist or you cannot evaluate it. In my example I specified saving the content to a file and cfincluding it, which is not what you have done below. This works fine for what you want below. cfset content = this is some dynamic content cfset foo = This is static content. #content#

Re: BEA licenses BlueDragon for WebLogic

2006-04-19 Thread Thomas Chiverton
On Monday 17 April 2006 19:37, Vince Bonfanti wrote: Some people might also find it significant that BEA is now essentially a competitor to Adobe in a portion of the ColdFusion server market (that portion being people who are now or are planning to redeploy existing CFML applications onto

Re: Catching bogus credit card numbers

2006-04-19 Thread Thomas Chiverton
On Monday 17 April 2006 21:04, Mosh Teitelbaum wrote: To date, the few fake numbers that have gone through have been among the commonly-known numbers. Hopefully, this will cut down on a little bit of frustration for the client. Why not add a feature so the client can press a button to have

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Thomas Chiverton
On Wednesday 19 April 2006 04:31, Rey Bango wrote: something, I'd like to see if there's something already built to handle this: [EMAIL PROTECTED]: This user doesn't have a yahoo.com account ([EMAIL PROTECTED]) [0] You mean like a regular expression, wrapped in a simple loop over each line

Q of Q crazy problem

2006-04-19 Thread Ben Nadel
I am having this really strange problem involving a query of queries that I have never encountered before. Basically I am building a query with the QueryNew() method: cfset REQUEST.SearchQuery = QueryNew( title, date, preview, link, score, VARCHAR, DATE, VARCHAR, VARCHAR, INTEGER ) / Then

RE: BEA licenses BlueDragon for WebLogic

2006-04-19 Thread RADEMAKERS Tanguy
-Original Message- We already run MX on Weblogic. This is a supported configuration and works great. You must be luckier than us then - we run MX 6.1 in weblogic and so far, great is most certainly not the word i'd use to describe it. /t

Re: Why is there query.recordcount with non-SELECT queries?

2006-04-19 Thread Nick Tong - TalkWebSolutions.co.uk
I agree with Russ - i'm not sure if you can but although i can't test on the machine i'm on at the mo it might be worth looking at whats returned in the metadata (getMetaData) and the query result structure http://www.succor.co.uk/index.cfm/2006/3/21/The-cfquery-result-structure On 19/04/06,

Re: BEA licenses BlueDragon for WebLogic

2006-04-19 Thread Thomas Chiverton
On Wednesday 19 April 2006 13:18, RADEMAKERS Tanguy wrote: You must be luckier than us then - we run MX 6.1 in weblogic and so far, great is most certainly not the word i'd use to describe it. *Really* ? What's up ? -- Tom Chiverton Advanced ColdFusion Programmer

Re: SOT: Best Practices Instantiating a CFC

2006-04-19 Thread Larry Lyons
thx James. larry If there is no data, you don't need to serialize it and you only need one instance. I'd store it in the Application scope in this case, since that will provide the lowest overhead in terms of memory use and instantiation time. On 4/19/06, Larry Lyons [EMAIL PROTECTED]

Gzip content from a variable

2006-04-19 Thread gabriel l smallman
Hey all, I have been using cf_gzip for a while but would like to improve performance. Right now it reads a file, then writes a gzip'd file. Then I have to read that file and dish back to user. I would like to just pass in the content as a variable, then get back a variable with the gzip'd data.

RE: Moving HomeSite+

2006-04-19 Thread Andy Matthews
My IT guy recently found a program that migrated specified software for you. Both computers have to be on the network, then you run this software on both computers and simply select what you want copied from old to new. It moves settings, serial numbers, preferences, etc.

RE: Directory watcher for standard edition

2006-04-19 Thread Andy Matthews
Set up a cron job at 1 minute intervals? That's going to likely be the best way to do this. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Chris Velevitch [mailto:[EMAIL PROTECTED]

Re: StructFindKey Path and evaluate

2006-04-19 Thread Thomas Chiverton
On Monday 17 April 2006 17:07, Bruce, Rodney S C-E LCMC HQISEC/Signal Solutions wrote: So I am not going to the very bottom of the structure, the value at MyStruct.ProjectA.Task1.Task1.3, would be a structure not a simple value. Ya know if that tree was flattened into a few database tables,

Get String Byte Size

2006-04-19 Thread Rob Wilkerson
Anyone have any quick code to retrieve the number of bytes in a string /without/ writing the string to a file first? I'm trying to do a little debugging and I'd like to know the size of a string that is being returned to the browser. Thanks. -- Rob Wilkerson

RE: BEA licenses BlueDragon for WebLogicr

2006-04-19 Thread RADEMAKERS Tanguy
-Original Message- *Really* ? What's up ? Number one peeve: Can't pass java objects you created yourself to an EJB in a different application on the same server: MX uses the classloader of the various objects/parameters to figure out which method to call, so it claims that no such method

CF Page Won't Stop Executing

2006-04-19 Thread powell
Am I in the middle of a brain-burp, or is it not in fact the case that CF used to stop executing the current page if the user hit their stop button and opened a new CF page? I have pages that continue to execute even after the user hits STOP and REFRESH - so now I have a couple of copies of

RE: Get String Byte Size

2006-04-19 Thread Ben Nadel
Rob, Characters take up one byte... As far as I know... Althoug unicode may take up 4?? I can't remember. I suppose the best estimate would be to multiply the string length by the byte size of each characters: intSizeEstimate = Len( strFileContent ) * 4 -b ... Ben Nadel

Re: BEA licenses BlueDragon for WebLogicr

2006-04-19 Thread Thomas Chiverton
On Wednesday 19 April 2006 14:38, RADEMAKERS Tanguy wrote: Number one peeve: Can't pass java objects you created yourself to an EJB in a different application on the same server: MX uses the classloader You couldn't do that even if it was two JSP apps, if they were in different J2EE

Re: CF Page Won't Stop Executing

2006-04-19 Thread Thomas Chiverton
On Wednesday 19 April 2006 14:43, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Am I in the middle of a brain-burp, or is it not in fact the case that CF used to stop executing the current page if the user hit their stop button Don't recall CF6 ever being able to do that. -- Tom Chiverton

Re: Get String Byte Size

2006-04-19 Thread Rob Wilkerson
And therein lies the key. I may - or may not - have unicode involved. I was hoping someone knew of some quick java to return the byte size of a string that would handle those vagaries. I haven't found anything in my searches. On 4/19/06, Ben Nadel [EMAIL PROTECTED] wrote: Rob, Characters

RE: Get String Byte Size

2006-04-19 Thread Andy Matthews
I would think that at the Java level there would be some way to get the size of a variable. Maybe these might help?: http://www.roseindia.net/javatutorials/determining_memory_usage_in_java.shtm l http://gcc.gnu.org/ml/java/2003-02/msg00293.html !//-- andy matthews web

Re: CF Page Won't Stop Executing

2006-04-19 Thread James Holmes
I'm not sure about that either. As for stopping a long running request, use the CF Admin option to stop a page running longer than x seconds. There's also Fusion Reactor or SeeFusion, which can both selectively terminate running CF requests. On 4/19/06, Thomas Chiverton [EMAIL PROTECTED] wrote:

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Rey Bango
Sure. Got something like that? ;) Rey... Thomas Chiverton wrote: On Wednesday 19 April 2006 04:31, Rey Bango wrote: something, I'd like to see if there's something already built to handle this: [EMAIL PROTECTED]: This user doesn't have a yahoo.com account ([EMAIL PROTECTED]) [0] You

RE: Get String Byte Size

2006-04-19 Thread Ben Nadel
Andy, I am not sure how to do this exactly, but maybe something along the lines of: ArrayLen( CreateObject(java, java.lang.String).Init( strFileContent ).GetBytes() ) It creates a string, then gets the byte array (as described in the java docs: Convert this String into bytes according to the

RE: Moving HomeSite+

2006-04-19 Thread Dawson, Michael
Each time I would migrate settings from one PC to another, I would always have to manually re-create my custom keyboard shortcuts. Every other custom item would be copied successfully. I could see the keyboard shortcuts in the appropriate file, but HS would not honor them. Not even after

RE: Moving HomeSite+

2006-04-19 Thread Damien McKenna
-Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 10:16 AM Each time I would migrate settings from one PC to another, I would always have to manually re-create my custom keyboard shortcuts. Every other custom item would be copied

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Thomas Chiverton
On Wednesday 19 April 2006 15:20, Rey Bango wrote: Sure. Got something like that? ;) Ben Nadel suggest a reg. ex. yesterday. -- Tom Chiverton Advanced ColdFusion Programmer ~| Message:

Re: CF Page Won't Stop Executing

2006-04-19 Thread powell
Thanks, I was afraid that I was working with old recollections. I've been looking at both FusionReactor and SeeFusion, so now it's time to move forward. I like FusionReactor better because it handle all of the installation itself. SeeFusion is nice because it shows more info on queries, but

RE: CF Page Won't Stop Executing

2006-04-19 Thread Dan G. Switzer, II
Reed, Am I in the middle of a brain-burp, or is it not in fact the case that CF used to stop executing the current page if the user hit their stop button and opened a new CF page? I have pages that continue to execute even after the user hits STOP and REFRESH - so now I have a couple of copies

RE: Q of Q crazy problem

2006-04-19 Thread Munson, Jacob
NOW, EVEN MORE CRAZY, if I take out the data types in the QueryNew() method, so that it is just: cfset REQUEST.SearchQuery = QueryNew( title, date, preview, link, score, ) / , the whole thing works like a charm. CRAZY! Someone else might notice something, but it looks like it

RE: Gzip content from a variable

2006-04-19 Thread Dan G. Switzer, II
Gabe, I have been using cf_gzip for a while but would like to improve performance. Right now it reads a file, then writes a gzip'd file. Then I have to read that file and dish back to user. I would like to just pass in the content as a variable, then get back a variable with the gzip'd data.

RSS Aggregation?

2006-04-19 Thread Neil Middleton
As a lot of you are already aware I am the guy behind feed-squirrel.comhttp://www.feed-squirrel.com, and I need a little help with a problem I am having. Currently the site is aggregating ~500 RSS feeds, but checking these feeds is growing to be a pain in the butt. Having to get CF to check each

Re: CF Page Won't Stop Executing

2006-04-19 Thread powell
I realize that the STOP alone doesn't have an effect on the currently executing page - but didn't CF (pre-MX I guess) used to stop the current request when it saw a new request from the same browser? I'm pretty sure that I used to be able to stop runnaway pages by hitting STOP and then

RE: Extract email(s) from non-delivered message

2006-04-19 Thread Ben Nadel
I had some time to nail something down Try this: cfsavecontent variable=Test On Wednesday 19 April 2006 04:31, Rey Bango wrote: something, I'd like to see if there's something already built to handle this: [EMAIL PROTECTED]: This

Re: CF Page Won't Stop Executing

2006-04-19 Thread Thomas Chiverton
On Wednesday 19 April 2006 15:34, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: So I guess the bottom line is that with any of the CFMX versions there is no protection from users getting impatient waiting for a page that legitimately takes a few seconds to process, and repeatedly hit REFRESH?

RE: Q of Q crazy problem

2006-04-19 Thread Dan G. Switzer, II
Ben, I am having this really strange problem involving a query of queries that I have never encountered before. Basically I am building a query with the QueryNew() method: ... clip ... However, the following all cause error: cfset REQUEST.SearchQuery[ score ][ REQUEST.SearchQuery.CurrentRow ]

Re: CF Page Won't Stop Executing

2006-04-19 Thread Thomas Chiverton
On Wednesday 19 April 2006 15:45, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: that I used to be able to stop runnaway pages by hitting STOP and then browsing to another CF page - but maybe I'm just halucinating. And how did CF know the difference between that, and a multi-frame'd page ? --

RE: BEA licenses BlueDragon for WebLogicr

2006-04-19 Thread RADEMAKERS Tanguy
-Original Message- Subject: BEA licenses BlueDragon for WebLogicr From: Thomas Chiverton [EMAIL PROTECTED] Date: Wed, 19 Apr 2006 14:55:38 +0100 Thread: http://www.houseoffusion.com/cf_lists/index.cfm/method=messages threadid=45587forumid=4#238080 On Wednesday 19 April 2006 14:38,

RE: CF Page Won't Stop Executing

2006-04-19 Thread Dan G. Switzer, II
I realize that the STOP alone doesn't have an effect on the currently executing page - but didn't CF (pre-MX I guess) used to stop the current request when it saw a new request from the same browser? I'm pretty sure that I used to be able to stop runnaway pages by hitting STOP and then browsing

RE: CF Page Won't Stop Executing

2006-04-19 Thread Eric J. Hoffman
Hitting the stop button previously only stopped your browser interacting with the server. It still runs any process it was told to before. Eric J. Hoffman Managing Partner 2081 Industrial Blvd StillwaterMN55082 mail: [EMAIL

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Thomas Chiverton
On Wednesday 19 April 2006 15:46, Ben Nadel wrote: cfset jobjPattern = CreateObject(java, java.util.regex.Pattern).Compile( (?=\()([EMAIL PROTECTED])(?=\)) ) / What's up with refindall() ? -- Tom Chiverton Advanced ColdFusion Programmer

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Rey Bango
Awesome Ben! I'll try that out. :) Rey... ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238104 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

Re: Q of Q crazy problem

2006-04-19 Thread Tony
ben, i had to do this: select SUM(CAST(getReportsForVehicle.ignitionOnTime as INTEGER)) as ignitionOnTime from getReportsForVehicle where (ipAddressNum =

Re: BEA licenses BlueDragon for WebLogic

2006-04-19 Thread Russ Michaels
I have seen several benefits. It has some extra tags and fucntionality, less bugs, and a smaller footprint if using ServetExec, and the support is better. Plus it runs on .NET :-) Russ -Original Message- From: Thomas Chiverton [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Date:

CFMAIL to @comcast.net accounts

2006-04-19 Thread Tony
anyone else having issues with cfmail programs that you wrote, trying to send messages to people with comcast.net accounts? im getting this error: Failed Recipient: [EMAIL PROTECTED] Reason: Remote host said: 550 Comcast does not support the direct connection to its mail servers from

RE: Extract email(s) from non-delivered message

2006-04-19 Thread Ben Nadel
You can't use REFindAll because the RegExp uses a look behind, which is not supported in CF directly. That's why you have to create a java pattern matcher... If you wanted to uses REFindAll... You could do something like: \([EMAIL PROTECTED]) And then when you get the matches you could take the

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Claude Schneegans
I need to extract emails from non-delivered messages. The problem is that there are not two servers that will return messages with the same syntax. If you only send messages to Yahoo, fine, but what if you send messages to other types of servers? Anyway, if you need to parse something, your

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Rey Bango
Damn Ben, I could just hug ya man! Worked like a charm. Would you mind breaking the regex down for me so I can tweak it if necessary to accomodate other messages? I'm keeping your email on file. Email me your rates. I might need more help in the future. Rey... Ben Nadel wrote: !--- Create

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Rey Bango
You're absolutely right Claude. What I was planning on doing is tweaking the script as I found emails formatted differently and eventually have a nice library of formats setup. I'll look at CF_REExtract to see if it can help as well. Thanks, Rey./.. Claude Schneegans wrote: I need to

RE: Extract email(s) from non-delivered message

2006-04-19 Thread Ben Nadel
Rey, Glad I could help... Reg ex is as follows: (?=\()([EMAIL PROTECTED])(?=\)) (?=\() This is a zero length match possitive look behing for the string (... Meaning, at this point in the regexp, the previous character must be a (. This ( is not part of the matchint string though. ([EMAIL

RE: Extract email(s) from non-delivered message

2006-04-19 Thread Ben Nadel
Rey, If you are unsure of the email type... You might want to try the reg exp: If you want to be variable for type, you can try this: [EMAIL PROTECTED] for the RegExp. Matches any string containg the following characters a-z A-Z 0-9 - . _ AND has at least one @ Might match some crazy

RE: Q of Q crazy problem

2006-04-19 Thread Ben Nadel
Thanks, I will give that a try... Overall, though, I think QofQ are great and very useful. -b ... Ben Nadel www.bennadel.com -Original Message- From: Tony [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 11:23 AM To: CF-Talk Subject: Re: Q of Q crazy

Re: BEA licenses BlueDragon for WebLogic

2006-04-19 Thread Andy Allan
We're talking about running on WebLogic, so the points about ServletExec and .NET are irrelevant (though true). Plus, being that's it's a new product, BD for WebLogic, you can't guarantee there are less bugs. Andy On 19/04/06, Russ Michaels [EMAIL PROTECTED] wrote: I have seen several benefits.

Re: RSS Aggregation?

2006-04-19 Thread Roger Benningfield
Currently the site is aggregating ~500 RSS feeds, but checking these feeds is growing to be a pain in the butt. Having to get CF to check each of these feeds regulary (ideally every 15 minutes) is more difficult than it sounds. Neil: Polling every fifteen minutes is an enormous waste of CPU and

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Rey Bango
That did the trick!! Awesome man! Rey... Ben Nadel wrote: Rey, If you are unsure of the email type... You might want to try the reg exp: If you want to be variable for type, you can try this: [EMAIL PROTECTED] for the RegExp. Matches any string containg the following characters a-z

Re: Directory watcher for standard edition

2006-04-19 Thread Zaphod Beeblebrox
if you're on win32, I can post instructions on how to make a service that will accomplish the something similar. I've used it to create a report que that runs every 10 seconds. On 4/19/06, Andy Matthews [EMAIL PROTECTED] wrote: Set up a cron job at 1 minute intervals? That's going to likely

Re: BEA licenses BlueDragon for WebLogic

2006-04-19 Thread Rey Bango
How about we all take it for what its worth; an announcement of a new option for the CF community. I think options are a good thing. Rey... Andy Allan wrote: We're talking about running on WebLogic, so the points about ServletExec and .NET are irrelevant (though true). Plus, being that's

RE: Extract email(s) from non-delivered message

2006-04-19 Thread Ben Nadel
Rey, Glad I could help... I am sure there is a better way to make the RegExp, using the shorthand notation, but I am not an expert on those: [EMAIL PROTECTED] Samd as... [EMAIL PROTECTED] Where \w is word characters and \d is digit characters... But can never remember what exactly whey stand

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Claude Schneegans
What I was planning on doing is tweaking the script as I found emails formatted differently and eventually have a nice library of formats setup. Then REExtract will definitely make your life easier! The idea is that it is sometimes much easier to describe what's around the string you are

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Claude Schneegans
But assuming its valid email source. That's the problem, especially for messages rejected by the server because they are invalid ;-/ -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Rey Bango
Gotcha. The regex from the prior email is working great so I'm going to go with that for now. Again, I really appreciate your help bud. Rey... Ben Nadel wrote: Rey, Glad I could help... I am sure there is a better way to make the RegExp, using the shorthand notation, but I am not an

Re: Extract email(s) from non-delivered message

2006-04-19 Thread Rey Bango
You've been blogged. :) http://weblogs.macromedia.com/mxna/index.cfm?query=byFeedfeedId=556feedName=Rey%20Bango Thanks again. Rey... Ben Nadel wrote: Rey, Glad I could help... I am sure there is a better way to make the RegExp, using the shorthand notation, but I am not an expert on

Re: Get String Byte Size

2006-04-19 Thread Nick de Voil
Anyone have any quick code to retrieve the number of bytes in a string /without/ writing the string to a file first? I'm trying to do a little debugging and I'd like to know the size of a string that is being returned to the browser. The number of bytes occupied in the application's memory

Re: RSS Aggregation?

2006-04-19 Thread Rob Wilkerson
Neil - To prevent over-polling and, as Roger pointed out, potentially getting your IP blocked, consider Etag/If-None-Match headers as well as the Last-Modified/If-Modified-Since headers: 1. When you retrieve a feed, store the ETag and Last-Modified response headers 2. When you next poll the

Re: Virtual Directories

2006-04-19 Thread Cutter (CFRelated)
I tried this, but it doesn't seem to take. I tried a directoryexists(/tools), and it came up negative. Cutter Zaphod Beeblebrox wrote: edit your *cf_root*\wwwroot\WEB-INF\jrun-web.xml file and add mappings in this format: virtual-mapping resource-path/tools/resource-path

Re: CFMAIL to @comcast.net accounts

2006-04-19 Thread Casey Dougall
are you trying to send this from your computer like using developer? Many ISP's now days require you use their smtp service to send mail. even though you may have setup pop and smtp.domain.com to do this. Your lucky your even getting a reply. Many times messages like that would just be dropped

RE: StructFindKey Path and evaluate

2006-04-19 Thread Bruce, Rodney S C-E LCMC HQISEC/Signal Solutions
Ya know if that tree was flattened into a few database tables, it'd all be much easier :-) -- Tom Chiverton Advanced ColdFusion Programmer The information comes from 4 tables. There's many more fields in each table, but here is the short break down. Project_table Proj_id Proj_name

Re: RSS Aggregation?

2006-04-19 Thread Neil Middleton
Thanks guys for this...it's been plugging some of the gaps I hadn't really considered. The site is very much in development still, even if it doesn't appear to be changing on the surface. I will definitely consider using the last modified headers. I didn't realise you could retreive them

Re: CFMAIL to @comcast.net accounts

2006-04-19 Thread Jordan Michaels
Tony wrote: anyone else having issues with cfmail programs that you wrote, trying to send messages to people with comcast.net accounts? The problem isn't that you're using CFMAIL, it's that you're sending a message from a restricted IP Address. For some reason Comcast has chosen to block this

Re: CFMAIL to @comcast.net accounts

2006-04-19 Thread Tony
im doing this from my server hosted at cfdynamics tw On 4/19/06, Casey Dougall [EMAIL PROTECTED] wrote: are you trying to send this from your computer like using developer? Many ISP's now days require you use their smtp service to send mail. even though you may have setup pop and

Re: BEA licenses BlueDragon for WebLogic

2006-04-19 Thread Andy Allan
Just to clarify, I think this is an excellent move by NewAtlanta. In fact, I would have been buying my two BlueDragon buddies beer this weekend to celebrate if it weren't for the fact I'm stuck in work. Like we need a reason to drink beer!! Ha :-) Andy On 19/04/06, Rey Bango [EMAIL PROTECTED]

Re: RSS Aggregation?

2006-04-19 Thread Rob Wilkerson
I still can't help with the unreliable gateways, but a couple of things to note. First, the last modified header will not help you retrieve a partial feed. It will still retrieve the entire feed, but only if the feed has changed (better than nothing). You're right on your second point. The

New version of rSession available

2006-04-19 Thread Jason Baker
Hi all, For those of you using rSession, I wanted to let you know that version 2.0is available, with better support for CFMX. Here are some of the updates in the new version: Uses CFC's instead of customtags Session spy given a makeover Cookies changed to use prefixes so that the component

Re: Virtual Directories

2006-04-19 Thread Ken Ferguson
I know it's a silly question, but did you restart the CF services??? Cutter (CFRelated) wrote: I tried this, but it doesn't seem to take. I tried a directoryexists(/tools), and it came up negative. Cutter Zaphod Beeblebrox wrote: edit your *cf_root*\wwwroot\WEB-INF\jrun-web.xml file

Re: Virtual Directories

2006-04-19 Thread Cutter (CFRelated)
yep, nothing Cutter Ken Ferguson wrote: I know it's a silly question, but did you restart the CF services??? Cutter (CFRelated) wrote: I tried this, but it doesn't seem to take. I tried a directoryexists(/tools), and it came up negative. Cutter Zaphod Beeblebrox wrote: edit your

Ruby (on Rails) vs Coldfusion

2006-04-19 Thread Andy Matthews
I love Coldfusion and don't plan on moving away from it. But I'd like to see what all the fuss is about Ruby, and specifically Ruby on Rails. Does anyone have a good comparison of the two? I don't currently use any named frameworks, but I have developed a way of coding that seems to work for me.

Re: BEA licenses BlueDragon for WebLogic

2006-04-19 Thread Rey Bango
Like we need a reason to drink beer!! Ha :-) Reasons?!?! We don't need no stinkin' reasons! ;) Rey... ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238139 Archives:

Escaping #'s in outputting a CSS

2006-04-19 Thread webmaster
Stupid beginner question I know but it's been a long time since I've done any REAL CF coding. I am trying to create an HTML code generator for a client and am having problems escaping the #'s in the CSS. I tried the good ole ## but that's not working. It throws an error. If I just remove

Re: Escaping #'s in outputting a CSS

2006-04-19 Thread Rob Wilkerson
Are you trying to replace # with ##? If so, you might need to replace ## with . Maybe a code sample of what you're attempting will help. Is the CSS embedded or inline? If it's linked, then of course there's no need to escape the #'s On 4/19/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

RE: BEA licenses BlueDragon for WebLogic

2006-04-19 Thread Turetsky, Seth
Even if there are more bugs(which I wouldn't know), NewAtlanta's tech support has been amazing supporting Weblogic. On a few cases for us, they recreated the bug and had a hotfix for us within a few days. I'm not sure if Adobe would do that for us, that just seemed the case between versions

Re: New version of rSession available

2006-04-19 Thread Robert Everland III
I just looked at this code and while it solves a problem it creates another one. You go from using session variables, to using the request variable (try using cferror as a catch all on that scope, at least in cf 6) then you wddx it all to a database. Why not just use client variables to begin

CFDirectory

2006-04-19 Thread Mark Leder
Hi all, Trying to get a file listing from a directory, but only capturing the files that are older than 7 days previous to today (using the cfdirectory datelastmodified var). I'm able to retrieve the listing of all files, but I can't seem to get only the ones older than 7 days - throws an

RE: Virtual Directories

2006-04-19 Thread Everett, Al \(NIH/NIGMS\) [C]
I'm not surprised. DirectoryExists() works at the OS level, not webserver. I would try a cfhttp. If you get an error code of 200 or 403 if the (virtual) directory exists. If it doesn't, you should get a 404. -Original Message- From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] Sent:

RE: Escaping #'s in outputting a CSS

2006-04-19 Thread Ben Nadel
What is the error being thrown?? ... Ben Nadel www.bennadel.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 12:52 PM To: CF-Talk Subject: Escaping #'s in outputting a CSS Stupid beginner question I know but

Re: New version of rSession available

2006-04-19 Thread Jason Baker
The functionality of this gives you more power over the scope than using client variables. I've been using rsession since 2000, and working with the original author I converted everything to more mx-friendly code. The hit to the db on my servers only uses 16ms, which is not really and issue

RE: CFDirectory

2006-04-19 Thread Ben Nadel
Don't use the ## in the Where clause: cfquery dbtype=query name=getSource SELECT * FROM statsLevel3 WHERE dateLastModified = cfqueryparam value=#VARIABLES.dateRange# cfsqltype=CF_SQL_TIMESTAMP / /cfquery ... Ben Nadel www.bennadel.com -Original Message-

Re: New version of rSession available

2006-04-19 Thread Robert Everland III
I find 16ms hit hard to believe. You could have large caches of information, structures, arrays of structures, and the hit to read and write that information would go up significantly. The only difference between this method and client variables is that you have converted it to wddx before you

RE: Ruby (on Rails) vs Coldfusion

2006-04-19 Thread Damien McKenna
-Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 12:49 PM Does anyone have a good comparison of the two? Not really. I was looking forward to Mr Corfield's insights after he mentioned he was taking a look at it, but he's presumably

Re: Ruby (on Rails) vs Coldfusion

2006-04-19 Thread Bryan Stevenson
Basically with Ruby it comes down to this (in my short investigation of itI stopped because it is NOT the Holy Grail) It does lots of stuff for you...right up until it needs to something different then the default...then you are right back writing custom code to make your something

Re: Ruby (on Rails) vs Coldfusion

2006-04-19 Thread Jordan Michaels
Bryan Stevenson wrote: Basically with Ruby it comes down to this (in my short investigation of itI stopped because it is NOT the Holy Grail) It does lots of stuff for you...right up until it needs to something different then the default...then you are right back writing custom

RE: Escaping #'s in outputting a CSS

2006-04-19 Thread Sandra Clark
You can use rgb(rr,gg,bb) instead of Hex numbers in CSS. Sandra Clark == http://www.shayna.com Training in Cascading Style Sheets and Accessibility -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 12:52 PM

Re: New version of rSession available

2006-04-19 Thread Jason Baker
I didn't come here to split hairs over performance with you, just to provide some code to the community. Here's what my debug info says for a decent sized wddx packet... 15 ms 15 ms 1 CFC[ C:\Inetpub\wwwroot\framework\lib\cfcs\framework_rsession.cfc | check() ] from

RE: Ruby (on Rails) vs Coldfusion

2006-04-19 Thread Damien McKenna
-Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 1:19 PM It does lots of stuff for you...right up until it needs to something different then the default...then you are right back writing custom code to make your something

Re: Ruby (on Rails) vs Coldfusion

2006-04-19 Thread Zaphod Beeblebrox
I thought that same way until I really got into creating some applications with it. To me it's unbelievable how much stuff is available in that framework. I think where most people get hung up is on comparing Rails to CF. Rails is a framework that provides a lot of functionality for you. Ruby,

RE: CFDirectory

2006-04-19 Thread Mark Leder
Just that simple! Thanks, that worked. Thanks, Mark -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 1:14 PM To: CF-Talk Subject: RE: CFDirectory Don't use the ## in the Where clause: cfquery dbtype=query name=getSource SELECT * FROM

Re: Ruby (on Rails) vs Coldfusion

2006-04-19 Thread Bryan Stevenson
You mean if the scaffolds don't do what you need? Or are you talking about its various classes? Of course you're going to have to hand-code something, this isn't Visual Basic ;-) Speaking in very general terms Damien. Simple examplewant to check that the start date is before the end

Re: Why is there query.recordcount with non-SELECT queries?

2006-04-19 Thread Jochem van Dieten
Russ Michaels wrote: No, only selects return a recordcount. Although SQL does return a message about how many records are updated Maybe some implementations update the diagnostic area with that information, but returning a count of the number of records affected is not part of the SQL

  1   2   >