cfhtp post bug?

2005-09-30 Thread Jason Troy
I have an application that does some backend processing. It will do an cfhttp post (with form fields) to another app and wait for the response before confirming the transaction was successful. At times, these transactions can take a long time to finish (GT 5 minutes). (don't go there with just

RE: Idea for better hosting

2005-09-30 Thread Kerry
some semi-ignorant questions from me: Here the really bad sites would hit each server 1/3 as hard What if I uploaded an infinite loop? wouldnt that still kill all three servers in turn? Does anyone know if setting the isolation to high in IIS will have any effect on the performance / memory of

RE: Open CF Wiki Code Search

2005-09-30 Thread Hugo Ahlenius
I have one, which I intend to open source at some point, I haven't wrapped up the code in a nice package though. -- Hugo Ahlenius - Hugo Ahlenius E-Mail: [EMAIL PROTECTED] Project OfficerPhone:

Re: CF Tips... was CF smart

2005-09-30 Thread Wayne Putterill
How about just requiring the subject to begin with TIP, any replies would have Re: at the beginning and would be ignored. Doesn't help with updates though. On 9/29/05, Michael Dinowitz [EMAIL PROTECTED] wrote: Requiring them to be on their own line might be nice, but when writing this I have to

Re: Report Builder Update Problems?

2005-09-30 Thread Dean Harmon
What is the error message you see when you do the test connection? ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client

Re: Photo Gallery

2005-09-30 Thread Ryan Guill
Id like to second the www.slideshowpro.net suggestion. You can see an example of it on my website: www.ryanguill.com/slideshow/ And I wrote a manager for it in coldfusion thats free to use as well. One of the best ways I have ever spent 20 bucks. On 9/30/05, Emmet McGovern [EMAIL PROTECTED]

OT: dts package password recovery HELP!!!

2005-09-30 Thread Tony
hi there. your favorite numbskull has forgotten a password for a DTS package that he made, and now needs to alter it just a bit :) any idea how to recover? i googled and didnt come up with anything i could get into and read without paying :( help if ya can. thanks! -- tony Tony Weeg

Re: Photo Gallery

2005-09-30 Thread Pete Ruckelshaus
I wrote my own. It took a couple of days but it was a fun project. I used (and extended) Massimo's tmt_img cfc to do image manipulation natively, so what happens is the image gets uploaded, and a thumbnail and full-sized image gets greated based upon max dimensions. Uses SQL server as a

RE: Report Builder Update Problems?

2005-09-30 Thread Claremont, Timothy
The error says... The following error occurred while trying to connect to the RDS Server Http/1.1 401 Unauthorized I have checked the username and password, and I have confirmed that things match the RDS setup page in the CF Administrator. The previous version of Report Builder, while it had

Re: Open CF Wiki Code Search

2005-09-30 Thread Raymond Camden
There is another DRK in the works. On 9/29/05, Jerry Johnson [EMAIL PROTECTED] wrote: Isn't the DRK a thing of the past? On 9/29/05, Raymond Camden [EMAIL PROTECTED] wrote: Sounds like a great idea for a DRK app... On 9/29/05, Stephen Cassady [EMAIL PROTECTED] wrote: Does anybody have

RE: Tips for developing CFML on macintosh

2005-09-30 Thread Andy Matthews
mySQL can run on the Mac, priobably PostgreSQL as well. I remember seeing a Mac version of the Nusphere/Firepages LAMP package. That's what I use as webserver for my PC. list of cool packages: http://www.entropy.ch/software/macosx/ The package in question: http://www.mamp.info/en/home/

Re: OT: dts package password recovery HELP!!!

2005-09-30 Thread Tony
found it. numbskull is back in action. tw On 9/30/05, Tony [EMAIL PROTECTED] wrote: hi there. your favorite numbskull has forgotten a password for a DTS package that he made, and now needs to alter it just a bit :) any idea how to recover? i googled and didnt come up with anything i

