RE: Daily Tip help...

2004-05-18 Thread Bailey, Neal
Thanks Tony, I have it working good now... here is The Tip Of The Day code incase anyone is wants to do the same. I set up the scheduler to run this once a day. I may set it every hour. -Code-- !--- reset all tips to inactive --- cfquery name=clear_active

cfmail - how to tell when sent

2004-05-18 Thread Seamus Campbell
Hi I've got a txt file that is generated on the fly, then sent with cfmail as an attachment. I then want to delete it (after I KNOW that it has been sent) If I do a delete with cffile immed after the cfmail tag, the delete works before the file is actually sent, Does anyone know a way of

RE: Regular Expression Help

2004-05-18 Thread Pascal Peters
On CFMX stTmp = REFindNoCase('msg:(.*?);',str,1,true); if(stTmp.pos[1]){ message = Mid(str,stTmp.pos[2],stTmp.len[2]); } else { message = ; } ON CF5 stTmp = REFindNoCase('msg:(([^]|[^;])*);',str,1,true); if(stTmp.pos[1]){ message = Mid(str,stTmp.pos[2],stTmp.len[2]); } else { message = ; }

Re: brain fart on #'s

2004-05-18 Thread Stephen Moretti
Tony, Tony Weeg wrote: cfif get.companyIdNumber[i] eq get.companyIdNumber[request.nextRecord] option value=0 #get.yournamehere# /cfif You need your row reference on get.yournamehere. Also, its better html if you put the close option tag in there too. ;o) option

RE: help with string manipulation (Find,Replace)

