is an object with a lot of methods a memory buster?

2003-05-27 Thread Brad Howerter
If I have a CFC that has a lot of methods and I create, say, 1000 of these objects, does coldFusion use a lot of memory, or is it not much worse than creating 1 of the objects? In other words, are the methods shared across objects, or does it recreate them for each new object? Well,

Block Competitors from Web site

2003-05-27 Thread coldfusion . developer
Hello, Any have any other creative ideas on how to block competitors from gaining access to a Web site. My idea, which isn't fool proof is to try and find out what their network IP address is and write code in your site wide header to redirect or block traffic from a IP sub set, as long you

RE: Block Competitors from Web site

2003-05-27 Thread Tony Weeg
good luck. they can spoof anything from anywhere, if they *really* want to :) tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net 410.548.2337 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003

RE: is an object with a lot of methods a memory buster?

2003-05-27 Thread Dave Watts
However, I believe that when you create a CFC instance, you get (effectively) a Java Map (actually an implementation of a Map) that has entries for each method. Each entry is merely a 'pointer' to the representation of the method. I'm guessing that based on the fact that you can

RE: Block Competitors from Web site

2003-05-27 Thread Tony Weeg
how about, making a password protected area that contains sensitive data, and then just a bland regular area, that you don't care about someone coming into, regardless of who/where/why they are there ? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net

RE: Block Competitors from Web site

2003-05-27 Thread Heald, Tim
VPN? Tim Heald MCP/CCFD Information Systems Specialist Overseas Security Advisory Council U.S. Department of State (202) 663-0130 -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 1:11 PM To: CF-Talk Subject: Block Competitors from

Re: Block Competitors from Web site

2003-05-27 Thread S . Isaac Dealey
Hello, Any have any other creative ideas on how to block competitors from gaining access to a Web site. My idea, which isn't fool proof is to try and find out what their network IP address is and write code in your site wide header to redirect or block traffic from a IP sub set, as long

CFFTP directory listing issues

2003-05-27 Thread Scott Weikert
Hey gang - Trying to get a little CFFTP action set up between two of my servers. With a test file I've got on both, I can successfully connect to an outside box and do a directory listing, no worries. But when I point this test file on one of my servers at the other, the connection works fine

RE: Block Competitors from Web site

2003-05-27 Thread Mike Kear
If I read it right, he wants the site to be open, with all his own customers and prospective customers getting access to everything, but doesn't want to do his competitors' work for them. Make them do their own homework. So having closed off areas wouldn't work - his own prospective customers

Re: is an object with a lot of methods a memory buster?

2003-05-27 Thread Sean A Corfield
On Tuesday, May 27, 2003, at 09:24 US/Pacific, Dave Watts wrote: So, in each CFC instance you create, you will get entries in the Map for every method (or, at least, every public method) but those entries won't take up a great deal of space (since they are just name, pointer pairs). While

Re: CF 5

2003-05-27 Thread Sean A Corfield
On Tuesday, May 27, 2003, at 07:18 US/Pacific, Michael Tangorre wrote: Does anyone know where can d/l CF 5 from? Search my blog for try cf5 - I remember blogging a link to the CF5 trial download. The post just before or just after that also explains how you can buy CF5 (from Macromedia). Sean

RE: is an object with a lot of methods a memory buster?

2003-05-27 Thread Ian Skinner
Sean I think what Dave was talking about is actually changing the source code of the CFC file. -- Ian Skinner Web Programmer BloodSource Sacramento, CA -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 9:40 AM To: CF-Talk

Re: Block Competitors from Web site

2003-05-27 Thread Doug White
If he is running any version of IIS, it is a simple matter to block by IP, IP range, or domain. == Stop spam on your domain, use our gateway! For CF hosting solutions http://www.clickdoug.com ISP rated: http://www.forta.com/cf/isp/isp.cfm?isp_id=772

Re: CFFTP directory listing issues

2003-05-27 Thread Critz
oi Scott!! i've not looked at it.. but is it possible to toggle passive mode on/off. I have to do this with ftp clients when i get errors like that.. ctz Tuesday, May 27, 2003, 12:36:10 PM, you wrote: SW Hey gang - SW Trying to get a little CFFTP

Increase stability in Excel COM object?