RE: Photo Gallery

2005-09-30 Thread Andy Matthews
Ryan Guill (on this list) wrote a CMS to interface with SlideShow Pro. I think it's on his website: http://www.ryanguill.com/ !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Emmet

SQL statements

2005-09-30 Thread Richard Cooper
Hi, With SQL statements it normal not to encase integers within single quote marks, right? But with SQL server, when doing a select statement, if the where clause column is an integer you can choose to have or not have the single quote marks with seamingly no difference. Is it OK to have

Re: Need Advice- Form Posting to an Outside Server and Dealing with the Response

2005-09-30 Thread Les Mizzell
Emmet McGovern wrote: Post to a page on your site that has cfhttp on it. Using cfhttp with cfhttpparam you can post and capture the response to a variable called #cfhttp.filecontent#. I think you may need to read up on cfhttpparam. Thanks Emmet - I'm on my way towards comprehension now!

RE: SQL statements

2005-09-30 Thread Matthew Small
I imagine that the DBMS is converting the string to an integer on the fly, which will lower performance of the query. So yes, I think that would be considered bad practice unless it's necessary. Matthew Small Web Developer American City Business Journals 704-973-1045 [EMAIL PROTECTED]

Web service security / session mgmt

2005-09-30 Thread Dharmendar Kumar
With reference to this thread: http://www.houseoffusion.com/cf_lists/messages.cfm/forumid:4/threadid:37 816 Can somone shed some more light on how to do this? Let's say I have an authenticate method that returns a token. The client first has to call this method, get the token, and in subsequent

cf 6.1 xml datatype?

2005-09-30 Thread Ryan Guill
Hey guys, I have noticed in my dreamweaver 8 that you can specify a function returntype of xml like: cffunction ... returntype=xml... I know this works on cf 7 and 7.0.1, but I am wondering if this works on cf 6.1? I am working on COAL and dont have a 6.1 machine I can test on currently. Was

Re: SQL statements

2005-09-30 Thread Tony
ill be ray camden for a minute... USE CFQUERYPARAM and you do not have to worry about them :) tw On 9/30/05, Matthew Small [EMAIL PROTECTED] wrote: I imagine that the DBMS is converting the string to an integer on the fly, which will lower performance of the query. So yes, I think that would

Re: cf 6.1 xml datatype?

2005-09-30 Thread Dave Carabetta
On 9/30/05, Ryan Guill [EMAIL PROTECTED] wrote: Hey guys, I have noticed in my dreamweaver 8 that you can specify a function returntype of xml like: cffunction ... returntype=xml... I know this works on cf 7 and 7.0.1, but I am wondering if this works on cf 6.1? I am working on COAL and

Re: cf 6.1 xml datatype?

2005-09-30 Thread Ryan Guill
So will it give an error or what exactly, do you know? I am assuming it will try to validate it as a component type of xml and will bomb then. On 9/30/05, Dave Carabetta [EMAIL PROTECTED] wrote: On 9/30/05, Ryan Guill [EMAIL PROTECTED] wrote: Hey guys, I have noticed in my dreamweaver 8

Re: cf 6.1 xml datatype?

2005-09-30 Thread Dave Carabetta
On 9/30/05, Ryan Guill [EMAIL PROTECTED] wrote: So will it give an error or what exactly, do you know? I am assuming it will try to validate it as a component type of xml and will bomb then. I just ran a test for you and this is what is says (it does throw an error): The value returned from

Re: cf 6.1 xml datatype?

2005-09-30 Thread Ryan Guill
Yep, exactly what I needed and expected. Many thanks, On 9/30/05, Dave Carabetta [EMAIL PROTECTED] wrote: On 9/30/05, Ryan Guill [EMAIL PROTECTED] wrote: So will it give an error or what exactly, do you know? I am assuming it will try to validate it as a component type of xml and will bomb

CFMX7, CF5, and Router?

