Structure of Structures Question

2003-10-17 Thread James Blaha
All: Structure of Structures Question I’m trying to look at an element and see if that element has a variable defined. I’m getting an error: Element MIDDLE_NAME is undefined in a Java object of type class coldfusion.runtime.MemorySessionScope referenced as What can I do to check for existence

OT: downloading to a mac

2003-10-17 Thread Mark A. Kruger - CFG
Mac gurus, What's the best way to set up a file download on a windows based server to a MAC?We have a .mov file.If you click on the link to the file it plays (naturally) - but I don't know an equivalent to right-click -- save target as.Is there such a thing in the mac world? -Mark Mark A.

RE: Structure of Structures Question

2003-10-17 Thread Bryan F. Hogan
cfif StructKeyExists(Application.usersLoggedIn[Variables.userIDAtDoor], 'Middle_Name') Didn't test it, but it should work. -Original Message- From: James Blaha [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 11:23 AM To: CF-Talk Subject: Structure of Structures Question All:

RE: Structure of Structures Question

2003-10-17 Thread Raymond Camden
Your isDefined statement is incorrect, you should use cfif isDefined(application.usersloggedin.#variables.useridatdoor#.middlename ) which will only work if variables.userIDatDoor is a valid variable name. It would be better to do this: cfif

RE: downloading to a mac

2003-10-17 Thread Barney Boisvert
There is a right click in the mac world, you just need a non-mac mouse to have a right button.However, holding CTRL (not CMD) and clicking is the equivalent of a right click. barneyb -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003

Re: OT: SQL Query

2003-10-17 Thread Paul Giesenhagen
Ok here is the query that I have ... and the error that is showing up.I am using MS SQL 2000 ( SELECT TOP 1 reportID FROM beaverReports WHERE tripDate (SELECT tripDate FROM beaverReports WHERE reportID = #variables.thisReport#) UNION SELECT reportID FROM beaverReports WHERE reportID =

RE: Dynamic page processing

2003-10-17 Thread Andre Mohamed
2) Create actual blank pages on the filesystem named astronomy.cfm, etc when the content is created, then use application.cfm to get the ball rolling.Is there much, if any, overhead in using the application.cfm file in this manner? A variant of this approach that is used by content management

Re: Structure of Structures Question

2003-10-17 Thread James Blaha
Bryan/Raymond, Thanks a million. You made my Friday. Have a great weekend! Regards, James Blaha Bryan F. Hogan wrote: cfif StructKeyExists(Application.usersLoggedIn[Variables.userIDAtDoor], 'Middle_Name') Didn't test it, but it should work. -Original Message- From: James Blaha

RE: Merchant Account Suggestions

2003-10-17 Thread Jeffrey Polaski
I've had very good success with VeriSign's PayFlow pro. I've had consistently fast response times and their servers haven't gone down once since I've been using them. If you want to do all the processing on-site (opposed to redirecting to another site) then they are a great way to go. I

RE: OT: SQL Query

2003-10-17 Thread Tony Weeg
does this work? SELECT TOP 1 reportID FROM beaverReports WHERE tripDate (SELECT tripDate FROM beaverReports WHERE reportID = #variables.thisReport#) UNION SELECT reportID FROM beaverReports WHERE reportID = #variables.thisReport#) UNION SELECT TOP 1 reportID FROM beaverReports WHERE tripDate

Re: downloading to a mac

2003-10-17 Thread Ryan Mitchell
Yep, do this cntrl click, and there should be a save target as, or a download link target or something. Depends on the browser you are using obviously!! On 17/10/03 17:38, Barney Boisvert [EMAIL PROTECTED] wrote: There is a right click in the mac world, you just need a non-mac mouse to have a

RE: downloading to a mac

2003-10-17 Thread Mark A. Kruger - CFG
Awesome - thanks Ryan from the heart of this pcers bottom er... bottom of this pcers heart. -mk -Original Message- From: Ryan Mitchell [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 12:16 PM To: CF-Talk Subject: Re: downloading to a mac Yep, do this cntrl click, and there

RE: Merchant Account Suggestions

2003-10-17 Thread Brook Davies
Whatever you do, do not use psigate for any merchant account processing. They haveterrible support, uptime, and customer service. I learned this the hard way. Do not pick psigate.com! Brook At 10:01 AM 10/17/2003, you wrote: I've had very good success with VeriSign's PayFlow pro. I've had

Sort Order Best Practice Request

2003-10-17 Thread Les Mizzell
Here's a problem I've been plagued with recently, and sure others have as well. I've got a large number of tables listing industrial parts. There's columns and columns of specs, temperature tolerances, blah, blah, blah... I've built an administration system for the client to keep all this

Mime type for a dwf file?

2003-10-17 Thread Shawn Grover
We have a system where a user can upload files, then later access these files (with security) through a CFContent call.We set the mime types for most of the common files (images, documents, spreadsheets, etc.), and the browser handles the files accordingly (opens the appropriate plug-in if it's

Re: Sort Order Best Practice Request

2003-10-17 Thread Deanna Schneider
Les, We do this by having a sort order column and then a _javascript_ interface that lets them move items updown in a list. Then, the list of ordered items is sent to the action page, and looped through, and we update the sortorder column based on the new order of the list. We're not dealing with

RE: Merchant Account Suggestions

2003-10-17 Thread Bryan Love
I'd recommend Authorize.net.I've integrated Authorize.net, SkipJack, and Verisign.Verisign is good, but their CF tag doesn't work, so I had to use COM to integrate it into my shopping cart.SkipJack is also good, but more restrictive than AuthNet.Authorize.net allows the ability to pay by ECHECK if

RE: Merchant Account Suggestions

2003-10-17 Thread Matt Robertson
Nowadays Verisign requires that you sign up for services they still cheekily call optional with PFPro.The fraud protection stuff.Takes their minimum monthly fee to about US$98 (!).My client reported this back to me recently and I freaked.He was a Bank of America customer so I used their service,

Re: Sort Order Best Practice Request

2003-10-17 Thread Les Mizzell
Deanna Schneider wrote: We do this by having a sort order column and then a _javascript_ interface that lets them move items updown in a list. Then, the list of ordered items is sent to the action page, and looped through, and we update the sortorder column based on the new order of the list.

RE: Sort Order Best Practice Request

2003-10-17 Thread Ian Skinner
I wouldn't think it would be too hard to write some logic that would automatically renumber the order column... Some very rough pseudo code. So in you example, a user moves the item (foo) in position 5 to position 25 Loop from 6 to 25 index i Update i Set sortIndex = sortIndex -1 next

Not allowed to query of query a query in a structure.

2003-10-17 Thread Ian Skinner
Did we all know you can't do this? In other words the following does not work. cfquery name=query dbtype=query SELECT * FROM this.data[key] !--- A structure of queries --- WHERE CSV_RANK 0 /cfquery But the following does work.Interesting isn't it. cfset temp = this.data[key] !--- again, a

Questions about 6.1 and the Certification Exam...

2003-10-17 Thread Jeff
I've been studying, and I got Ben's CFMX Developers Study Guide a while back, and was getting close to scheduling my test, when a co-worker casually asked me, So...does the test cover 6.1 stuff? I genuinely didn't know...does it? Do I need to brush up on 6.1 stuff like changes to the mail tag or

RE: Questions about 6.1 and the Certification Exam...

2003-10-17 Thread Tony Weeg
have you checked out www.centrasoft.comfor their cfmxbuster exam? its like 39.95 and you get 11 practice exams.I cant speak for the 6.1 inclusion but I can say its cfmx centric... im taking one each morning, in the month leading up to max, and then, BAM, CERTIFIED TIME BABY!!! ...tony tony

RE: Questions about 6.1 and the Certification Exam...

2003-10-17 Thread Samuel Neff
I was told that the exam does not and will not cover 6.1.The exam is based on 6.0 gold. Unfortunately, I heard that there was actually a question in the pool that has a different answer depending on if you're talking about 6.0 or 6.1.The correct answer is based on 6.0.I don't know more than that.

RE: Questions about 6.1 and the Certification Exam...

2003-10-17 Thread Raymond Camden
From: Samuel Neff [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 1:09 PM To: CF-Talk Subject: RE: Questions about 6.1 and the Certification Exam... I was told that the exam does not and will not cover 6.1. The exam is based on 6.0 gold. Unfortunately, I heard that there was

RE: Questions about 6.1 and the Certification Exam...

2003-10-17 Thread Tangorre, Michael
yeah, i got dinged by a couple cuz of this as well... -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 3:20 PM To: CF-Talk Subject: RE: Questions about 6.1 and the Certification Exam... From: Samuel Neff [mailto:[EMAIL PROTECTED] Sent:

Parse Undeliverable email addresses

2003-10-17 Thread Ben Densmore
Has anyone seen or written anything that can look into a outlook folder and parse all the email addresses out of each email? I have about 2500 emails I need to remove from our mailing list that bounced back and are sitting in an undeliverable folder in outlook and wanted to try and do it through

recordcount on a grouped output

2003-10-17 Thread Deanna Schneider
How have people handled recordcount issues when doing a cfoutput with a group clause. In other words, if I'm doing a cfoutput query=myquery group=outergroup cfoutput !--- put something here only if it's the first time through the inner loop --- /cfoutput /cfoutput How do you handle the inner

RE: Parse Undeliverable email addresses

2003-10-17 Thread Ricky Fritzsching
Ben: I use a piece of software written by G-Lock Software. It is called Email Processor, and it does a pretty nice job. I haven't spent to much time with it, but the setup was quite easy. It is $99.00, but they do have a trial version with limited capability.

Re: Parse Undeliverable email addresses

2003-10-17 Thread Darron J. Schall
Not that this helps a whole lot, but here is some perl code to do it..(for future reference, maybe?) http://search.cpan.org/~vparseval/Mail-Transport-Dbx-0.04/ -d - Original Message - From: Ben Densmore To: CF-Talk Sent: Friday, October 17, 2003 3:31 PM Subject: Parse Undeliverable

RE: recordcount on a grouped output

2003-10-17 Thread Ian Skinner
To do something like this I would use a simple flag. cfoutput query=myquery' group=outergroup cfset first= true cfouput cfif first put something here only if it's the first time cfset first = false /cfif /cfoutput /cfoutput -- Ian Skinner Web Programmer BloodSource

Re: (Admin) Respect

2003-10-17 Thread GH - CF
What SS event? Could you tell more? Michael Dinowitz wrote: Please refrain from personal attacks. They do not reflect the attackers professionalism or even maturity. Remember that everything on this list is archived and an attack today can come back to haunt you at work or other places

Microsoft JDBC driver

2003-10-17 Thread Robert Everland III
Has anyone used the driver for SQL 2000 provided here? http://www.microsoft.com/downloads/details.aspx?FamilyID=4f8f2f01-1ed7-4c4d-8f7b-3d47969e66aeDisplayLang=en . On another note, has anyone ever gotten CFMX 6.1 to work succesfully with MSDE 2000 SP3. Even with the above driver I can not get it

Re: Microsoft JDBC driver

2003-10-17 Thread Jochem van Dieten
Robert Everland III wrote: Even with the above driver I can not get it to connect, though now I get a better error message telling me that it can't connect to the socket. Is MSDE listening on the port you tell CF to look? Use a tool like fport to make sure. Are there any firewalls? Jochem

Re: (Admin) Respect

2003-10-17 Thread Michael Dinowitz
What SS event? Could you tell more? http://www.houseoffusion.com/lists.cfm?link=m:5:3044:43245 It has all the details and most of the relevant links. Any further discussion on the event should be moved to CF-Community. Thanks [Todays Threads] [This Message] [Subscription] [Fast

RE: (Admin) Respect

2003-10-17 Thread Angel Stewart
Guys in black suits showed up at MikeyD's house! In black SUVs... And snipers were standing on the neighbours mailbox to get a good vantage point... And there were helicopters...and and...SWAT teams rapelling! And..and they busted in and yelled they had a warrant...and someone even came

RE: (Admin) Respect

2003-10-17 Thread cf
maybe they just wanted some of your muffins angel, lol Guys in black suits showed up at MikeyD's house! In black SUVs... And snipers were standing on the neighbours mailbox to get a good vantage point... And there were helicopters...and and...SWAT teams rapelling! And..and they busted

Re:Microsoft JDBC driver

2003-10-17 Thread Robert Everland III
I used netstat and telnet to see if I can get to 1433, it does nothing. When i use telnet to connect to full blow SQL server here, I can connect. Just wondering if anyone knows a fix to get it back on the network. I have all the protocols enabled, but I know MS went a little security crazy on this

Re: Giving up on DW 2004 MX (Please End)

2003-10-17 Thread Cutter (CF-Talk)
Hey guys, can you give it a rest? a) no system is perfect for all b) if you don't like it, suggest a change my 2 cents Cutter jon hall wrote: Thursday, October 16, 2003, 10:37:33 AM, you wrote: MTeF I strongly disagree with this. Both about the documentation and the MF power MTeF :-) Oh

Service not running

2003-10-17 Thread Paul Giesenhagen
I tried to install CFMX 6.1 on my notebook and when I tried to setup an Access DB in the Datasources, I recieved the following message: The ColdFusion MX odbc server service is not running or has not been installed. Anyone know how to go about getting this running?(I looked at the services and

DataDirect JDBC drivers (shipped with CFMX)..

2003-10-17 Thread Calvin Ward
Apparently whichever way you go there's going to be an issue to deal with on the JDBC drivers, has anyone else worked through these? This is on Windows 2000, with SQL Server 2000. === DataDirect 3.1 Old (CFMX Updater 3) - cfstoredproc: Could not find prepared

Re: Service not running

2003-10-17 Thread Matt Robertson
Check the front page of HouseOfFusion.com :-) Michael changed it recently.I had a similar problem in a couple of the betas that could sorta kinda be fixed by manually starting the services (it didn't work on mySQL but I could get Access db's working).You have the ailment Michael describes, I bet.

RE: DataDirect JDBC drivers (shipped with CFMX)..

2003-10-17 Thread Nathan Strutz
DataDirect 3.2, add 4096 null under load. -nathan strutz -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 2:07 PM To: CF-Talk Subject: DataDirect JDBC drivers (shipped with CFMX).. Apparently whichever way you go there's going to be an issue

Re: downloading to a mac

2003-10-17 Thread Claude Schneegans
holding CTRL (not CMD) and clicking is the equivalent of a right click. Ok, but then they have no Ctrl-click? ;-) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: DataDirect JDBC drivers (shipped with CFMX)..

2003-10-17 Thread Joe Eugene
This has been discussed Serveral times here.. Use your Vendor Specific JDBC Driver. MM Provides Some Drivers for Ease of Client use, i dont think this necessarily means the Best Driver. MS-SQL Server Specific. When i tested the Microsoft released JDBC Type IV Driver, this performed very well and

<    1   2