2003-05-27 Thread Cassidy Symons
I've been trying to get solid, stable code for writing an XLS file using a COM object, but it seems to break every few times I try it, even with TRY/CATCH statements. I copied the basic code straight out of the Ben Forta books, then just made changes to the database stuff based upon my specific

RE: Block Competitors from Web site

2003-05-27 Thread Stacy Young
Not an exact science but I believe you could either be very successful at blocking a company's access. (i.e. all requests from from same subnet / point of presence)or very unsuccessful in that the company's internet access may not be tied to their internet domain(s). (their hosting may be

Re: CFFTP directory listing issues

2003-05-27 Thread Scott Weikert
At 12:49 PM 5/27/2003 -0400, you wrote: i've not looked at it.. but is it possible to toggle passive mode on/off. I have to do this with ftp clients when i get errors like that.. Where the hell do you live? I owe you a beer. :) --Scott

RE: FB3 Question Regarding handling Forms

2003-05-27 Thread Suyer, Ed [PRD Non-JJ]
Hey James, Here's what I do with multi-button forms in FB3: cfform name=mainForm input type=hidden name=fuseaction value=this value is set by the onclick event of each button ... input type=submit name=operation value=Add onClick=javascript: mainForm.fuseaction.value='#XFA.btnAdd#';

Re: math question (is a matrix possible?)

2003-05-27 Thread Jochem van Dieten
Tony Weeg wrote: if any of the payments need to be ammended, removed for bad check reasons, chargeback on a card, operator error, then i need to be able to go back in the payment history, and make a change that follows the payment application rules. what i am trying to stay away from are

RE: is an object with a lot of methods a memory buster?

2003-05-27 Thread Andre Mohamed
Dave, Another possibility: Perhaps all of the instances of the persisted CFC merely carry a name/pointer pair which points to a singe stale copy of the method and hence Sean's statement still holds partially true regarding not taking up a great deal of space. However, I'm merely making a

RE: Increase stability in Excel COM object?

2003-05-27 Thread Mike Townend
You could write a proxy com object, this is what I have done for create webdirs on the fly... Instead of CF having to instantiate multiple object then checking this that and everything, I have written a com object which says create this dir. Then the proxy object does all the complex stuff

RE: Block Competitors from Web site

2003-05-27 Thread Miller, Kevin
Be careful! Competitors at work may be customers at home. Kevin -Original Message- From: Stacy Young [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 9:54 AM To: CF-Talk Subject: RE: Block Competitors from Web site Not an exact science but I believe you could either be very

Creating an XML Document

2003-05-27 Thread Scott Wilhelm
How would I go about creating an XML document w/ CF? I'm trying to make a public document of our services that other organizations can pull the data from Any help would be appreciated. TIA! Scott Scott Wilhelm Computer Technician/Web Developer http://www.sllboces.org

Re: Various questions

2003-05-27 Thread Chris Evans
The NNTP service is up and running. Our web site is still down temporarily, but the newsgroup mirror is alive and well. That's how I'm posting this message. I'm glad to see that people use it! Chris Evans http://www.fuseware.com

Re: Creating an XML Document

2003-05-27 Thread ksuh
An XML document is just text, so you can just create a string with an xml document in it: cfset foo = ?xml version=1.0?barWhee, I'm an XML document!/bar/xml Then do what you want with it; cffile, cfhttp, yadda yadda. - Original Message - From: Scott Wilhelm [EMAIL PROTECTED] Date:

Re: Creating an XML Document

2003-05-27 Thread Critz
oi Scott!! http://www.developer.be/index.cfm/fuseaction/tutorialDetail/GroupID/71/tutorialName/Generating_XML_with_ColdFusion_-_A_Rough_Guide.htm crit Tuesday, May 27, 2003, 1:08:55 PM, you wrote: SW How would I go about creating an XML document w/ CF?

Re: Block Competitors from Web site

2003-05-27 Thread Christian Cantrell
On Tuesday, May 27, 2003, at 12:09 PM, [EMAIL PROTECTED] wrote: I know the user could just log in fromo their home connection to open a TS session outside of their company. I want to make sure they are blocked from the company. This is very interesting. I've never actually heard of

RE: is an object with a lot of methods a memory buster?

2003-05-27 Thread Barney Boisvert
Write a CFC with a single method that returns a string: -- cfcomponent cffunction name=get cfreturn hello, world! / /cffunction /cfcomponent

RE: Increase stability in Excel COM object?

2003-05-27 Thread Miller, Kevin
The problem is that Office is not reentrant, and isn't intended to be run in a server-based environment. Office will probably break under any decent load. Microsoft has a few articles to help out, but don't expect miracles. Configure Office Applications for Automation from a COM+/MTS Package:

RE: Creating an XML Document (Now, how do I query the XML?)

2003-05-27 Thread Scott Wilhelm
Crit: Thank you so much. That's the perfect explaination for me :) Now, next question is; how can I query an XML doc? Thanks! Scott -Original Message- From: Critz [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 1:16 PM To: CF-Talk Subject: Re: Creating an XML Document

Re: Implementing a Please wait while processing widget

2003-05-27 Thread Dave Lyons
http://www.mollerus.net/development/cftags/cf_progressmeter.cfm - Original Message - From: Dave Wilson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 10:10 AM Subject: RE: Implementing a Please wait while processing widget Thanks guys, Some interesting

RE: Block Competitors from Web site

2003-05-27 Thread Matt Robertson
When a competitor started hammering a client's web site quotation system, we worked up some special pricing adjustments for anyone coming from their connection. No warnings, relocations to disney.com etc. We also built in a cookie-based usage limiter -- knowing full well those can be

RE: Block Competitors from Web site

2003-05-27 Thread Haggerty, Mike
My thoughts are that you need a non-technological solution to this problem. Anyone can spoof an IP address, go to your site from another domain, or falsify their credentials to gain access to your information. So an IP-based solution probably will not help - you probably don't know who all of

Re: Block Competitors from Web site

2003-05-27 Thread Sean A Corfield
On Tuesday, May 27, 2003, at 10:30 US/Pacific, Matt Robertson wrote: Amusing anecdote, but if your competitors' IT staff is involved and they are not idiots you are going to waste a lot of time in your new job as a catherder. And let's not forget Google and other search engines which cache

Re: Block Competitors from Web site

2003-05-27 Thread cf-talk
This is very interesting. I've never actually heard of anyone doing something like this before. You're kidding right? I don't know about IIS, but I do know that Apache will let you block requests in a variety of ways, including IP address and/or domain names, so I believe you could fairly

RE: Creating an XML Document (Now, how do I query the XML?)

2003-05-27 Thread Haggerty, Mike
You mean directly from ColdFusion? Not sure, but someone probably knows. What I do is load XML into PL/SQL and use Xpath to query the data. Sounds inefficient, but it is *incredibly* fast. For a while, I was loading data into tables and running queries with joins, but found loading the

Re: Block Competitors from Web site

2003-05-27 Thread cftalk
Amusing anecdote, but if your competitors' IT staff is involved and they are not idiots you are going to waste a lot of time in your new job as a catherder. I initially read that as 'new job as catheter', and thought that somebody *really* made a poor career choice. charlie

Re: is an object with a lot of methods a memory buster?

2003-05-27 Thread Sean A Corfield
On Tuesday, May 27, 2003, at 09:48 US/Pacific, Ian Skinner wrote: I think what Dave was talking about is actually changing the source code of the CFC file. If Dave confirms that, then what he's seeing is the old, cached version of the .class file being executed and CFMX not forcing a

OT? - CF contract work in Chicago Region?

2003-05-27 Thread Ed Gordon
Hello, This may be off topic (?), but does anyone know who/what might be a resource for contract work on Cold Fusion in the greater Chicago region? Anything from a headhunter's name to an executive at a company known to be using CF would be appreciated. Probably a good idea to reply privately to

Re: Block Competitors from Web site

2003-05-27 Thread John Paul Ashenfelter
Regards, John Paul Ashenfelter CTO/TransitionPoint - Original Message - From: Christian Cantrell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 1:18 PM Subject: Re: Block Competitors from Web site On Tuesday, May 27, 2003, at 12:09 PM, [EMAIL PROTECTED]

Leave first letter uppercase . . .

2003-05-27 Thread Earl, George
Is there an existing function or tag that can take an all upper case phrase and convert it so only the first letter in each word remains uppercase and the rest of each word is lower case? Specifically, we have City and State information in our database as all uppercase and we want to display the

RE: is an object with a lot of methods a memory buster?

2003-05-27 Thread Raymond Camden
So what you are saying is this (and let me know if I'm wrong): A.cfc contained method test that returns 1. User creates instance of A.cfc and stores it in Application.A. A.cfc is edited so that test returns 2. If I call Application.A.test(), you say it should return 2, not 1? It certainly

RE: Leave first letter uppercase . . .

2003-05-27 Thread Raymond Camden
There are a few titlecase style UDFs at cflib.org, but the simplest solution is.. str = ucase(left(str,1)) lcase(right,len(str)-1); === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of

RE: Block Competitors from Web site

2003-05-27 Thread Tony Weeg
we combat this with one thing 1. our main marketing part of our site, intended for *everyone*, has nothing that you cant get from a phone call, spoofing a human :) 2. anything that we want just our *clients* to see we password protect. our closest competitor changes their website just after we

RE: Leave first letter uppercase . . .

2003-05-27 Thread Bryan Love
What DB are you using? Oracle8i has a neat function named initcap that will do it for you. You could say: SELECT INITCAP(LOWER(city)) as city FROM someTable... +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet

RE: Block Competitors from Web site

2003-05-27 Thread Bryan Love
Just have a pre-page pop up that asks them if they are a competitor. Problem solved. just kidding :) +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED]