2005-09-30 Thread Adkins, Randy
I have Verzion DSL connected to my Linksys Router and have all PORT 80 traffic directed to use CF5. I am able to use http://somename.no-ip.org/somesite and I can view the site without a problem. I setup the Port Forwarding of 8500 to the same IP address and when I try to access a site, It times

RE: CFMX7, CF5, and Router?

2005-09-30 Thread Adkins, Randy
BTW: I can access the site if I run it locally at: http://localhost:8500/somesiteOtherSite -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 10:55 AM To: CF-Talk Subject: CFMX7, CF5, and Router? I have Verzion DSL connected to my Linksys

Re: CFMX7, CF5, and Router?

2005-09-30 Thread Stephen Moretti
Anyone else have this issue? BTW: the CFMX7 is the developer's edition. The answer to your question lies in your BTW comment ;) ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

RE: CFMX7, CF5, and Router?

2005-09-30 Thread Russ
Yea, I think you'll need to add your remote ip address to coldfusion and restart the service... -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 11:05 AM To: CF-Talk Subject: Re: CFMX7, CF5, and Router? Anyone else have this issue?

RE: CFMX7, CF5, and Router?

2005-09-30 Thread Adkins, Randy
The Developer's edition can support localhost and two other IP addresses Based on the information on the Macromedia site. So I did not think that would be an issue. -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 11:05 AM To: CF-Talk

RE: CFMX7, CF5, and Router?

2005-09-30 Thread Russ
Yes, 2 other addresses... but you have to specify which addresses... -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 11:09 AM To: CF-Talk Subject: RE: CFMX7, CF5, and Router? The Developer's edition can support localhost and two other

Re: Idea for better hosting

2005-09-30 Thread DRE
Kerry, Thats a rather extreme case but you would be slightly better off with the load ballanced scheme. You'd have to set it off once on each balanced server in very rapid succession to kill them all at the same time as opposed to just once on the single server. Its vaguely likely but not

SOT: SQL Server 2000 Full-text search issues

