Re: Mimicking .NET Code-Behind for ColdFusion Controllers

2006-11-30 Thread Martin Thorpe
Is this code behind anything like using Spring MVC in Java? Cos it sounds similar you can intercept the request set stuff to the response (although I think this is standard J2EE, still a bit of a noob in this area). From your JSP pages you just output data, no call to any class or anything

Re: Mimicking .NET Code-Behind for ColdFusion Controllers

2006-11-30 Thread Martin Thorpe
So tell me, what does the acronym PITA stand for then? Forgive my ignorance. +1 to everything Dave said. Code-behind is a PITA. cheers Martin ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,

Re: Mimicking .NET Code-Behind for ColdFusion Controllers

2006-11-30 Thread Robertson-Ravo, Neil (RX)
Pain in the Ass This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for the

Re: UDF Inspection, #2

2006-11-30 Thread Tom Chiverton
On Wednesday 29 November 2006 18:00, Rick Root wrote: But I'm not trying to eliminate HTML markup from HTML emails.. I'd prefer to actually show the HTML. That's why I said sanitize Ahh. And by sanitize I mean removing unfriendly HTML tags like EMBED, OBJECT, APPLET, IFRAME, etc.. and

Re: Enpterprise application?

2006-11-30 Thread Tom Chiverton
On Wednesday 29 November 2006 20:22, Johnny Le wrote: The weirdest thing is that a cfc in the request scope throw an error saying that a variable is not defined, and yet the line right above it defined the variable. It only happens in production. We can never duplicate any of the errors in

Re: OT: DNS Problems...

2006-11-30 Thread Tom Chiverton
On Wednesday 29 November 2006 16:20, Rick Faircloth wrote: Windows 2000 Server Advanced to achieve that, and that was cost- prohibitive. You maybe don't need active failover. Maybe it's good enough for you to have a standby account you can bring online quickly. From the recent outage, it

RE: Mimicking .NET Code-Behind for ColdFusion Controllers

2006-11-30 Thread David
You're betraying your roots Neil, it's arse where I come from! -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 30 November 2006 09:11 To: CF-Talk Subject: Re: Mimicking .NET Code-Behind for ColdFusion Controllers Pain in the Ass This e-mail is

Re: SPRY Data Sets

2006-11-30 Thread Nick Tong - TalkWebSolutions.co.uk
You can see Bruce Phillips using this tag here http://wapurl.co.uk/?EQCVQZ3 On 21/11/06, Joshua Cyr [EMAIL PROTECTED] wrote: You probably should check out ray's toXML code. http://ray.camdenfamily.com/projects/toxml Joshua Cyr Savvy Software 866.870.6358 www.besavvy.com -Original

help on cfquery and cfoutput

2006-11-30 Thread alex poyaoan
help on this please the code is CFQUERY NAME=NewsUpdates datasource=dbweb SELECT Title,Content FROMPubContent WHERE PubcontentId BETWEEN 3703 AND 3705 /CFQUERY the above query gives me three records.. the problem is how to display each record in three different sections of the

Re: OT: Strange characters in email

2006-11-30 Thread Jochem van Dieten
Rick Root wrote: Dear Rick Root:=0D=0DWelcome to SomeFake = Financial Online! With SomeFake Financial Online, you=0Dcan view all = of your important mortgage account information any time that is = convenient=0Dfor you, day or night! You can also make one-time = payments, set up an

Re: Mimicking .NET Code-Behind for ColdFusion Controllers

2006-11-30 Thread Martin Thorpe
Ahhh nice one, should have worked that out, with extra chili sauce I should imagine, cheers Martin Pain in the Ass -Original Message- From: Martin Thorpe To: CF-Talk Sent: Thu Nov 30 07:53:08 2006 Subject: Re: Mimicking .NET Code-Behind for ColdFusion Controllers So tell me, what

RE: help on cfquery and cfoutput