Re: Leave first letter uppercase . . .

2003-05-27 Thread Bruce Sorge
You could use the LCase function. Although it will convert the text to all lower case, I think you could use it in conjunction with the replace function, making sure that it ignores the first letter of the string and converting the rest. - Original Message - From: Earl, George [EMAIL

RE: Block Competitors from Web site

2003-05-27 Thread Stacy Young
Or limit the google robot to your main page only... Stace -Original Message- From: John Paul Ashenfelter [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 1:54 PM To: CF-Talk Subject: Re: Block Competitors from Web site Regards, John Paul Ashenfelter CTO/TransitionPoint -

Re: Leave first letter uppercase . . .

2003-05-27 Thread Sean A Corfield
On Tuesday, May 27, 2003, at 11:01 US/Pacific, Raymond Camden wrote: There are a few titlecase style UDFs at cflib.org, but the simplest solution is.. str = ucase(left(str,1)) lcase(right,len(str)-1); Won't work for NEW YORK (it would produce New york instead of New York). So, cflib.org it

cache header something

2003-05-27 Thread Tony Weeg
hey, earlier this weekend, I saw a snippet that help cfmx pages from giving the page session expired error...does anyone have that? thanks. tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net 410.548.2337

RE: Leave first letter uppercase . . .

2003-05-27 Thread Raymond Camden
Was assuming str = one word - and we all know about assumptions. If str can be multiple words, you could simply loop over the string looking for [[:space:]], or punctuation. Or go to www.cflib.org ;) === Raymond Camden,

Re: Leave first letter uppercase . . .

2003-05-27 Thread Ben Densmore
You can do something like cfset variables.elementLength = len(State);!--- the Length of your State Name or City Name --- cfoutput#ucase(left(State, 1))# #lcase(right(State, variables elementLength - 1))#/cfoutput Ben ---Original Message--- From: [EMAIL PROTECTED] Date: Tuesday, May

Re: Leave first letter uppercase . . .

2003-05-27 Thread Dave Lyons
if you are using dreamweaver this extension is what i use to do that http://www.dwteam.com/Extensions/ get the TEXT FORMAT SUITE Dave - Original Message - From: Earl, George [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 1:53 PM Subject: Leave first letter

Re: is an object with a lot of methods a memory buster?

2003-05-27 Thread Sean A Corfield
On Tuesday, May 27, 2003, at 11:00 US/Pacific, Raymond Camden wrote: So what you are saying is this (and let me know if I'm wrong): A.cfc contained method test that returns 1. User creates instance of A.cfc and stores it in Application.A. A.cfc is edited so that test returns 2. If I call

Re: Block Competitors from Web site

2003-05-27 Thread jon hall
Perhaps by leveraging the new evil bit... http://www.armware.dk/RFC/rfc/rfc3514.html -- jon mailto:[EMAIL PROTECTED] Tuesday, May 27, 2003, 12:39:49 PM, you wrote: MK If I read it right, he wants the site to be open, with all his own MK customers and prospective customers getting access to

Re: is an object with a lot of methods a memory buster?

2003-05-27 Thread Dave Carabetta
On Tuesday, May 27, 2003, at 11:00 US/Pacific, Raymond Camden wrote: So what you are saying is this (and let me know if I'm wrong): A.cfc contained method test that returns 1. User creates instance of A.cfc and stores it in Application.A. A.cfc is edited so that test returns 2. If I

RE: is an object with a lot of methods a memory buster?

2003-05-27 Thread Raymond Camden
On Tuesday, May 27, 2003, at 11:00 US/Pacific, Raymond Camden wrote: So what you are saying is this (and let me know if I'm wrong): A.cfc contained method test that returns 1. User creates instance of A.cfc and stores it in Application.A. A.cfc is edited so that test returns 2. If I

Leave first letter uppercase . . .

2003-05-27 Thread george . earl
Thanks for all the quick responses. We visited cflib.org and we're going to try the CapFirst UDF written by one 'Raymond Camden' hisself . . . George [EMAIL PROTECTED] ~| Archives:

RE: is an object with a lot of methods a memory buster?

2003-05-27 Thread Dave Watts
If Dave confirms that, then what he's seeing is the old, cached version of the .class file being executed and CFMX not forcing a recompilation. That would be a bug in CFMX. Yes, that's what I'm talking about. I disagree with your contention that it's a bug, though. It seems like the

RE: Block Competitors from Web site

2003-05-27 Thread Bryan Love
An excellent choice! +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble,

RE: Leave first letter uppercase . . .

2003-05-27 Thread Marlon Moyer
You could also use style sheets for this style H1 { text-transform: capitalize } /style h1#lcase(city)#/h1 -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 1:37 PM To: CF-Talk Subject: Leave first letter uppercase . . .

RE: CFC and Transactions (was Caching CFCs)

2003-05-27 Thread Suyer, Ed [PRD Non-JJ]
RE: Have a process object. You may be paying for various things - but there is still one main payment process. Have that be it's own CFC. Got it. This makes sense. However, wouldn't i still need to write this code inside of the process object? cftransaction cftry invoke ...

is an object with a lot of methods a memory buster?

2003-05-27 Thread Brad Howerter
This works today like I would expect, even given Sean's original response. Changing the CFC code should have no effect on a cached object. If it did, I would consider that a bug. The new objects created would get references to the new class file, the old objects would keep references to the

RE: is an object with a lot of methods a memory buster?

2003-05-27 Thread Barney Boisvert
Even when the CFC is recompiled through instantiation of another instance of it, the existing instances' behaviour remains untouched. In Java, this is NOT the way it works, because an object only houses instance data (state), and all methods and static variables reside in the class, which is read

cache-control

2003-05-27 Thread Tony Weeg
CFHEADER NAME=cache-control value=7200 !--- 2 hours ahead --- this is the fix that I was talking about, that im playing with to prevent the white screen of death. does anyone see anything adverse about putting this live on my site, in the application.cfm file so that all pages that have any

RE: cache-control

2003-05-27 Thread Mark W. Breneman
Can you elaborate a bit on the WSOD (white screen of death)? Is this the null null error in MX? If so, how should this help fix the problem? Mark W. Breneman -Macromedia Certified ColdFusion Developer -Network / Web Server Administrator Vivid Media [EMAIL PROTECTED] www.vividmedia.com

RE: cache-control

2003-05-27 Thread Tony Weeg
nope, this is from a form submission, to a page that displays results, a click off that page to another page, and then the user clicking the back button on their browser, and *!BANG!* some effed up error about the page no longer available or something tony weeg uncertified advanced cold

RE: cache-control

2003-05-27 Thread Mark W. Breneman
Ok, Too bad... I am hoping that updater 3 will fix my null null problems. Thanks MB -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 2:33 PM To: CF-Talk Subject: RE: cache-control nope, this is from a form submission, to a page that displays

RE: cache-control

2003-05-27 Thread Dave Carabetta
nope, this is from a form submission, to a page that displays results, a click off that page to another page, and then the user clicking the back button on their browser, and *!BANG!* some effed up error about the page no longer available or something I've successfully used this one line

RE: cache-control

2003-05-27 Thread Barney Boisvert
Far better solution is to use CFLOCATION after your form submission. So instead of this: request 1: get form request 2: post form data get results do this: request 1: get form request 2: post form data CFLOCATION to 3 request 3: get results That way the

RE: cache-control

2003-05-27 Thread Tony Weeg
oh ok, cool. not like I found on the cfmx known issues page. I wonder if either is better to use than the other? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net 410.548.2337 -Original Message- From: Dave Carabetta [mailto:[EMAIL

RE: cache-control

2003-05-27 Thread Tony Weeg
true. unless you had to unravel 3.5 years of cf work on a backend admin that works 100% :) tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net 410.548.2337 -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Tuesday, May

Encrypt/Decrypt

2003-05-27 Thread Greg Luce
I encrypted a value to store in the db using the CF encrypt() function. It worked a few times, but then it encrypted a value with a double quote as one of the encrypted chars. Now when I try to decrypt() the value I get an error that the value to be decrypted is not valid. cfset y =

Re: is an object with a lot of methods a memory buster?

2003-05-27 Thread Sean A Corfield
On Tuesday, May 27, 2003, at 12:20 US/Pacific, Barney Boisvert wrote: Even when the CFC is recompiled through instantiation of another instance of it, the existing instances' behaviour remains untouched. In Java, this is NOT the way it works, because an object only houses instance data

Advanced SQL Query Question

2003-05-27 Thread jmauney
Hello, I'm working on a project where records will be added to a single table, and each record will be assigned to one of six categories (using a category column). Is there a way I can do a single query to pull the most recent record from each of the six categories? Or is my only option to do

Re: is an object with a lot of methods a memory buster?

2003-05-27 Thread Sean A Corfield
On Tuesday, May 27, 2003, at 11:47 US/Pacific, Raymond Camden wrote: Query, now imagine, instead of test(), we have name, a simple value. Would changing the core CFC force instance data to get nuked? No. That's 'just' data. See Barney's post about Java behavior - he and I would expect the same

Re: is an object with a lot of methods a memory buster?

2003-05-27 Thread Sean A Corfield
On Tuesday, May 27, 2003, at 11:46 US/Pacific, Dave Carabetta wrote: I'd be curious to hear what they have to say. What I don't understand about your logic is, if the APPLICATION scope should be checking last modified dates on templates, what's the point of putting it in the APPLICATION

RE: Help with CFC and recursion?

2003-05-27 Thread Shawn Grover
Thanks for the tips Sean, Raymond, et al I had tried using the VAR bit before, but the code choked. I didn't even think of doing it in CFSET tags. (And, I learned that a CFTRY tag is interpreted as executable code.) The function is working now. As for my use of the CFPROPERTY tags, I know

pop3 email parsing

2003-05-27 Thread Eric Dawson
Are there any good guides or information on handling pop3 email == database == browser rendering? Regular Expressions Find Replace I am building a online archive for some discussion lists I host. Any help or direction is appreciated. Eric

cferror oddness?

2003-05-27 Thread Scott Mulholland
A cferror tag I put in a new application seems to be randomly emailing me errors. When I go to the referrer listed in the template the page in question works fine, and checking the cf logs show no errors. I am noticing that all the errors have to do with undefined variables, which you can

RE: Encrypt/Decrypt

2003-05-27 Thread Heald, Tim
Use cfusion_encrypt() instead. Tim Heald MCP/CCFD Information Systems Specialist Overseas Security Advisory Council U.S. Department of State (202) 663-0130 -Original Message- From: Greg Luce [SMTP:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 4:23 PM To: CF-Talk Subject:

cfdirectory

2003-05-27 Thread Tim Do
Hello All, I have a virtual directed created and I'm trying to access it using cfdirectory. I'm calling it like this: directory=\\servername\directory\ file://\\servername\directory\ . Nothing is getting returned, Permission on this account is ready only. Any ideas? Thanks, Tim

RE: Advanced SQL Query Question

2003-05-27 Thread Marlon Moyer
Jonathan, Try this out: ** Untested code!!! ** SELECT * FROM tblWhatever a INNER JOIN ( SELECT category,max(update_date) update_date FROM tblWhatever ) max_dates ON a.category = max_dates.category AND

RE: is an object with a lot of methods a memory buster?

2003-05-27 Thread Dave Watts
Query, now imagine, instead of test(), we have name, a simple value. Would changing the core CFC force instance data to get nuked? No. That's 'just' data. I recall you saying once that functions are just data. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202)

RE: Encrypt/Decrypt

2003-05-27 Thread Greg Luce
The value is validated strictly integer before it's encrypted. It's the encrypt() function that's generating the double quote. Can you explain the convert it to base 64 so it's db safe idea? -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003

precompile cf templates

2003-05-27 Thread jon hall
What would the command line to precompile all of the CF template's in c:\www\site\cart under MX? -- jon mailto:[EMAIL PROTECTED] ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Encrypt/Decrypt

2003-05-27 Thread Barney Boisvert
use cfusion_encrypt/cfusion_decrypt. They'll always result in a hex string, rather than the random jiberish that encrypt/decrypt use. Also, cfusion_encrypt's result is ALWAYS exactly twice as long as the original value, rather than the undetermined length from encrypt. --- Barney Boisvert,

RE: precompile cf templates

2003-05-27 Thread Barney Boisvert
If you have updater 3 installed, there is a bat file included that'll precompile a directory for you. It should be located in your CfusionMX/bin directory. Just run it without any arguments and it'll give you the usage. --- Barney Boisvert, Senior Development Engineer AudienceCentral (formerly

Encryption in MX?

2003-05-27 Thread Shawn Grover
In the past (with CF 4.5 and 5), I've used the undocumented CFUSION_ENCRYPT function for encrypting my values. Is there something similar in MX? The documentation I've found thus far only indicates the native Encrypt() function, which is known to have some issues (like being easy crack, and

Recipes and MealMaster

2003-05-27 Thread admin
I was just wondering if anyone has written a parse routine for mealmaster or mastercook formatted recipes ? Cheers Richard ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Advanced SQL Query Question

2003-05-27 Thread Stephen Hait
Hello, I'm working on a project where records will be added to a single table, and each record will be assigned to one of six categories (using a category column). Is there a way I can do a single query to pull the most recent record from each of the six categories? Or is my only option to

RE: cfdirectory

2003-05-27 Thread Bryan Love
cfdirectory uses the OS's file system - it does not go through the web server. I'm guessing since you said virtual directory that you created it in ... IIS? Well it only exists in IIS so when cfdirectory looks to the OS's file system it won't be there.

format excel

2003-05-27 Thread Janine Jakim
Can I format my excel sheet if I'm using cfcontent or cfheader? I want to add a word wrap featureI know I can do it in COM, but I don't want to re-write the page at this time. Is there anything I can add to make this work? Thanks, J

RE: cferror oddness?

2003-05-27 Thread Barney Boisvert
The referer is the page before where the error happened, so whether or not the variables exist on that page is irrelevant. That's just listed so you can figure out what page the user made the request that caused the error from. The query string should never be empty if you've got a fusebox app,

Re: Encrypt/Decrypt

2003-05-27 Thread Matt Robertson
Try escaping the string before encrypting it. Then maybe convert it to base 64 so its db-safe. I'm pretty sure if you try to do this in one step it'll throw an error. I used something very similar to this for strings I had to be able to store and email to people. cfset variables.urlsafe =

RE: cferror oddness?

2003-05-27 Thread Scott Mulholland
Right, I was a bit misleading in my wording, some of the templates there is really only one way to proceed, so pasting in the referrer and following the next step off the page does not replicate the error. We are not using any GET forms. The empty query string is what is bothering me.

RE: cfdirectory

2003-05-27 Thread Tim Do
Yes, I created it in IIS.. Guess that explains it. Thanks -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 2:14 PM To: CF-Talk Subject: RE: cfdirectory cfdirectory uses the OS's file system - it does not go through the web server. I'm

Re: Encryption in MX?

2003-05-27 Thread Matt Robertson
Depends on the job. Either hash() or cfx_textcrypt, which is cheap and strong but not for everyone. Seems to work fine in MX, although I only use it in production on a CF 4.5 server. http://www.developer.perthweb.com.au/textcrypt.html --- Matt

RE: Encrypt/Decrypt

2003-05-27 Thread Matt Robertson
Using toBase64 and urlencrypt renders a string that should always be db-safe to store. No quote marks and such. Below is a sample template I worked up to play around with various (documented) encryption options. Run it (name the file anything you like) and it'll encrypt stuff in various

RE: cfdirectory

2003-05-27 Thread Raymond Camden
Is the CF service running as a user who has access to that share? By default, CF runs as a system service and can't access mapped drives. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member

  1   2   >