CFMX fails to respond under high load with IIS5

2003-04-03 Thread Buckland, Ramon
? cheers -Original Message- From: Buckland, Ramon [mailto:[EMAIL PROTECTED] Sent: Friday, 21 March 2003 5:40 PM To: CF-Talk Subject: RE: CFMX crashes with high load on cfwddx Thanks Joe, I've googled and searched a good deal, and only found this relevant one http

RE: Learned something today (Oracle)

2003-04-02 Thread Buckland, Ramon
Tony, My guess is that there is an index on the orderno field but it is a 'varchar' index (as it should be) because the string you are comparing to is an int, it's probably converting each orderno to int and comparing that way. (I would think the opposite though) so because there is no, 'int'

RE: Learned something today (Oracle)

2003-04-02 Thread Buckland, Ramon
T-SQL is Transact SQL, (it originated from Sybase) Sybase (before they sold their technology to Microsoft to make Microsoft SQL Server) also called their server SQL Server After the sale, Sybase then changed it's name, so to not confuse anyone (potentially) MS-SQL (MSSQL) is of course Microsoft

RE: Cookies and browser launch methods

2003-04-02 Thread Buckland, Ramon
Bryan, The tricky detail in your scenario is the non-persistent cookie. (See note at bottom for details on persistant/non persist cookies) Now, when you launch a New browser via CTRL+N, it gets a copy of ALL the vars in memory at that time from the original (including your non persistant

RE: Session state / cookies within frame???

2003-04-02 Thread Buckland, Ramon
Hi Costas, IE if told to accept a cookie, will accept it from whereever it comes (banner ads)(think doubleclick.com) frames .. Only thing I can think of is that they are actually pulling your content from there server via a cfhttp (or lang equivalent) and pulling your content into a local

RE: Load Tester

2003-03-27 Thread Buckland, Ramon
The all so popular tool wget wget http://somesit/somepage wget --help man wget HttpUnit is good. Java Based.. but you want commandline.. here are some suggestions.. http://www.softwareqatest.com/qatweb1.html#FUNC -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED]

RE: application.cfm

2003-03-26 Thread Buckland, Ramon
I beleive so, but just to be good, put a comment in there eg: !--- this is blank to override parent application.cfm in ../ --- -Original Message- From: Parker, Kevin [mailto:[EMAIL PROTECTED] Sent: Thursday, 27 March 2003 12:31 PM To: CF-Talk Subject: application.cfm I think I

RE: Weird SQL problem in CF

2003-03-26 Thread Buckland, Ramon
You may find it has to do with the Locale / Number format of the windows settings of the server. Either SQL Server or the IIS Server. In Win2k it's the 'Regional Settings' in control panel. Taks a look in there (compare to dev box). -Original Message- From: Parker, Kevin

RE: Sybase CF

2003-03-25 Thread Buckland, Ramon
We use Sybase ASE12.5 For CF5 and below, use the native Sybase ODBC Driver you get with the server. fro CFMX, it has a native Sybase driver. (JDBC based) use that -Original Message- From: Jim Gurfein [mailto:[EMAIL PROTECTED] Sent: Wednesday, 26 March 2003 9:13 AM To: CF-Talk

RE: OT: css, dhtml question

2003-03-24 Thread Buckland, Ramon
Barney, I worked on a web application once that worked (and looked) almost identical to what you have there. We used DHTML (DynAPI a JS Library) and it gave height's etc of the DIV's after content had been set.. thus being able to put footers at the bottom. my point, yes it can be done, if

RE: Array of Queries and CFOutput

2003-03-23 Thread Buckland, Ramon
Try saving the queries out of the array if you need to use cfloop /cfoutput. (Just a thought) cfset qry_1 = QueryAry[1] -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Saturday, 22 March 2003 3:19 AM To: CF-Talk Subject: RE: Array of Queries and CFOutput

RE: ColdFusion MX Still crashing after updater. *pulling hair out *

2003-03-23 Thread Buckland, Ramon
Have you got any CFWDDX calls in the site ? Just a thought given our perils. See thread on cfwddx issues watch the wrap... http://www.houseoffusion.com/cf_lists/index.cfm?method=messagesthreadid=22567forumid=4refresh=0 :-) We too use an SQL server but my exhaustive tests came up negative to any

CFMX crashes with high load on cfwddx

2003-03-20 Thread Buckland, Ramon
Hi, Found I can bring down our MX server where cfwddx is used. In a nut shell, obtain wddx string and convert it. cfwddx action=WDDX2CFML input=#wddxPacket# output=st_RS We use WDDX all over the site as our data layer by retreiving through cfhttp. I tested the cfhttp connections

RE: CFMX crashes with high load on cfwddx

2003-03-20 Thread Buckland, Ramon
be able to answer the status on the cfwddx issue. Joe Eugene -Original Message- From: Buckland, Ramon [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 8:31 PM To: CF-Talk Subject: CFMX crashes with high load on cfwddx Hi, Found I can bring down our MX server

bug (maybe) with evaluate() and CFMX

2003-03-19 Thread Buckland, Ramon
This works in CF4.5 but not in CFMX. (Can't test for CF5) evaulate only takes one 'expression'. You can't combine multiple expressions seperated by ; in one evaluate. It errors in the evaulation (not 'at' the evaluation) stating that it was not expecting the semicolon. This is different to

RE: 2 questions: hot keys and barcodes

2003-03-19 Thread Buckland, Ramon
What kind of commands do you wish to 'force' ? A barcode scanner just acts as a keybord device (depending on what type you get) so if the barcode (depending on the encoding of course) has some 'commands' you want to send to the browser then ... yes it can be done. -Original Message-

RE: 2 questions: hot keys and barcodes

2003-03-19 Thread Buckland, Ramon
Two separate things...one, want to config a f key to open a browser window. Antony answered this, Tried it. Worked with F8. :-) There are programs that do this job for _any_ application if you need to use an F key reserved by the OS or environment. Keyboard listeners/Program launchers..

RE: textarea line numbering

2003-03-19 Thread Buckland, Ramon
Ooh I love a challenge, :-) Here you go matthew line numbers next to a scrollable textarea implemented client side using Javascript, onscroll, onkeyup and some mirrors. http://www.thebuckland.com/staging/line_numbers_for_textarea.html -Original Message- From: Matthew Walker

RE: textarea line numbering

2003-03-19 Thread Buckland, Ramon
awesome! I can't believe it works so well! (Wait until I think of something a bit harder...) go for it!, it keeps the mind off of other happenings in the world :-) -Original Message- From: Buckland, Ramon [mailto:[EMAIL PROTECTED] Sent: Thursday, 20 March 2003 5:09 p.m. To: CF-Talk

logic in CFC vs Java CFX

2003-03-18 Thread Buckland, Ramon
Hi All, I have a Custom CFX Tag written in java (in house) and have wrapped it's access in a CFC. Because there is also some logic in the CFC before it calls the custom tag, should i just ditch the CFC and transfer the logic to the CFX ? Will I gain in performance (yes I am trying to write

objects in application memory

2003-03-12 Thread Buckland, Ramon
We have an application which uses an object in generating page output every request. eg: cfset somevar = myobj.function(param1, param2, param3) I have rewritten it just now as a CFC (originally Java) and plan to invoke it via CFObject. It is generally called upon about 5 times within a

RE: CF and PhotoShop

2003-03-12 Thread Buckland, Ramon
Depending on what type of processing you want, you may find the solution in ImageMagick http://www.imagemagick.org/ There is abit of work done with ImageMagick and ColdFusion tags, just google for more info. -Original Message- From: Owens, Howard [mailto:[EMAIL PROTECTED] Sent:

RE: Writing Query Results to a CSV using CFFILE

2003-03-11 Thread Buckland, Ramon
Wendy, My initial guess is the delay in the CFFILE, disk IO. Try buffering the rows.. Along with this suggestion below you could try converting it to a CFSCRIPT. MX apparently runs CFScript quicker too (I think ? ) Though you would have to write a function for cffile.

RE: Writing Query Results to a CSV using CFFILE

2003-03-11 Thread Buckland, Ramon
Message- From: Buckland, Ramon [mailto:[EMAIL PROTECTED] Sent: Wednesday, 12 March 2003 10:34 AM To: CF-Talk Subject: RE: Writing Query Results to a CSV using CFFILE Wendy, My initial guess is the delay in the CFFILE, disk IO. Try buffering the rows.. Along with this suggestion

RE: administrator wont open

2003-03-11 Thread Buckland, Ramon
Sounds like the .cfm{l} file is not registered in Apache to be handled by ColdFusion (CFMX install should have done it) What are the contents of the file if you _do_ save it ? Is it the ColdFusion file ? Does a normal coldfusion page work (not just admin) try a simple

RE: administrator wont open

2003-03-11 Thread Buckland, Ramon
Looks like it didn't install properly.. is Apache in a standard location ? Is there two Apache Servers on the box ? One last thing would be to checkfor the existence of 'coldfusion' in the httpd.conf file. Some examples of configs I have seen don't have .cfm mentioned. In this situation I would