2005-09-30 Thread Burns, John D
I have a development CF server (Windows 2003 Server, SQL Server 2000 SP4, CFMX 6.1) on which I have a database that has full-text enabled on a table. When I run a query against the full-text index, it returns 31 rows. I have 2 production servers. 1 production CF Server (Windows 2003 Server,

RE: OT: dts package password recovery HELP!!!

2005-09-30 Thread Emmet McGovern
Crap... You didn't give me a chance to point my finger and laugh at you. Oh well, maybe next time. ;) -e -Original Message- From: Tony [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 9:33 AM To: CF-Talk Subject: Re: OT: dts package password recovery HELP!!! found it.

RE: SQL Server 2000 Full-text search issues

2005-09-30 Thread Matt Osbun
IT Toolbox has a fairly active discussion group about SQL Server that you might want to try out. Not that I'm against turning to this list for OT help (I'm one or two failures away from doing it myself soon, but that's a different kettle of fish).

RE: SQL Server 2000 Full-text search issues

2005-09-30 Thread Martin Parry
I too get this on my 2003 cluster. I restored the database as a backup from my dev box (which it works on) and do a full rebuild - It takes but a second to say its complete and then gives me absolutely no results. If I find a solution I'll post it here. IF! Martin Parry

RE: CFMX7, CF5, and Router?

2005-09-30 Thread Adkins, Randy
I loaded an IP address under Sandbox security but I am still unable to access it From an external site. Is there some place I am unaware of that the IP address should be loaded? I searched livedocs and google and only found references indicating that CFMX 7 Does support localhost + 2 IP

RE: CFMX7, CF5, and Router?

2005-09-30 Thread Jim Davis
-Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 11:11 AM To: CF-Talk Subject: RE: CFMX7, CF5, and Router? Yes, 2 other addresses... but you have to specify which addresses... Not at all - it simply logs the first two IP addresses to hit it

RE: CFMX7, CF5, and Router?

2005-09-30 Thread Jim Davis
-Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 11:09 AM To: CF-Talk Subject: RE: CFMX7, CF5, and Router? The Developer's edition can support localhost and two other IP addresses Based on the information on the Macromedia site.

RE: CFMX7, CF5, and Router?

2005-09-30 Thread Jim Davis
-Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 11:51 AM To: CF-Talk Subject: RE: CFMX7, CF5, and Router? I loaded an IP address under Sandbox security but I am still unable to access it From an external site. Is there some

type=numeric bug

2005-09-30 Thread Barney Boisvert
Can anyone confirm this bug on CF 7.0.1? cffunction name=t cfargument name=a type=numeric required=true / cfreturn _ a _ / /cffunction cfoutput #t(34)# #t(34 )# /cfoutput The second call to 't' should throw an error that the argument isn't numeric, but it allows it. Even

Re: type=numeric bug

2005-09-30 Thread Scott Stroz
Here is the output: _34_ _34 _ On CF 7.0.1 On 9/30/05, Barney Boisvert [EMAIL PROTECTED] wrote: Can anyone confirm this bug on CF 7.0.1? cffunction name=t cfargument name=a type=numeric required=true / cfreturn _ a _ / /cffunction cfoutput #t(34)# #t(34 )# /cfoutput The second

Re: type=numeric bug

2005-09-30 Thread Dave Carabetta
On 9/30/05, Barney Boisvert [EMAIL PROTECTED] wrote: Can anyone confirm this bug on CF 7.0.1? cffunction name=t cfargument name=a type=numeric required=true / cfreturn _ a _ / /cffunction cfoutput #t(34)# #t(34 )# /cfoutput The second call to 't' should throw an error

CF MX 7 and execution time

2005-09-30 Thread Bryan Stevenson
Hey All, I just noticed that the execution time (CF debugging output) shows a bunch of file processing times that DO NOT add up to the total execution time??? They actually add up to a number much higher than what's shown as the total. Anybody else seen this? Bryan Stevenson B.Comm. VP

Re: OT: dts package password recovery HELP!!!

2005-09-30 Thread Tony
im quick like that nigra :) tw On 9/30/05, Emmet McGovern [EMAIL PROTECTED] wrote: Crap... You didn't give me a chance to point my finger and laugh at you. Oh well, maybe next time. ;) -e -Original Message- From: Tony [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005

Re: type=numeric bug

2005-09-30 Thread Barney Boisvert
Whoops. I meant trailing space, not trailing slash. Sorry about that. Basically CF says 34 is a valid numeric value, in all MX versions. Here's a better test to illustrate: cffunction name=t output=false returntype=numeric cfargument name=a type=numeric required=true /

CF and Oracle Ref Cursors

2005-09-30 Thread Matt Osbun
I'm no expert on PL/SQL, so I'm hoping I'm missing something easy here. I've got a Oracle 8i stored procedure with two parameters- a varchar IN and a ref cursor OUT. Testing it out, I'm using: cfstoredproc procedure=cla.ipdupes datasource=ODBCDataSource cfprocparam value=TechName

Re: type=numeric bug

2005-09-30 Thread Dave Carabetta
On 9/30/05, Barney Boisvert [EMAIL PROTECTED] wrote: Whoops. I meant trailing space, not trailing slash. Sorry about that. Basically CF says 34 is a valid numeric value, in all MX versions. Here's a better test to illustrate: cffunction name=t output=false returntype=numeric

Re: CF and Oracle Ref Cursors

2005-09-30 Thread Dave Carabetta
On 9/30/05, Matt Osbun [EMAIL PROTECTED] wrote: I'm no expert on PL/SQL, so I'm hoping I'm missing something easy here. I've got a Oracle 8i stored procedure with two parameters- a varchar IN and a ref cursor OUT. Testing it out, I'm using: cfstoredproc procedure=cla.ipdupes

RE: type=numeric bug