2006-11-30 Thread Adrian Lynch
Order the query to make sure the results are consistent, then use this syntax: cfoutput pThe first one: #NewsUpdates[Title][1]#/p pThe second one: #NewsUpdates[Title][2]#/p pThe third one: #NewsUpdates[Title][3]#/p /cfoutput Adrian -Original Message- From: alex poyaoan [mailto:[EMAIL

Re: help on cfquery and cfoutput

2006-11-30 Thread James Holmes
1) Refer to the query using array notation: cfoutputTitle: #NewsUpdates.Title[1]# Content: #NewsUpdates.Content[1]#/cfoutput cfoutputTitle: #NewsUpdates.Title[2]# Content: #NewsUpdates.Content[2]#/cfoutput etc OR 2) If you don't know which row is which, use QoQ to select the one you need at

Re: changing jsessionid in the middle of my session

2006-11-30 Thread Dimitris C
I have a question... sometimes when going from one page to another, my jsessionid changes and my session variables get dropped. It happens if I'm submitting a form with enctype=multipart/form-data (if uploading a file) while carrying the urltoken through the URL. It's also happens when I'm using

Re: help on cfquery and cfoutput

2006-11-30 Thread alex poyaoan
Thanks to both of you now it is outputing what i want and in different sections. 1) Refer to the query using array notation: cfoutputTitle: #NewsUpdates.Title[1]# Content: #NewsUpdates.Content[1]#/cfoutput cfoutputTitle: #NewsUpdates.Title[2]# Content: #NewsUpdates.Content[2]#/cfoutput

help on uploading files using forms

2006-11-30 Thread alex poyaoan
HI everybody.. Is there a way of uploading files to a directory on the server using forms or cfform type flash...? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information

Re: help on uploading files using forms

2006-11-30 Thread Adrian
http://www.google.com/search?q=upload+file+using+coldfusion On 30/11/06, alex poyaoan [EMAIL PROTECTED] wrote: HI everybody.. Is there a way of uploading files to a directory on the server using forms or cfform type flash...?

Re: help on uploading files using forms

2006-11-30 Thread Raymond Camden
Check out the ASFusion guys http://www.asfusion.com/blog/entry/file-upload-explained-and-expanded On 11/30/06, alex poyaoan [EMAIL PROTECTED] wrote: HI everybody.. Is there a way of uploading files to a directory on the server using forms or cfform type flash...?

Re: help on uploading files using forms

2006-11-30 Thread Doug Brown
http://www.asfusion.com/blog/entry/file-upload-with-coldfusion-flash-forms Doug - Original Message - From: alex poyaoan [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, November 30, 2006 3:54 AM Subject: help on uploading files using forms HI everybody.. Is

RE: Web service error, pls help

2006-11-30 Thread Michael Nguyen
Hi Neil, I re-write here what problem I have: I use wsdl2java in JRun to get stubs and wrote a java wrapper class to talk to those stubs (same as article Creating webservice stubs with wsdl2java in ColdFusion MX 7 http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=eaf0396) I've got 500

Re: Mimicking .NET Code-Behind for ColdFusion Controllers

2006-11-30 Thread Mark Drew
WEll, if we wrote a framework to implement CodeBehind in CF, you would do some of the parsing ahead of time, I am not sure (dont have VS handy) but to put a label on an .aspx page you do something like label id=bob / (dont you?) so in CFCodeBehind you could put something like cb:Label

Re: Vista (was: CrystalTech outage?)

2006-11-30 Thread Tom Chiverton
On Thursday 30 November 2006 01:04, John C. Bland II wrote: An app can't auto-elevate itself. It runs in the sandbox given and if it Is this like the Java (etc) sandbox model ? The one that was, ya know, *software* and so had *bugs* that meant you could escape ? Even chroot on *nix used to have

RE: OT: DNS Problems...

2006-11-30 Thread Rick Faircloth
copy the DB to disk and then up to another account would be better than 3 days of nothing. If I don't get this straightened out shortly, I'll have to go that route and set up a CF hosting account somewhere else and upload the MySQL DB so they can get back to work! I keep thinking that I'll get

Re: Enpterprise application?