2004-05-18 Thread Pascal Peters
ON CF5 cfscript start = 1; aLog = ArrayNew(1); commentRegexp = [*]{3}[[:space:]]+([^*]*)[[:space:]]+[*]{3}; timestampRegexp = [0-9]{1,2}/[0-9]{2}/[0-9]{4}[[:space:]]+[0-9]{2}:[0-9]{2}:[0-9]{2}; while(true){ stTmp = REFind(commentRegexp,str,start,true); if(stTmp.pos[1]){ stLog = StructNew();

RE: brain fart on #'s

2004-05-18 Thread Pascal Peters
Just a shot in the dark, but couldn't CF misinterpret the var get. It looks like it's seeing it as something else. Did you try dumping get? -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: dinsdag 18 mei 2004 5:44 To: CF-Talk Subject: brain fart on #'s what the

RE: using the result of CFDIRECTORY as a list

2004-05-18 Thread Pascal Peters
Using cfdirectory action="" directory=qList ... returns a query, not a list. You should use it as a query. If you absolutly want a list you can do ValueList(qList.name). Be aware that it also lists directories. If you use a filter as you do, this shouldn't be a problem. Pascal -Original

Re: cfmail - how to tell when sent

2004-05-18 Thread Thomas Chiverton
On Tuesday 18 May 2004 09:33 am, Seamus Campbell wrote: If I do a delete with cffile immed after the cfmail tag, the delete works before the file is actually sent, You need to change the spool settings (spoolEnable ?). -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997

Re: help with string manipulation (Find,Replace)

2004-05-18 Thread Stephen Moretti
cf coder wrote: Hi Robert, apologies for causing any confusion. I was asked to present the data stored in the database table column in a certain way. Historically data stored in this column is as under: timestamp comments EX: *** 05/12/2003 09:52:10 USER1 *** closing if fixed -

Re: help with string manipulation (Find,Replace)

2004-05-18 Thread Stephen Moretti
thisLogLine = trim(ListGetAt(LogField,i)); Whoops Immediately spotted an error : thisLogLine = trim(ListGetAt(LogField,i,chr(13))); Forgot to put the list delimiter in to get one line out of the comments/LogField. Stephen [Todays Threads] [This Message] [Subscription] [Fast

Re: CF_Web_services preparation for consumption

2004-05-18 Thread Thomas Chiverton
On Monday 17 May 2004 18:40 pm, [EMAIL PROTECTED] wrote: 1) How can I prevent these Affiliates from using these Web services as live data feeds to populate their Web pages?Can I somehow restrict the number of hits/bytes to these Web services? You want some sort of access control in the main

Re: Advanced session mgt?

2004-05-18 Thread Thomas Chiverton
On Monday 17 May 2004 17:21 pm, Katz, Dov B (IT) wrote: NOTICE: If received in error, please destroy and notify sender. I can't do both, can I :-) -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey

Re: CFChart and the Y-Axis

2004-05-18 Thread Thomas Chiverton
On Monday 17 May 2004 20:05 pm, DURETTE, STEVEN J (AIT) wrote: Anyone know how to make this happen? http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-a11.htm#wp2619630 You want the gridlines attribute. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email:

RE: CFChart and the Y-Axis

2004-05-18 Thread DURETTE, STEVEN J (AIT)
Thanks, that did the trick. I actually looked at gridlines before and I remember thinking the number of lines won't help me!As you can tell my brain wasn't working that day. Steve -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 6:54

RE: Daily Tip help...

2004-05-18 Thread Mike Kear
I have several of these things,displaying random tips or random quotes. They all work flawlessly in SQLServerwith a query like: Select top 1 Tipid, Tip, Source, SourceEMail from Tips Order By NEWID() Each time the query is run, it produces a query containing a single record taken at random

Reporting Tools

2004-05-18 Thread Rick Root
I have a need to produce some simple reports using Cold Fusion. They are simple, text only reports, but I must have control over page layout, the ability to put row headers and the like on every page,etc. Currently, we have a VB app that generates these reports using Crystal on an Access

Re: help with string manipulation (Find,Replace)

2004-05-18 Thread cf coder
Thanks Pascal, your script works just fine. Thanks again for your help, most appreciated. Best regards, cfcoder [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: help with string manipulation (Find,Replace)

2004-05-18 Thread Pascal Peters
-Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED] Sent: dinsdag 18 mei 2004 12:38 To: CF-Talk Subject: Re: help with string manipulation (Find,Replace) You end up with a nice wee query of all the log entries for a Do you mean that queries are easier than arrays

Re: help with string manipulation (Find,Replace)

2004-05-18 Thread cf coder
I agree with Pascal, regexps are the most powerfull tools when it comes to parsing, however they are not easy to code. Pascal I was wondering if you could explain what your code is doing: commentRegexp = [*]{3}\s+(.*?)\s+[*]{3}(.*?)(?=([*]{3}\s+.*?\s+[*]{3})|$); timestampRegexp =

RE: Reporting Tools

2004-05-18 Thread Robertson-Ravo, Neil (RX)
Upgrade to SQL2K and download/get SQL Reporting Tools - very very good and free. _ From: Rick Root [mailto:[EMAIL PROTECTED] Sent: 18 May 2004 12:56 To: CF-Talk Subject: Reporting Tools I have a need to produce some simple reports using Cold Fusion. They are simple, text only reports,

Re: DataDirect 3.3 bug with Oracle? (was RE: Maxing out running requests...)

2004-05-18 Thread Deanna Schneider
Dave, We found that whenever we used transactions, an error would be written to our log files, but not thrown to screen. However, if you have the username and password set up with the datasource in the cf administrator then you wouldn't get any errors. We've resorted to doing that for some apps,

Re: DataDirect 3.3 bug with Oracle? (was RE: Maxing out running r equests...)

2004-05-18 Thread Deanna Schneider
From: Dave Watts I would check out the DataDirect support documents first, then if you don't find an answer there, I'd talk to MM tech support. They did a lot of work testing the 3.3 drivers before releasing them. Interesting...they bring our servers to an immediate crashing halt with about 5

RE: JavaScript RegEx bug in NS6?

2004-05-18 Thread Lofback, Chris
There are only 4 people still using it, so forget it. Yes, it may seem like that, but not according to our logs!We still get thousands of requests from NS6 users each month. Anyway, I'm nit-picky about these things and prefer that my code have as few version issues as possible.My job is to make

what am I doing wrong (#'s question)

2004-05-18 Thread Tony Weeg
what the heck am I doing wrong? brain fart on the: get.companyIdNumber[request.nextRecord] part of this... cfset request.nextRecord = i + 1 cfif get.companyIdNumber[i] eq get.companyIdNumber[request.nextRecord] option value=0 #get.yournamehere# /cfif im being told that im trying to

RE: what am I doing wrong (#'s question)

2004-05-18 Thread Pascal Peters
Did you dump get?? -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: dinsdag 18 mei 2004 15:59 To: CF-Talk Subject: what am I doing wrong (#'s question) what the heck am I doing wrong? brain fart on the: get.companyIdNumber[request.nextRecord] part of

Re: DataDirect 3.3 bug with Oracle? (was RE: Maxing out running requests...)

2004-05-18 Thread Dave Carabetta
Dave, We found that whenever we used transactions, an error would be written to our log files, but not thrown to screen. However, if you have the username and password set up with the datasource in the cf administrator then you wouldn't get any errors. Thanks for the confirmation on what I'm

Re: what am I doing wrong (#'s question)

2004-05-18 Thread Ben Doom
cfif get.companyIdNumber[i] eq get.companyIdNumber[request.nextRecord] option value=0 #get.yournamehere# Don't you need an array referent for get.yournamehere[]? --Ben Doom [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: what am I doing wrong (#'s question)

2004-05-18 Thread Tony Weeg
sure. but whats that going to get me :) I know what that gets me... this has nothing to do with the dump of get. it has to do with looping, and in the []'s parsing the value of request.nextRecord so that I get the next line during that iteration. tony -Original Message- From: Pascal

re: what am I doing wrong (#'s question)

2004-05-18 Thread Scott Brady
Original Message: From: Tony Weeg option value=0 #get.yournamehere# As someone already suggested, it's probably this line.You're not telling which row you're accessing get.yournamehere from. (and, also as suggested, close your option tag :) ) Scott --- Scott Brady

RE: what am I doing wrong (#'s question)

2004-05-18 Thread Tony Weeg
yes. but im good on that... just need the correct poundage for the get.companyIdNumber[request.nextRecord] to parse right. that's all. tw -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 10:09 AM To: CF-Talk Subject: Re: what am I doing wrong

RE: what am I doing wrong (#'s question)

2004-05-18 Thread Philip Arnold
Can you post more of your code? Need to see if your look is going too far -Original Message- From: Tony Weeg what the heck am I doing wrong? brain fart on the: get.companyIdNumber[request.nextRecord] part of this... cfset request.nextRecord = i + 1 cfif

RE: what am I doing wrong (#'s question)

2004-05-18 Thread Tony Weeg
cfset request.nextRecord = i + 1 cfif get.companyIdNumber[i] eq get.companyIdNumber[request.nextRecord] option value=0 #get.yourNameHere[i]# /option /cfif still gives me same error. so, its not the option value=0 #get.yourNameHere[i]# /option line, it's the other part.

RE: what am I doing wrong (#'s question)

2004-05-18 Thread Philip Arnold
From: Tony Weeg just need the correct poundage for the get.companyIdNumber[request.nextRecord] to parse right. Your # usage is correct on that line Since it's within a CFIF, then you don't need any at all [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

COM objects on MX

2004-05-18 Thread George Abraham
Hi, I am new to the list. And yes, I did do a search of the archives, but keep getting inconsequential results. So what's new with COM objects and CFMX? I need to manipulate Powerpoint presentations/slides, a process which worked just fine on CF 5. The Java-COM bridging that I tried to look

RE: what am I doing wrong (#'s question)

2004-05-18 Thread Tony Weeg
didn't think so. so, do I need some (Apostrophe's) there or something? tony -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 10:20 AM To: CF-Talk Subject: RE: what am I doing wrong (#'s question) From: Tony Weeg just need the correct

RE: what am I doing wrong (#'s question)

2004-05-18 Thread Rob
Tony, I think what they are trying to tell you is that: option value=0 #get.yournamehere# needs to have an appearance similar to get.companyIdNumber[request.nextRecord] Note that get.column[index] != get.column so #get.column# is not a simple value - I think you are trying to do ... cfif

Array problems

2004-05-18 Thread Robert Orlini
This array works but it keeps incrementing values in each row. Using CFDUMP values for the first row appear with a comma in the second row along with its values. Why doesn't it generate a new row? Please help... Tried moving CFIF isDefined(form.more.x) to no avail. cfif not

RE: what am I doing wrong (#'s question)

2004-05-18 Thread Tony Weeg
man. ill shut up. as I said, brain fart. it was something else, a line or two up :) hee. cya. good Tuesday. later. -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 10:16 AM To: CF-Talk Subject: RE: what am I doing wrong (#'s question)

Re: what am I doing wrong (#'s question)

2004-05-18 Thread Stephen Moretti
Tony Weeg wrote: cfset request.nextRecord = i + 1 cfif get.companyIdNumber[i] eq get.companyIdNumber[request.nextRecord] option value=0 #get.yourNameHere[i]# /option /cfif still gives me same error. so, its not the option value=0 #get.yourNameHere[i]# /option line,

Exception Handling Frameworks?

2004-05-18 Thread Alexander Sherwood
A CFC/modeling/design related question: I am in the process of creating an application that CFTHROWS several different types of custom exceptions in several parts of the application. They include: 1) Form validation errors 2) Business logic validation errors 3) Database errors 4) Unexpected

Re: what am I doing wrong (#'s question)

2004-05-18 Thread Ben Doom
Does it error the first time through the loop?Or after a while? How is i generated? What is the specific error generated? --Ben Doom Tony Weeg wrote: cfset request.nextRecord = i + 1 cfif get.companyIdNumber[i] eq get.companyIdNumber[request.nextRecord] option value=0

RE: what am I doing wrong (#'s question)

2004-05-18 Thread Tony Weeg
thanks ben. read my last post. it was, as I said, a brain fart. thanks! tony -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 10:25 AM To: CF-Talk Subject: Re: what am I doing wrong (#'s question) Does it error the first time through the

RE: Weird CFHTTP Error....

2004-05-18 Thread Jeff Waris
Maybe a little more info may help. This CFHTTP call is part of a loop over account numbers. It appears that the first loop passes CFHTTPPARAM's correctly through to the next page. It writes to my home brew log file the correct 5 variables. As it gets to the NEXT applicable one in sequence it

Re: DataDirect 3.3 bug with Oracle? (was RE: Maxing out running r equests...)

2004-05-18 Thread Dave Carabetta
From: Dave Watts I would check out the DataDirect support documents first, then if you don't find an answer there, I'd talk to MM tech support. They did a lot of work testing the 3.3 drivers before releasing them. Interesting...they bring our servers to an immediate crashing halt with

RE: Weird CFHTTP Error....

2004-05-18 Thread Bartlett, Robert E. USNUNK NAVAIR 1490, 54-L4
Did you try/catch/dump/mail your ERROR HANDLER?I think your handler is throwing an error. Several changes occured in MX that made code that worked in cf5 break (for example, naming variables something.something is illegal in CFMX, without first defining the structure). You might want to check

Need SQL Advice

2004-05-18 Thread John mccosker
Hi, I need some advice here, there are two tables in a database that I am concerned with here. One is called say dbo.Trucks and the other is dbo.ReportingData. dbo.Trucks stores all the information regarding all customer trucks, customers could have one truck, others could have 50. There is a

RE: what am I doing wrong (#'s question)

2004-05-18 Thread Dave Francis
Did you try separating out request.nextRecord? ie cfoutput#request.nextRecord#/cfoutput then you'll know if it's the index or the data -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 10:13 AM To: CF-Talk Subject: RE: what am I doing wrong (#'s

RE: what am I doing wrong (#'s question)

2004-05-18 Thread Tony Weeg
thanks dave. but I got it...it was earlier on in the code :) dummy me. -Original Message- From: Dave Francis [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 10:49 AM To: CF-Talk Subject: RE: what am I doing wrong (#'s question) Did you try separating out request.nextRecord? ie

RE: Weird CFHTTP Error....

2004-05-18 Thread Jeff Waris
My dilemma is that I cannot have CF mail me anything as there is no mail server setup on the machine and for various reasons, we cannot set one up either, so I am kind of stuck using hand coded text log files. I ran the error handlers through the code analyzer and came up with nothing.Ran my cf

RE: Weird CFHTTP Error....

2004-05-18 Thread Bartlett, Robert E. USNUNK NAVAIR 1490, 54-L4
You can specify your smtp server settings yourself in the cfmail tag - specify one that is accessible, and will forward your mail to you. Incidentally, some problems can't come to light via the code analyzer until the code is run, since you COULD have defined the structure ahead of time...

RE: Weird CFHTTP Error....

2004-05-18 Thread Bartlett, Robert E. USNUNK NAVAIR 1490, 54-L4
Additionally, you could save the content of a dump with CFFILE to anywhere you want (ie network share, etc). Point is, you need more info to troubleshoot this. -Original Message- From: Jeff Waris [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 10:53 A To: CF-Talk Subject: RE: Weird

Re: DataDirect 3.3 bug with Oracle? (was RE: Maxing out running requests...)

2004-05-18 Thread Deanna Schneider
Thanks for the confirmation on what I'm seeing. However, I'm a bit confused on your workaround. Are you saying that if you define the user name and password in the MX Administrator then you don't get the error? If so, that's not what I'm seeing. I define the user name and password in the MX

RE: Weird CFHTTP Error....

2004-05-18 Thread Bartlett, Robert E. USNUNK NAVAIR 1490, 54-L4
You can specify your smtp server settings yourself in the cfmail tag - specify one that is accessible, and will forward your mail to you. Incidentally, some problems can't come to light via the code analyzer until the code is run, since you COULD have defined the structure ahead of time...

Re: DataDirect 3.3 bug with Oracle? (was RE: Maxing out running r equests...)

2004-05-18 Thread Deanna Schneider
Interesting...they bring our servers to an immediate crashing halt with about 5 open connections to our Oracle database. We've also rolled back to the 3.1 drivers. This is what happens to us as well. I have not found anything on DataDirect's support site that relates to this problem, so I

Re: DataDirect 3.3 bug with Oracle? (was RE: Maxing out running requests...)

2004-05-18 Thread Dave Carabetta
Thanks for the confirmation on what I'm seeing. However, I'm a bit confused on your workaround. Are you saying that if you define the user name and password in the MX Administrator then you don't get the error? If so, that's not what I'm seeing. I define the user name and password in the

RE: Need SQL Advice

2004-05-18 Thread A.Little
You could do it with something like this (this is untested!! - but you should get the idea shouldn't be too resource intensive) UPDATE trucks SET totalmileage = t.totalmileage + r.mileage FROM trucks t, (SELECT SUM(Mileage) AS mileage, TruckID FROM ReportingData GROUP BY TruckID) r WHERE

Re: DataDirect 3.3 bug with Oracle? (was RE: Maxing out running r equests...)

2004-05-18 Thread Dave Carabetta
Interesting...they bring our servers to an immediate crashing halt with about 5 open connections to our Oracle database. We've also rolled back to the 3.1 drivers. This is what happens to us as well. I have not found anything on DataDirect's support site that relates to this

Client Variable Overhead CFMX/CF5

2004-05-18 Thread Robertson-Ravo, Neil (RX)
Hey, Does anyone know of why a serious performance lapse between ColdFusion 5 and ColdFusion MX exists when using a Database to store Client Variables. In CF5 we found no real performance degredation from using DB over Registry. In MX when using the Registry parsing completion is around 0-16ms

RE: Client Variable Overhead CFMX/CF5

2004-05-18 Thread Dave Carabetta
Hey, Does anyone know of why a serious performance lapse between ColdFusion 5 and ColdFusion MX exists when using a Database to store Client Variables. In CF5 we found no real performance degredation from using DB over Registry. In MX when using the Registry parsing completion is around 0-16ms

CFCOMPONENT/CFINVOKE: Help

2004-05-18 Thread coldfusion . developer
Help I'm using a CFC to create a Web service. One of the columns in my query past through the Web service has HTML tags in the ntext data type column.The Web Service doesn't like it and throws an error for just this column. I think the markup needs to be stripped from the data and then I think

Re: Need SQL Advice

2004-05-18 Thread John mccosker
Thanks Alex, I'll give that a wiz. Sql requires a different mindset to programming generally as you have just proven. j. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Spam and Viruses

2004-05-18 Thread Monique Boea
This is off the subject of CF but maybe someone has a solution. I get TONS of spam and viruses in my mailbox on a daily basis...so much that I am thinking of changing my email address. Is there ANY way to stop this? Do people target specific email addresses to send viruses to? (Don't

How do I format Web Service results?

2004-05-18 Thread Warren Flood
Hi there. I'd really appreciate any help you could provide me. How do I format my Web Service results (in my CFC?) so that I can use it with Flash dataProvider / Remoting? The NetConnection Debugger shows the results returned from my CFC as (I abbreviated it): **

RE: CFCOMPONENT/CFINVOKE: Help

2004-05-18 Thread Raymond Camden
What error are you getting exactly? You should have no problem returning a string w/ HTML in it. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: CFCOMPONENT/CFINVOKE: Help

2004-05-18 Thread Alexander Sherwood
At 11:48 AM 5/18/2004, you wrote: Help I'm using a CFC to create a Web service. One of the columns in my query past through the Web service has HTML tags in the ntext data type column.The Web Service doesn't like it and throws an error for just this column. I think the markup needs to be

Macromedia JDBC driver class names

2004-05-18 Thread Rick Root
Can anyone tell me the class name of the Macromedia JDBC driver for Oracle that is included with CFMX?I've been google searching for 20 minutes and I'm not having any luck. I'm hoping to use CFOBJECT to create a java connection object using the built in driver. - Rick [Todays Threads]

RE: Spam and Viruses

2004-05-18 Thread Robertson-Ravo, Neil (RX)
One of the reasons you are being spammed is the way the list broadcasts emails FULLY on the webtry searching for someones in Google and you will see that you get loads of houseoffusion results with full emails to be hived off ready for spamming... No real way to stop them bar hunting down

RE: Client Variable Overhead CFMX/CF5

2004-05-18 Thread Stacy Young
Exactly what we did...haven't seen any issues. Cheers! Stace _ From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 11:42 AM To: CF-Talk Subject: RE: Client Variable Overhead CFMX/CF5 Hey, Does anyone know of why a serious performance lapse between ColdFusion 5

Re: Spam and Viruses

2004-05-18 Thread Stephen Moretti
Monique Boea wrote: This is off the subject of CF but maybe someone has a solution. I get TONS of spam and viruses in my mailbox on a daily basis...so much that I am thinking of changing my email address. Is there ANY way to stop this? Do people target specific email addresses to send

RE: Spam and Viruses

2004-05-18 Thread Matt Robertson
Doesn't sound as if you have control of a mail server, so you have to go client-side. http://keir.net/k9.html You can look at Cloudmark's SpamNet.Costs $4 monthly. HtH, Matt Robertson [EMAIL PROTECTED] MSB Designs, Inc.http://mysecretbase.com

RE: Macromedia JDBC driver class names

2004-05-18 Thread Dave Watts
Can anyone tell me the class name of the Macromedia JDBC driver for Oracle that is included with CFMX? I've been google searching for 20 minutes and I'm not having any luck. I'm hoping to use CFOBJECT to create a java connection object using the built in driver. You can just read it

Re: Spam and Viruses

2004-05-18 Thread Thane Sherrington
At 12:52 PM 5/18/2004, Monique Boea wrote: I get TONS of spam and viruses in my mailbox on a daily basis...so much that I am thinking of changing my email address. I'm using SpamPal (www.spampal.com) and it works great.I'm down to one or two pieces of spam per day in my Inbox, and maybe one

RE: Macromedia JDBC driver class names

2004-05-18 Thread Dave Carabetta
Can anyone tell me the class name of the Macromedia JDBC driver for Oracle that is included with CFMX? I've been google searching for 20 minutes and I'm not having any luck. I'm hoping to use CFOBJECT to create a java connection object using the built in driver. You can just read it

queryparam problem

2004-05-18 Thread Phillip B
I'm trying to insert the number 1 into an int field in MSSQL 2000 but I get an Invalid data for cfsqltype cf_sql_integer error. I checked the table and it is an int 4 data type. Any idea why this would happen? Phillip B [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re: CF sending data to a local printer?

2004-05-18 Thread Jas Panesar
You could probably whip up a quick VB COM object to run server side that uses the Printers object.Quickest way would be to use something like cf_pdf to create an unencrypted PDF file, then use some combination of acrobat/ghostscript to dump it to the printer you want. A great book for learning VB

Re: Reporting Tools

2004-05-18 Thread Jas Panesar
Is there any reason you couldn't use the crystal java report viewer to open run the report off the server?It works quite well, and could save you some time and headache if you have reports already made. -J Upgrade to SQL2K and download/get SQL Reporting Tools - very very good and free.

Re: Spam and Viruses

2004-05-18 Thread Doug White
If you control you own mail server - we can provide an anti-spam and anti-virus gateway which will forward clean mail to your server.The only configuration required is a simple one line addition to your MX records. == Our Anti-spam solution works!!

Re: Macromedia JDBC driver class names

2004-05-18 Thread Rick Root
Thanks for everyone's help.. with a little help from the datadirect documentation, I was actually able to get the following to work: cfscript clazz = CreateObject(java, java.lang.Class); // replace the package/class name of your db driver clazz.forName(macromedia.jdbc.MacromediaDriver);

Re: help with string manipulation (Find,Replace)

2004-05-18 Thread Jas Panesar
Another way you could look at this is to check for the length of the total characters in the first line. If it will never be less than 4, then you could wrap it with a conditional statement to check until it finds the first real line that is longer than 4 characters. [Todays Threads] [This

RE: Spam and Viruses

2004-05-18 Thread d.a.collie
I get TONS of spam and viruses in my mailbox on a daily basis...so much that I am thinking of changing my email address. If you're using Outlook, SpamBeyes is working well for me after training it up http://spambayes.sourceforge.net/ -- dc [Todays Threads] [This Message] [Subscription]

RE: Macromedia JDBC driver class names

2004-05-18 Thread Dave Watts
For what it's worth, this is the second time I've resorted to using the datadirect documentation to solve a driver-related issue with Cold Fusion :) Out of curiosity, what exactly are you trying to accomplish in Java that you can't do directly from CF? Dave Watts, CTO, Fig Leaf Software

Re: Macromedia JDBC driver class names

2004-05-18 Thread Dave Carabetta
Thanks for everyone's help.. with a little help from the datadirect documentation, I was actually able to get the following to work: cfscript clazz = CreateObject(java, java.lang.Class); // replace the package/class name of your db driver clazz.forName(macromedia.jdbc.MacromediaDriver);

Re: Reporting Tools

2004-05-18 Thread Rick Root
Jas Panesar wrote: Is there any reason you couldn't use the crystal java report viewer to open run the report off the server?It works quite well, and could save you some time and headache if you have reports already made. Are you referring to the built in CFREPORT functionality?That may

RE: queryparam problem

2004-05-18 Thread Dave Francis
if you have quotes around '1', remove them -Original Message- From: Phillip B [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 12:18 PM To: CF-Talk Subject: queryparam problem I'm trying to insert the number 1 into an int field in MSSQL 2000 but I get an Invalid data for cfsqltype

Re: Macromedia JDBC driver class names

2004-05-18 Thread Rick Root
Dave Watts wrote: Out of curiosity, what exactly are you trying to accomplish in Java that you can't do directly from CF? My goal is to build a web service that uses JasperReports, a free Java report generation tool, to generate reports in PDF format and return a link to the generated

Re: Macromedia JDBC driver class names

2004-05-18 Thread Rick Root
Dave Carabetta wrote: Rick, perhaps I missed it, but what issue did you run into with the drivers that you needed to resort to this? Your query looks to be pretty basic. I've explained the real reasoning in another post.. but the ALLEGED reason for running a query this way is that CFQUERY

Script to redirect output from STDERR to STDOUT

2004-05-18 Thread David Adams
This script will run the specified command on a Unix or Linux operating system.The script redirects output from STDERR to STDOUT to allow ColdFusionMX to make error messages available to the cfexecute tag.These error messages can be captured in the variable parameter or output to a file.

Re: Macromedia JDBC driver class names

2004-05-18 Thread Dave Carabetta
Rick, perhaps I missed it, but what issue did you run into with the drivers that you needed to resort to this? Your query looks to be pretty basic. I've explained the real reasoning in another post.. but the ALLEGED reason for running a query this way is that CFQUERY won't return any results

OT: RE: Spam and Viruses

2004-05-18 Thread Erik Yowell
Perhaps a bit off-topic, but sort of along the same lines - anyone figure out how to handle spoofed bouncebacks from anti-virus protected email accounts? I believe I'm getting more of those than actual spam or virus messages these days. You'd think the mail servers would assume the virus is coming

CFMX Memory Consumption

2004-05-18 Thread Robert Shaw
This is kind of a general question regarding CFMX and how it utilizes memory. I know in CF 5 CF will consume the amount of memory it needs and then hold onto it and reallocate it back and forth. How does CFMX handle memory, the same way? TIA, Robbie [Todays Threads] [This Message]

RE: Spam and Viruses

2004-05-18 Thread Monique Boea
No I don't mean on this email address...I mean another one... Nothing to do with this email list -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 11:56 AM To: CF-Talk Subject: RE: Spam and Viruses One of the reasons you are

RE: Spam and Viruses

2004-05-18 Thread Thane Sherrington
At 02:08 PM 5/18/2004, Monique Boea wrote: One of the reasons you are being spammed is the way the list broadcasts emails FULLY on the webtry searching for someones in Google and you will see that you get loads of houseoffusion results with full emails to be hived off ready for spamming... I

RE: Spam and Viruses

2004-05-18 Thread Thane Sherrington
At 02:25 PM 5/18/2004, Thane Sherrington wrote: I just tried that - [EMAIL PROTECTED] comes up with no hits on Google.Nor does [EMAIL PROTECTED]I don't think she's getting spam that way. I take it back - [EMAIL PROTECTED] comes up with a lot of hits.So maybe some spam is coming through that way.

General CFMX Tuning Recommendations

2004-05-18 Thread Burns, John D
I know it's been brought up before in different places concerning different subjects, but I'm curious if anyone has any input on CFMX Production Server tuning with the following specs: Windows 2003 Server Enterprise CFMX 6.1 1GB RAM 40+ GB of hard drive space for websites P4 2.8Ghz We're

RE: Spam and Viruses

2004-05-18 Thread Monique Boea
the address is [EMAIL PROTECTED] -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 1:28 PM To: CF-Talk Subject: RE: Spam and Viruses At 02:25 PM 5/18/2004, Thane Sherrington wrote: I just tried that - [EMAIL PROTECTED] comes up with no hits

Re: CFMX Memory Consumption

2004-05-18 Thread Nathan Strutz
To really understand CFMX's memory handling, you have to understand the Java memory model. I'm no super-java-pro, but here's my understanding. Basically, everything in Java is an object. Objects are created and stored on the heap. Garbage collection (gc) runs when it needs to (and for various

Re: Reporting Tools

2004-05-18 Thread Jas Panesar
CFREPORT could concievably work very well too -- it would only generate the report and drop it to a specified file.Have you tried the examples provided from CF 4.5+ documentation to use cfreport? if all else fails, google +cfreport +example without the quotes.I was referring to a activex/java

Re: ColdFusion installation issue [ SOLVED ]

2004-05-18 Thread Doug White
When installing CFMX on Win2003, make sure that the ISAPI filter URLScan is disabled or it will intercept all the _javascript_ing commands that need to be run to complete the installation. happy camper now. == Our Anti-spam solution works!!

[OT] Select + in combo, open popup, save in DB, reload main select...

2004-05-18 Thread Spectrum WebDesign
Hi all sorry for OT. please help me... I'm looking for anythink about how to... 1) user clicks in Add City if Combo(SELECT field) don't have your city. Open popup. 2) Insert your city in popup to DB. 3) close popup. 4) reload only original select...combo... Find several articles about DIV,

Re: CFCOMPONENT/CFINVOKE: Help

2004-05-18 Thread coldfusion . developer
What error are you getting exactly? You should have no problem returning a string w/ HTML in it. Error Occurred While Processing Request Could not perform web service invocation myFunction because AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode:

  1   2   >