2005-09-30 Thread Jim Davis
-Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 2:03 PM To: CF-Talk Subject: Re: type=numeric bug Whoops. I meant trailing space, not trailing slash. Sorry about that. Basically CF says 34 is a valid numeric value, in all MX

RE: ColdFusion and Jakarta Structs Framework

2005-09-30 Thread kola.oyedeji
Missed this thread but this may be of some use to you : http://www.macromedia.com/devnet/coldfusion/articles/struts.html http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=254 74forumid=4 HTH Kola -Original Message- From: Troy Simpson [mailto:[EMAIL PROTECTED]

Re: Photo Gallery

2005-09-30 Thread Robert Everland III
Here is one that was posted a few months ago http://www.bellavite.com/bellaalbum.cfm Also this java program is pretty good, it takes your pictures and creates a website that is a slideshow http://jalbum.net Bob Everland ~|

cffile action=move screwy?

2005-09-30 Thread Will Tomlinson
Is there a problem with cffile action=move? On my devl machine here sometimes it works, sometimes I get an error saying the source is invalid. I'm positive both my source and destinations are correct. Googlin' showed there might be some issues with it. If I change the action to copy, it works

RE: CF and Oracle Ref Cursors

2005-09-30 Thread Matt Osbun
As for the first, Coldfusion 7 Standard. Sorry I didn't mention that initially. As for the second... Mostly because of this: java.sql.SQLException: Use of Macromedia JDBC Drivers is restricted. Drivers can only be used with Macromedia server products. Please check that your license supports the

Re: cffile action=move screwy?

2005-09-30 Thread Barney Boisvert
Yes, there are some definite issues. Copy/delete is the solution I use. cheers, barneyb On 9/30/05, Will Tomlinson [EMAIL PROTECTED] wrote: Is there a problem with cffile action=move? On my devl machine here sometimes it works, sometimes I get an error saying the source is invalid. I'm

Interesting query delima

2005-09-30 Thread jonese
Ok i have a SQL 2000 Stored Procedure which generates insert statements for me. When i run the cfquery tag to execute this SP it returns back X rows of data. When i cfdump the query VAR i see all the records but the column name is called COMPUTED_COLUMN_1 When i try to CFLOOP over this query and

Re: CF and Oracle Ref Cursors

2005-09-30 Thread Dave Carabetta
On 9/30/05, Matt Osbun [EMAIL PROTECTED] wrote: As for the first, Coldfusion 7 Standard. Sorry I didn't mention that initially. As for the second... Mostly because of this: java.sql.SQLException: Use of Macromedia JDBC Drivers is restricted. Drivers can only be used with Macromedia server

RE: CF 7 on OS X: JVM 1.5?