2006-11-30 Thread Chris Peters
I would second Tom's suggestion to make sure all your CFCs' methods' local variables are defined using the var keyword. I developed an intranet in ColdFusion at my last job and had forgotten to use var in one method, and users were getting other users' profiles when they logged in. This

Firefox Compatibility

2006-11-30 Thread Chelsie Lawson
The web application I created will not insert the data into my Db. The app works fine with IE. The error says that a certain field is missing in the results table of my DB... : The given fieldname could not be found in the table Results Do I need to download something on my CF server to make

Re: Help Tracking Podcast Downloads

2006-11-30 Thread Chris Peters
You may also want to look at www.feedburner.com. Pretty cool service. - Chris Peters www.chrispetersweb.com Does anyone know how to track how many times an mp3 file has been downloaded as a podcast? Because people can get at the mp3 file from a large array of feed reader software, I am uncertain

RE: Mimicking .NET Code-Behind for ColdFusion Controllers

2006-11-30 Thread Dave Watts
Dave, I'd have to disagree with you here. ASP.NET's code-behind is sweet feature. Yes, it helps desktop developers transition but the things you can do in a code-behind are VERY nice, which CF can't do. For instance: - The different steps of a page loading you have access over (much

RE: Mimicking .NET Code-Behind for ColdFusion Controllers

2006-11-30 Thread Dave Watts
You are arguing that making ColdFusion behave like .NET is unnecessary because all that .NET is doing is making web development behave like desktop development. I agree that up until web 2.0, comparing web development with desktop development is like comparing apples and oranges. However,

RE: Firefox Compatibility

2006-11-30 Thread Dawson, Michael
CF cares nothing about what browser you use. My first suggestion is to CFDUMP every scope you are using: URL, FORM, etc. Then, try each browser and look for the differences. I assume that, since you are inserting data, that you are using a form, so use cfdump var=#form# and test it with both

Re: Firefox Compatibility

2006-11-30 Thread Teddy Payne
The browser will not typically affect your CF code. The only time that I have seen browser dependencies is when you debu Flex applications with FireFox. That is a flash player issues though. How are you submitting your data to the database import? On example would be that IE allows a lot more

Re: OT: Strange characters in email

2006-11-30 Thread Rick Root
Jochem van Dieten wrote: They are the result of applying a Quoted-Printable transfer encoding on the original message. You need to decode the message before displaying. See RFC 2045 for the algorithm. You're right. I'm trying various methods to solve but haven't come up with anything

Re: Firefox Compatibility

2006-11-30 Thread Rick Root
Chelsie Lawson wrote: The web application I created will not insert the data into my Db. The app works fine with IE. The error says that a certain field is missing in the results table of my DB... : The given fieldname could not be found in the table Results Are you using CFINSERT or

Re: Firefox Compatibility

2006-11-30 Thread Chelsie Lawson
Here's my code: cfinsert datasource=studentsurvey tablename=Results pretty straighforward. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers,

Re: Firefox Compatibility

2006-11-30 Thread Chelsie Lawson
So, if my code on my action page is: cfinsert datasource=studentsurvey tablename=Results I need to add: cfdump var=#form# cfinsert datasource=studentsurvey tablename=Results what will this do? CF cares nothing about what browser you use. My first suggestion is to CFDUMP every scope you are

RE: Vista (was: CrystalTech outage?)

2006-11-30 Thread Munson, Jacob
One last thing (Jacob Munson), Vista can't be compared to a virus protection application (Norton's, etc). That is what they do...manage virus definitions. Vista is the OS. If Vista has a hole, MSFT will fix it. If a new virus comes out, MSFT will update One Care's virus definitions (a

RE: Firefox Compatibility

2006-11-30 Thread Ray Champagne
It's fun. Try it. -Original Message- From: Chelsie Lawson [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 9:19 AM To: CF-Talk Subject: Re: Firefox Compatibility So, if my code on my action page is: cfinsert datasource=studentsurvey tablename=Results I need to

Re: Firefox Compatibility

