CFMX fails to respond under high load with IIS5

2003-04-03 Thread Buckland, Ramon
erThreads to up above a few thousand ? 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 googl

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 fram

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 cookie

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 "Micros

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' in

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: 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 [mailto:[

RE: application.cfm

2003-03-26 Thread Buckland, Ramon
I beleive so, but just to be good, put a comment in there eg: > -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 may be stating the obvious here but just checking. > >

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 's after content had been set.. thus being able to put footers at the bottom. my point, yes it can be done, if DynAPI

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=messages&threadid=22567&forumid=4&refresh=0 :-) We too use an SQL server but my exhaustive tests came up negative to an

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) > -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 > > > I'm guessing cfo

RE: CFMX crashes with high load on cfwddx

2003-03-20 Thread Buckland, Ramon
hing about it. > Some MM folks here might 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

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. We use WDDX all over the site as our data layer by retreiving through cfhttp. I tested the cfhttp connections but it all came down to this example. (no cfhttp at all)

RE: textarea line numbering

2003-03-19 Thread Buckland, Ramon
> Wow! That's 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] >

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 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 [mailt

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.. goog

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- >

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

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 b

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: T

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 pag

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

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 .cf

RE: Writing Query Results to a CSV using CFFILE

2003-03-11 Thread Buckland, Ramon
is purring as it should) is CFFILE. As Barney and Dave mentioned, reducing the CFFILE's would be your goal and I would caution holding the whole string in memory as that too produced a bottleneck for us. YMMV. cheers ramon > -Original Message- > From: Buckland, Ramon [ma

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. http://www.macromedia.com/