2005-09-30 Thread Steve Brownlee
On Windows, all you need to do is install the 1.5 JRE on your machine and set the environment variable JAVA_HOME to point to the JRE directory. -Original Message- From: Ken Dunnington [mailto:[EMAIL PROTECTED] Sent: Thursday, September 29, 2005 2:17 PM To: CF-Talk Subject: CF 7 on

Re: Interesting query delima

2005-09-30 Thread Steve Bryant
Usually when I see COMPUTED_COLUMN_1 it means that I have a calculated column in my query that doesn't tie directy to a field in a table (and for which I failed to use an alias). Without seeing the source of the stored-proc, I couldn't say much more than that, but hopefully that might point

Re: CF MX 7 and execution time

2005-09-30 Thread Bryan Stevenson
Anybodyconfirm? deny? don't know? don't care? ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com - Original Message -

Re: CF MX 7 and execution time

2005-09-30 Thread Ryan Guill
Its been that way since cf 6.1 as far as I know. bout the most information I have... On 9/30/05, Bryan Stevenson [EMAIL PROTECTED] wrote: Anybodyconfirm? deny? don't know? don't care? ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc.

RE: CF-Talk: Digest every 2 hours

2005-09-30 Thread Dharmendar Kumar
Dharmendar Kumar | Lead Developer Real Magnet | Advanced Broadcast E-mail and Fax Solutions 4853 Cordell Ave., PH 11, Bethesda, MD 20814 Phone: 301-652-4025 | Fax: 301-652-7153 E-mail: [EMAIL PROTECTED] Website: www.realmagnet.com I found this article that deals with web services

RE: CF MX 7 and execution time

2005-09-30 Thread Steve Brownlee
Yes I noticed this as well. The numbers never add up and the sum of the parts is almost always *vastly* higher than the total given at the bottom. Many times the sum adds up to a number so completely wrong it's laughable. I'm now looking at a page than executed in about 1.5 seconds and the sum of

Re: CF MX 7 and execution time

2005-09-30 Thread Bryan Stevenson
Its been that way since cf 6.1 as far as I know. bout the most information I have... Wow...reallyguess I haven't been paying close enough attention ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264

Re: CF MX 7 and execution time

2005-09-30 Thread Bryan Stevenson
Yes I noticed this as well. The numbers never add up and the sum of the parts is almost always *vastly* higher than the total given at the bottom. Many times the sum adds up to a number so completely wrong it's laughable. I'm now looking at a page than executed in about 1.5 seconds and the

Re: Interesting query delima

2005-09-30 Thread jonese
this is where i got the SP.. http://vyaskn.tripod.com/code.htm#inserts erj On 9/30/05, Steve Bryant [EMAIL PROTECTED] wrote: Usually when I see COMPUTED_COLUMN_1 it means that I have a calculated column in my query that doesn't tie directy to a field in a table (and for which I failed to

RE: CF MX 7 and execution time

2005-09-30 Thread Steve Brownlee
Well, I don't know of any code that runs for 27 seconds here and I've been working on this all day, so I'm going to with 1.5 seconds is actual execution time :) Another thing I've noticed is this kind of output... Total | Avg. |Times | Template ==

System Probes

2005-09-30 Thread Steve Brownlee
Trying to set up a system probe via my Administrator. Getting the message below. File is not read-only. This an known issue by anyone else. Have any of you been able to sucessfully add system probes? Error writing to cfusion\lib\neo-probe.xml. Please make sure the file is not marked

Re: Report Builder Update Problems?

2005-09-30 Thread Dean Harmon
The RDS client did change in the new version of the Report Builder, it no longer uses the Homesite dll's, it's embedded. Are you using SSL on your webserver? Is there some other kind of authentication method that is on your webserver?

Re: CF MX 7 and execution time

2005-09-30 Thread Bryan Stevenson
Yep Steve.I think the total is probably accurate and the individual times are derived from a hamster running laps on a wheel ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail:

Re: Interesting query delima

2005-09-30 Thread Steve Bryant
Just based on looking at the documentation, it says that it handles calculated columns. So (and I am just taking a guess here), you might check and make sure that you have used aliases in all of your calculated columns in your view. Incidentally, the example uses sysobjects, which Microsoft

Re: Report Builder Update Problems?

2005-09-30 Thread Jeff Garza
The good thing about the Homesite dlls was that they appeared to pick up the automatic proxy settings that you set for Internet Explorer. This allowed them to be used in an environment where everything HTTP is proxied (including internal access). Dreamweaver does not follow that behavior and

RE: System Probes

2005-09-30 Thread Russ
Have you changed the user that coldfusion runs as? Check what user coldfusion runs as under services, and make sure this user has write access to the file mentioned... -Original Message- From: Steve Brownlee [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 4:52 PM To: CF-Talk

Tip functionality

2005-09-30 Thread Michael Dinowitz
I'm going to add the ability to post tips to the House of Fusion mailing lists. A tip will be any text within these two tags: tip/tip All tips will then be logged to http://www.cftips.com for commenting, editorial and rss syndication. To allow more functionality, the tip tag will accept

Re: SQL statements

2005-09-30 Thread Claude Schneegans
Is it OK to have these single quote marks or is it deemed bad practice for any reason? Considering that it is against the standard, I would say it is bad practice, for this reason. -- ___ REUSE CODE! Use custom tags; See

Re: cffile action=move screwy?

2005-09-30 Thread Will Tomlinson
Yes, there are some definite issues. Copy/delete is the solution I use. cheers, barneyb Thanks much Barney! I appreciate the tip. Will ~| Logware (www.logware.us): a new and convenient web-based time tracking application.

Re: SQL statements

2005-09-30 Thread Will Tomlinson
ill be ray camden for a minute... Tony, I've seen Ray Camden. I know Ray Camden. Tony, you are no Ray Camden. :) heheeheee, hey it's Friday night! Will ~| Find out how CFTicket can increase your company's customer support

RE: CF and Oracle Ref Cursors

2005-09-30 Thread Dave Watts
I'm using an ODBC datasource because, according to the docs, you must use cfprocresult to get a ref cursor from Oracle 8, and can't use cfprocresult with Oracle's ThinClient JDBC drivers. I'm no Oracle expert, but maybe you could use the Oracle JDBC drivers that use the native Oracle client,

RE: CF 7 on OS X: JVM 1.5?

2005-09-30 Thread Dave Watts
I just installed the Server version of 7.0.1 on my OS X 10.4 system (switching from 7 on JRun4) and was wondering if it's possible to specify the 1.5 JVM as the one CF uses? I know it isn't officially supported, but has anyone tried it? You can set the JVM in the Server Settings/Java and JVM

RE: Idea for better hosting

2005-09-30 Thread Dave Watts
What if I uploaded an infinite loop? wouldnt that still kill all three servers in turn? Probably, eventually. Does anyone know if setting the isolation to high in IIS will have any effect on the performance / memory of CF sites on a shared box? I guess IIS cant control the JVM, so no?

RE: Tips for developing CFML on macintosh

2005-09-30 Thread Dave Watts
Does Tiger natively have a SQL Server OBDC driver? If not, what are people using? You can just use JDBC drivers. Macromedia provides a JDBC driver for MS SQL Server. What about Access databases? Can they be read and manipulated on a mac (I know the software itself won't run)? Or must that

RE: CF Web Based Keyboard

2005-09-30 Thread Dave Watts
Doesn't a PC in kiosk mode have onscreen keyboard abilities built-in?? Not unless it's got software to provide this. Windows XP Tablet 2005, for example, provides an onscreen keyboard. There are third-party products that also do this. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

RE: CF Web Based Keyboard

2005-09-30 Thread Dave Watts
Doesn't a PC in kiosk mode have onscreen keyboard abilities built-in?? Not unless it's got software to provide this. Windows XP Tablet 2005, for example, provides an onscreen keyboard. There are third-party products that also do this. Oops! Jim Davis proved me wrong: However

Re: CF 7 on OS X: JVM 1.5?

2005-09-30 Thread Dave Carabetta
On 9/30/05, Dave Watts [EMAIL PROTECTED] wrote: I just installed the Server version of 7.0.1 on my OS X 10.4 system (switching from 7 on JRun4) and was wondering if it's possible to specify the 1.5 JVM as the one CF uses? I know it isn't officially supported, but has anyone tried it? You

Stuck on saving times in a SQL server database

2005-09-30 Thread Pete Ruckelshaus
I'm stuck. Could be just because it's late, but I'm not getting anywhere. I'm writing a scheduling application to make my wife's life a bit easier. One of the tables will contain standard shift times for employees, i.e. 7:30-16:00, 8:30-17:00. I use these values to populate a dropdown that a

Re: Stuck on saving times in a SQL server database

2005-09-30 Thread Kym Kovan
Hi, Pete Ruckelshaus wrote: I'm stuck. Could be just because it's late, but I'm not getting anywhere. I'm writing a scheduling application to make my wife's life a bit easier. One of the tables will contain standard shift times for employees, i.e. 7:30-16:00, 8:30-17:00. I use these