2006-11-30 Thread Chelsie Lawson
here's the results: struct Submit Evaluation CLASSIFICATION Freshman COMMENTStest DATEMODIFIED11/30/2006 FACULTY_ID 334 FIELDNAMES

RE: Firefox Compatibility

2006-11-30 Thread Ray Champagne
I'd take the advice of others on the list and ditch the cfinsert, and use cfquery with an insert statement. It's a little more code, but it makes it MUCH easier to maintain and debug. Don't forget to use cfqueryparam too. It's just good practice. -Original Message- From: Chelsie

Re: Firefox Compatibility

2006-11-30 Thread Rick Root
It's interesting that FORM.FIELDNAMES has a trailing comma. I have no idea why it would, but that might be the cause of the problem. Ditch cfinsert and use cfquery instead =) It's safer and performs better, and is far easier to debug. Rick Chelsie Lawson wrote: here's the results:

Re: Strange (non consistent) behaviour in CF

2006-11-30 Thread John Blayter
Mark, Yesterday I came across the same problem but I am still scratching my head on any solutions. Have you found anything yet? Thanks John On 11/29/06, Jon Clausen [EMAIL PROTECTED] wrote: Mark, Any chance there is a cfflush in any of the code being executed (Maybe in an if statement

Re: Firefox Compatibility

2006-11-30 Thread Chelsie Lawson
did I mention that I'm completely new to CFwhat would be the query code? cfquery name=AddEval datasource=studentsurvey INSERT INTO Results /cfquery do I have to list EVERY field with # # around them, separated by a comma?? It's interesting that FORM.FIELDNAMES has a

RE: Firefox Compatibility

2006-11-30 Thread Joshua Cyr
You should compare the dump results on IE and FF. See if there is any change in data or fields. If so that is where you look in your form code. Joshua Cyr Savvy Software 866.870.6358 www.besavvy.com -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Thursday,

Marketing CF

2006-11-30 Thread Brad Wood
Sorry this is a bit off topic, but it's been bothering me... pseudo-rant So I was talking to a friend from my church last weekend. He owns an automotive spring shop and is trying to get a website up (products, shopping cart etc..), but all he knows is HTML. His first problem in my

Re: Firefox Compatibility

2006-11-30 Thread Chelsie Lawson
I'd take the advice of others on the list and ditch the cfinsert, and use cfquery with an insert statement. It's a little more code, but it makes it MUCH easier to maintain and debug. Don't forget to use cfqueryparam too. It's just good practice. what's the cfqueryparam code? where does

RE: Hostingatoz anyone?

2006-11-30 Thread Munson, Jacob
I've never heard of them, but with prices that low, they're probably similar in quality to xtreme-host.com which I wouldn't recommend, from personal experience. But who knows, you might have found a winner. -Original Message- From: Adrian Wagner [mailto:[EMAIL PROTECTED] Sent:

OT: SQL question

2006-11-30 Thread Chad Gray
I am not a MS SQL guru and this bit of SQL is about as advanced as I get. I am basically doing a query on a table of catalogs and elements inside of the catalog. Each element has a history of status changes (new, in progress, done etc). I want to get the most current status for the element

Re: Firefox Compatibility

2006-11-30 Thread Rick Root
Chelsie Lawson wrote: did I mention that I'm completely new to CFwhat would be the query code? cfquery name=AddEval datasource=studentsurvey INSERT INTO Results /cfquery do I have to list EVERY field with # # around them, separated by a comma?? Yes. cfquery name=AddEval

Re: Marketing CF

2006-11-30 Thread Matt Williams
I would agree Brad. Perhaps Adobe's site (at least the CF part) needs to have some separation for What type of potential customer are you? Then a guy like your friend may get channeled into some pages that explain for as littles $x.xx / month you can have a fully dynamic, database driven site for

Re: Marketing CF

2006-11-30 Thread Rick Root
Brad Wood wrote: So, how is it that people search the web and completely miss that fact? He actually thought he was going to have to pay thousands of dollars for ColdFusion server! Not much you can do about that aspect of it. Unlike PHP and ASP/.NET there *IS* a price associated

RE: Firefox Compatibility

2006-11-30 Thread Ray Champagne
http://tinyurl.com/oo49m It's basically a tag that makes sure that the value you are trying to insert/select/update into your database is of the correct type (ie, date, varchar, int, bit, etc). You wrap it around your field values. Helps make your app much more secure as it prevents sql

Re: Firefox Compatibility

2006-11-30 Thread Chelsie Lawson
the IE dump results did not have a comma after commentsbut how do you get rid of that for Firefox? it makes sense that that comma would be the problem. It's interesting that FORM.FIELDNAMES has a trailing comma. I have no idea why it would, but that might be the cause of the

RE: Firefox Compatibility

2006-11-30 Thread Joshua Cyr
Check your form code. Those results mean that the browsers are picking up an empty form field or something else odd. Coding your own cfquery is good for all the reasons already mentioned, but you really should clean up the form too in case it presents other problems down the road. Joshua Cyr

Re: Firefox Compatibility

2006-11-30 Thread Jim Wright
As for the cause of this, it looks like Firefox will send a form value for anything with name=, but IE does not, so perhaps that is the problem. It seems like you should see that listed in your cfdump though, and I don't see anything without a name. It looks like both IE and FF will submit

Re: OT: DNS Problems...

2006-11-30 Thread Jon Clausen
Jon Clausen President EZ Outdoor Systems, LLC 5747 28th St. - Ste 267 Grand Rapids, MI 49546 http://www.ezods.com http://blog.ezods.com On Nov 30, 2006, at 8:15 AM, Rick Faircloth wrote: copy the DB to disk and then up to another account would be better than 3 days of nothing. If I don't

RE: changing jsessionid in the middle of my session

2006-11-30 Thread Dave Watts
Even that this topic is very old, I will reply because it might help other people having the same problem to come to a solution. We came toward this issue some weeks ago. After a lot of investigation and changes in our code, we finally locate that the source of the problem was the J2EE

Re: OT: DNS Problems...

2006-11-30 Thread Jon Clausen
Sorry, Must have hit send by mistake. My bad. -Jon On Nov 30, 2006, at 11:26 AM, Jon Clausen wrote: Jon Clausen President EZ Outdoor Systems, LLC 5747 28th St. - Ste 267 Grand Rapids, MI 49546 http://www.ezods.com http://blog.ezods.com On Nov 30, 2006, at 8:15 AM, Rick Faircloth

Re: OT: SQL question

2006-11-30 Thread Jochem van Dieten
Chad Gray wrote: I am basically doing a query on a table of catalogs and elements inside of the catalog. Each element has a history of status changes (new, in progress, done etc). So each element always has a corresponding value in the history table. SELECT c.CatalogID, c.CatalogName,

RE: SQL question

2006-11-30 Thread Gaulin, Mark
That looks like the right/only way to do it as far as I know. Mark -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 11:02 AM To: CF-Talk Subject: OT: SQL question I am not a MS SQL guru and this bit of SQL is about as advanced as I

RE: Firefox Compatibility

2006-11-30 Thread Munson, Jacob
http://tinyurl.com/oo49m Sorry for the OT self promotion, but rather than sending a LiveDocs URL to tinyurl, you could post a short URL from CFQuickDocs: http://cfquickdocs.com/?getDoc=cfqueryparam It's not quite as short as tinyurls, but it still won't wrap. :)

Re: Firefox Compatibility

2006-11-30 Thread Chelsie Lawson
Ok...I've inserted the *all in favor of cfquery* code into my test app. haha But, I'm getting the error on line 49, which is my comments textbox. Here's the error: Error Executing Database Query. Syntax error in INSERT INTO statement. The error occurred in

RE: Firefox Compatibility

2006-11-30 Thread Ray Champagne
Cool. I didn't even know about that. Thanks! -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 11:44 AM To: CF-Talk Subject: RE: Firefox Compatibility http://tinyurl.com/oo49m Sorry for the OT self promotion, but rather than

CFLOCK around CFINDEX and CFSEARCH ???

2006-11-30 Thread Dave Phillips
Hi, on MX 6.1, do we need to put a CFLOCK around CFINDEX and CFSEARCH? I've read in some places we do, and in other places we don't. Can anyone confirm? We are having alot of CF restarts and are wondering if this is the issue (we do NOT currently have any CFLOCKS and we do real-time

CFMX on Amazon EC2?

2006-11-30 Thread Smith, Ed
Has anybody tried to get CFMX running on Amazon EC2? One of our sysadmins here mentions that we've had CFMX running under Xen with no problems, so I would guess it works. Could be a very interesting option for CF hosting. I wonder how the licensing would work out..

RE: Firefox Compatibility

2006-11-30 Thread Ray Champagne
What datatype is your Comments field? What database are you using? Also, I noticed that your code has a little indiscrepancy. The error message you supply is saying that the cfsqltype is longvarchar and your code paste says it is type varchar. Not sure if that is a typo, or if it would

RE: Firefox Compatibility

2006-11-30 Thread Munson, Jacob
Cool. I didn't even know about that. Thanks! It works for functions too: http://cfquickdocs.com/?getDoc=datediff :) -- This transmission may contain information that is privileged, confidential and/or exempt

RE: Firefox Compatibility

2006-11-30 Thread Andy Matthews
Yep. INSERT INTO table_name ( var_one, var_two) VALUES ( '#var_one#', '#var_two#') !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//-

Re: Firefox Compatibility

2006-11-30 Thread Chelsie Lawson
I'm using an access one right now (i know, i know) my datatype is a memofield. that was just a typo. :) What datatype is your Comments field? What database are you using? Also, I noticed that your code has a little indiscrepancy. The error message you supply is saying that the cfsqltype is

RE: Vista (was: CrystalTech outage?)

2006-11-30 Thread Dave Watts
Their argument was that Vista is strong enough to protect against ALL future virus attacks, and therefore antivirus software is redundant and unnecessary. My argument is that preventing a user from running applications is a more secure approach than letting users run applications, but

RE: Firefox Compatibility

2006-11-30 Thread Steve Brownlee
On the error page, sometimes the debug output provides you with the SQL statement that it attempted to execute. You could copy that and paste it directly into a query editor for your database (if you have one). On first blush, perhaps you need a different cfsqltype since you're inserting into a

Re: Hostingatoz anyone?

2006-11-30 Thread Charlie Griefer
I use 'em. It was looking for a CFMX 7 host, and their prices were low enough that I was like, Charlie, how could you not?. So I did. At first, it was orgasmically good. Any need that I had for support was answered (and resolved) within 1-4 hours. The tags/functions that are disabled are

RE: Firefox Compatibility

2006-11-30 Thread Ray Champagne
You also seem to be missing a ')' right before VALUES in your SQL. Maybe another typo into the email? -Original Message- From: Chelsie Lawson [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 10:36 AM To: CF-Talk Subject: Re: Firefox Compatibility Ok...I've inserted the

Re: Vista (was: CrystalTech outage?)

2006-11-30 Thread Tom Chiverton
On Thursday 30 November 2006 15:31, Munson, Jacob wrote: protection. But I thought I heard somewhere that Microsoft is not going to include their virus scanner with Vista by default? Last I heard, they weren't going to (URL up thread). Instead, you'll get a box that flashes up all* the time

Re: Vista (was: CrystalTech outage?)

2006-11-30 Thread Tom Chiverton
On Thursday 30 November 2006 16:31, Dave Watts wrote: Windows historically has had a very strong security model :giggles and thinks of the Windows 98 login screen. They one you bypassed by pressing escape. -- Tom Chiverton Helping to administratively repurpose interdependent networks

Re: Mimicking .NET Code-Behind for ColdFusion Controllers

2006-11-30 Thread Patrick McElhaney
You are arguing that making ColdFusion behave like .NET is unnecessary because all that .NET is doing is making web development behave like desktop development. I agree that up until web 2.0, comparing web development with desktop development is like comparing apples and oranges. However,

Re: Enpterprise application?

2006-11-30 Thread Tom Chiverton
On Thursday 30 November 2006 13:09, Chris Peters wrote: I developed an intranet in ColdFusion at my last job and had forgotten to use var in one method, and users were getting other users' profiles when they logged in. This problem didn't surface until we were getting higher usage rates. Aint

RE: Vista (was: CrystalTech outage?)

2006-11-30 Thread Dave Watts
Windows historically has had a very strong security model :giggles and thinks of the Windows 98 login screen. They one you bypassed by pressing escape. Windows NT, ok? I never used Windows 98/95, so I don't even think about those. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

Re: Vista (was: CrystalTech outage?)

2006-11-30 Thread Tom Chiverton
On Thursday 30 November 2006 17:33, Dave Watts wrote: :giggles and thinks of the Windows 98 login screen. They one you bypassed by pressing escape. Windows NT, ok? I never used Windows 98/95, so I don't even think about those. :-) -- Tom Chiverton Helping to autoschediastically syndicate

Re: Marketing CF

2006-11-30 Thread Patrick McElhaney
Yeah, I think I'll pay someone minimum wage to cut my grass with a pair of scissors because lawnmowers are *way* too expensive. Patrick -- Patrick McElhaney 704.560.9117 ~| Introducing the Fusion Authority Quarterly Update. 80

conference registration app

2006-11-30 Thread Jim Wright
Any recommendations/leads on a CF based conference registration app, preferably with Authorize.net integration? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by

Re: Marketing CF

2006-11-30 Thread Will Tomlinson
AMEN BROTHER! Will ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year.

Re: conference registration app

2006-11-30 Thread Will Tomlinson
Any recommendations/leads on a CF based conference registration app, preferably with Authorize.net integration? Maybe shoot Michael Smith at Teratech an email. Bet he has some good leads. Will ~| Introducing the Fusion

RE: Vista (was: CrystalTech outage?)

2006-11-30 Thread Munson, Jacob
My argument is that preventing a user from running applications is a more secure approach than letting users run applications, but checking those applications' safety at runtime against an existing list of known bad applications. Therefore, if I were to choose a single mechanism for

Re: conference registration app

2006-11-30 Thread Matt Robertson
I wrote my own, sort of. I used ContentMonger, which I just released as free for noncommercial use and $99 per commercial domain. You can now get what was the full Pro version in the Exchange download. Here's how I do conference reg. 1. CMonger has a built-in form generator and data handler.

WOT: bad music taste

2006-11-30 Thread Nick Tong - TalkWebSolutions.co.uk
Okay admit it - -who's been listening to Ashlee Simpsonhttp://www.last.fm/music/Ashlee+Simpsonover of the last.fm coldusion group http://www.last.fm/group/Coldfusion/ -- Nick Tong web: http://talkwebsolutions.co.uk blog: http://succor.co.uk f..works:http://cfframeworks.com

Overwriting Printer Settings.

2006-11-30 Thread Varun Dixit
I am not quiet sure if this is a CSS issue or CF, but I have a template which when printed needs to have 0.5in margins on all side. But individual printer settings just screws up all the margins. Is there a way I could overwrite the individual printer settings using some code. Any suggestions

Component timeout

2006-11-30 Thread Ky, Kajone
I am trying to set a timeout when invoking a method of a component. I noticed that using cfinvoke only allows setting a timeout for web sevices. Any suggestions? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

Re: Component timeout

2006-11-30 Thread Dan Vega
What would you want to set a timeout for? The reason there is a timeout on a ws is for connectivity reasons. If there are any connectivity reasons locally (cant find component) those should be trapped in a try catch block. Just wondering why you would need to do this? On 11/30/06, Ky, Kajone

Re: WOT: bad music taste

2006-11-30 Thread Rick Root
Nick Tong - TalkWebSolutions.co.uk wrote: Okay admit it - -who's been listening to Ashlee Simpsonhttp://www.last.fm/music/Ashlee+Simpsonover of the last.fm coldusion group http://www.last.fm/group/Coldfusion/ Only when I turn on the Jim Rome show, and only when he makes fun of her and plays

Re: WOT: bad music taste

2006-11-30 Thread Rick Root
Rick Root wrote: I'd rather spend my time listening to Brian Vander Ark ( www.myspace.com/brianvanderark ) or Blowoff ( www.myspace.com/blowoff ) er http://www.blowoff.us =) note to self, always check urls before emailing!

RE: Component timeout

2006-11-30 Thread Ky, Kajone
The method in the component that I am calling generates a HTTP request. How would I set a timeout when invoking that method without having to modify the component? -Original Message- From: Dan Vega [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 1:56 PM To: CF-Talk Subject:

RE: Vista (was: CrystalTech outage?)

2006-11-30 Thread Dave Watts
When it comes to Windows, I am in that boat, but that's because people have told me that a lot of software just won't run if you're not an admin. And unlike Linux, there's no 'sudo' that works all the time in Windows. I've tried the 'runas' thingy you can get off resource kit CDs, but

RE: Component timeout

2006-11-30 Thread Munson, Jacob
You could specifiy the timeout in the HTTP request itself, instead of in the encompassing component. -Original Message- From: Ky, Kajone [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 12:13 PM To: CF-Talk Subject: RE: Component timeout The method in the component

Farcry Basics Connect Presentation

2006-11-30 Thread Stephen Moretti
In 40 minutes (8PM GMT) I'll be giving a presentation on the basics of Farcry (http://www.farcrycms.org/) and a brief demo of a couple features of Gonzales (Farcry 4) If you're interested in attending here's the details: Title : Farcry Basics and an Intro to Gonzales, Farcry 4 Time : 8pm GMT

Sean Corfield, it's time to approve my post

2006-11-30 Thread Adam Churvis
Sean took this public, so I thought I would respond in public. I saw that post about me that Sean put on his blog a couple of weeks ago, and it was obviously intended to make trouble for me because of the way he titled it and how he took what I said entirely out of context. So I posted a

RE: Vista (was: CrystalTech outage?)

2006-11-30 Thread Munson, Jacob
Fortunately, though, if you want to run as a non-privileged user on Windows XP, it is doable and practical for most knowledgeable users. I've been doing it for quite some time, and the only real problem I've had is that it takes me two or three steps, sometimes, to do something that I'd

CFSEARCH problem MX 6 / MX 7

2006-11-30 Thread Bernard Gingras
I have a situation where my dev server (7) and my live server (6) are showing different search results. I've tried numerous times to completely delete all verity collections and recreate them. When I reindex I use CFDUMP to see the results of my queries and they are the same. Everything seems

Re: Vista (was: CrystalTech outage?)

2006-11-30 Thread John C. Bland II
Ahh...my bad Jacob. Vista is more secure though so I understand what Dave and them are saying. If the (virus) app can't do something crazy (edit the registry, delete files, etc) without user approval, then the virus is dead WITHOUT the users input (which is the biggest problem but at least they

Re: conference registration app

2006-11-30 Thread Mary Jo Sminkey
Any recommendations/leads on a CF based conference registration app, preferably with Authorize.net integration? I've had a couple of customers use CFWebstore for this. Depends on your exact needs how much (if any) modification would be needed. If tough to find applications that serve a real

Re: Farcry Basics Connect Presentation

2006-11-30 Thread Neil Middleton
Recording it? On 11/30/06, Stephen Moretti [EMAIL PROTECTED] wrote: In 40 minutes (8PM GMT) I'll be giving a presentation on the basics of Farcry (http://www.farcrycms.org/) and a brief demo of a couple features of Gonzales (Farcry 4) If you're interested in attending here's the details:

Re: Mimicking .NET Code-Behind for ColdFusion Controllers

2006-11-30 Thread John C. Bland II
Yeah, you could rewrite all html controls and CF controls (which rewrite html one's) using tags but you're right...there is no value. Yet in still, this won't solve a code-behind desire. runat=server all you want...you'd have to still instantiate a CFC or in app.cfc set the values of the element.

  1   2   >