bypassing the site-wide error handler

2014-12-08 Thread Chris Norloff
Hi, when can an application bypass the CF v9 site-wide error handler? We host an app, that uses cftry/catch, but that appears to not handle the errors correctly. The errors do not trigger the site-wide error handler, and the errors are displayed to the users. The site-wide error handler works

RE: JVM auto-restart on Out of Memory error?

2008-07-10 Thread Chris Norloff
users. I just went through hell trying to PREVENT coldfusion from restarting all the time due to memory problems... Rick On Wed, Jul 9, 2008 at 12:00 PM, Chris Norloff [EMAIL PROTECTED] wrote: I'd like to set our JVMs to automatically restart when we get a Java out of memory error. I believe I

JVM auto-restart on Out of Memory error?

2008-07-09 Thread Chris Norloff
I'd like to set our JVMs to automatically restart when we get a Java out of memory error. I believe I had this before at another job, but now can't find the JVM options for this (CFMX 7.02, JVM 1.4.2_11, on Windows 2003 Server). Sun describes some great options, but they're on later JVM versions.

RE: JVM Tuning and cthreads... I'm Back

2008-06-13 Thread Chris Norloff
Well, in CF7, you control the thread life in jrun.xml (in C:\JRun4\servers\cfusion\SERVER-INF for multi-server config on Windows). There's two places to change the settings, in the SchedulerService and the ProxyService (pick the right ProxyService for your web server). One is for the web server

busy taskmgr/explorer - JRun not start

2008-06-13 Thread Chris Norloff
We've got a recurring problem on Windows Server 2003 VMWare instances: taskmgr.exe and explorer.exe get busy (together using 25-35% CPU with the server idle, no users) and JRun is very slow starting, or won't start. The taskmgr/explorer busy-ness is not likely the problem itself, but we see it

RE: Access Denied trying to build coldfusion archive (CAR)

2008-04-30 Thread Chris Norloff
PM, Chris Norloff [EMAIL PROTECTED] wrote: I don't know about the name itself, but does CF have rights to write in the root of C:\ ? Chris -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 29, 2008 3:45 PM To: CF-Talk Subject: Access Denied trying

RE: Access Denied trying to build coldfusion archive (CAR)

2008-04-29 Thread Chris Norloff
I don't know about the name itself, but does CF have rights to write in the root of C:\ ? Chris -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 29, 2008 3:45 PM To: CF-Talk Subject: Access Denied trying to build coldfusion archive (CAR) so I'm

RE: JRun 4 updates for ColdFusion Servers

2008-04-03 Thread Chris Norloff
We have JRun Updater 7 (CFMX Ent 7.0.2) on 2 Dev and 2 Test servers. No issues that we've seen. We've had some other issues, but they don't appear related to Updater 7. We're due to put it on Production in a few days. Chris -Original Message- From: AJ Mercer [mailto:[EMAIL PROTECTED]

RE: Installing CF7 Multiserver configuration

2008-03-27 Thread Chris Norloff
Sounds like the connector to the web server isn't configured correctly. CFMX handles IIS easily, Apache may require some manual intervention. To run the connector config: java -jar wsconfig.jar By default, wsconfig.jar is in \JRun4\lib. The connector itself is the .dll file in

RE: CFC protect from SQL Injection?

2008-02-22 Thread Chris Norloff
Great info, thanks Paul. Here's a good link describing a SQL Injection attack during a penetration test. Good for those who say I can't do it therefore no attacker could do it. http://www.unixwiz.net/techtips/sql-injection.html Our problem is existing code with lots of Form and URL variables

RE: Unknown connection error problem w/ ColdFusion 4.5

2008-02-22 Thread Chris Norloff
I don't have any solutions, though I'd try different versions of drivers, and ask the DB folks to run a trace on it to see if you can get some data. You might try different datasource connection settings (maintain connections, or not ... etc.). It might take a bit of trial and error to find

RE: CFC protect from SQL Injection?

2008-02-22 Thread Chris Norloff
: CFC protect from SQL Injection? My point is that this won't work in CF, because CF auto escapes single quotes in variables... Russ -Original Message- From: Chris Norloff [mailto:[EMAIL PROTECTED] Sent: Friday, February 22, 2008 11:15 AM To: CF-Talk Subject: RE: CFC protect from SQL

CFC protect from SQL Injection?

2008-02-21 Thread Chris Norloff
Does the parameter typing in a CF Component protect you from a SQL Injection attack? Below, both variables cfcStage_From and cfcID have their type set. It seems cfcStage_From would be protected as it's typed as numeric. However, cfcID is typed as string, and it seems it could contain a

Re: memory issues

2007-12-20 Thread Chris Norloff
CFFILE reads the entire file into memory before acting on it. Even appending to the file requires it be read into memory first. That's where your memory usage is likely coming from -- though not sure why it's not being freed in a timely manner. Chris On Dec 17, 2007, at 7:58 PM, Jonathon

XSS patch Global Script Protect

2007-06-07 Thread Chris Norloff
This fix is needed if Global Script Protection is not enabled. I wonder if it's a vulnerability if Global Script Protection is ON and a specific application disables the script protection using the scriptProtect parameter of the cfapplication tag. Anybody know? Patch for XSS when Global

Re: defeating offline form posts

2007-05-09 Thread Chris Norloff
What if the HTTP POST didn't get as far as ColdFusion? We have an ongoing case where the web server throws a 500 error, and we don't know why the page doesn't get to CF. thx Chris -- Original Message -- From: Ken Wexel [EMAIL PROTECTED] Reply-To:

Re: defeating offline form posts

2007-05-09 Thread Chris Norloff
What if the HTTP POST didn't get as far as ColdFusion? We have an ongoing case where the web server throws a 500 error, and we don't know why the page doesn't get to CF. thx Chris -- Original Message -- From: Ken Wexel [EMAIL PROTECTED] Reply-To:

Re: scheduled jobs run twice

2007-04-30 Thread Chris Norloff
Thanks. I recall finding something like that when Googling for info. Unfortunately, this is a weekly job and the execute every X hours mode goes up only to 99 hours. but thanks anyway! Chris -- Original Message -- From: Dana Kowalski [EMAIL PROTECTED]

scheduled jobs run twice

2007-04-27 Thread Chris Norloff
Has anybody seen scheduled jobs run twice? (CFMX 7.0.2 on Solaris 9)Here's the scheduler.log entry showing the job running then rescheduling for the current time instead of the next time. This has happened on several jobs, but not on all jobs. I found a reference to not starting jobs at

500 errors -- 'form spammers'

2007-04-05 Thread Chris Norloff
We're getting more and more HTTP 500 errors from 'form spammers'. They are evidently trying to HTTP POST their spam to our form action pages. The Apache/IHS web server is logging it as a 500 error. CFMX 7.0.2 isn't logging any errors. The error seems to appear before CFMX processes the page,

RE: Changes to Daylight Savings Time in 2007 may affect your data bases (DB2, Oracle and others)

2007-01-26 Thread Chris Norloff
That doesn't sound very likely! With the vulnerability classified as Remotely exploitable and allowing a denial of service without authentication it sounded like something a user could do. thanks for the read, Chris -- Original Message -- From: Dave

RE: Changes to Daylight Savings Time in 2007 may affect your data bases (DB2, Oracle and others)

2007-01-25 Thread Chris Norloff
Yes ... and 1.4.2_11 has a low-rated security vulnerability. http://nvd.nist.gov/nvd.cfm?cvename=CVE-2003-1301 http://sunsolve.sun.com/search/document.do?assetkey=1-26-102732-1 -- Original Message -- From: Everett, Al \(NIH/NIGMS\) [C] [EMAIL

Re: vulnerability: source code disclosure (apsb07-02)

2007-01-11 Thread Chris Norloff
in single server mode. I will have to reinstall CFMX 7 on a staging machine to confirm this. Teddy On 1/10/07, Chris Norloff [EMAIL PROTECTED] wrote: my email to Adobe (anybody experience similar?): Your instructions for ColdFusion MX 7.01 and 7.02 server in http://www.adobe.com/support

vulnerability: source code disclosure (apsb07-02)

2007-01-10 Thread Chris Norloff
my email to Adobe (anybody experience similar?): Your instructions for ColdFusion MX 7.01 and 7.02 server in http://www.adobe.com/support/security/bulletins/apsb07-02.html don't appear to be correct. It specifies looking for a file in {jrun_root}, but there wouldn't be a jrun_root on a single

Re: How to tell what hot fixes have been applied (CFMX 7.02)

2006-11-13 Thread Chris Norloff
You can see the hot fix .jar files in the java class path, in the system information display. best, chris -- Original Message -- From: DURETTE, STEVEN J \(ASI-AIT\) [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Mon, 13 Nov 2006 10:02:26

RE: CF Wiki

2006-11-01 Thread Chris Norloff
We tried CFWiki (v1.3) but decided against it. I was seeking something to collect processes lessons-learned from our SysAdmin team - the sort of thing you'd email to teammates to say 'I just learned this way of making things easier'. I found the editing and user tracking to be about the same

RE: CFMX stopped logging

2006-10-20 Thread Chris Norloff
? Or the permissions for the log directories changed? -Original Message- From: Chris Norloff [mailto:[EMAIL PROTECTED] Sent: Thursday, October 19, 2006 12:18 PM Our CFMX stopped logging to application.log, mail.log, and exception.log. I can't correlate it with anything we did

CFMX stopped logging

2006-10-19 Thread Chris Norloff
Our CFMX stopped logging to application.log, mail.log, and exception.log. I can't correlate it with anything we did, and the other logs are fine. I deleted the old logs and restarted CFMX - but it didn't start new log files. I tried cflog and it initialized and wrote to application.log, but

RE: java.lang.OutOfMemoryError: unable to create new native thread

2006-04-14 Thread Chris Norloff
We had out-of-memory problems with CFMX 6.1 udpater, and using metrics determined it wasn't growing the heap as it was supposed to. (We've stuck with the same settings on CFMX 7). I'd try starting the heap at the same size as the maximum, and also experiment with starting the Permanent

cfx tag in CFMX 7

2006-04-03 Thread Chris Norloff
). The error we were getting was java.lang.NoClassDefFoundError: com/allaire/cfx/CustomTag and that was due to not finding cfx.jar best, Chris Norloff ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236805 Archives: http

jvm.config corrupted by CFMX Admin

2006-03-30 Thread Chris Norloff
, do it then to confirm it'll be accepted. - edit jvm.config by hand to keep CFMX Admin from touching it! Chris Norloff ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236535 Archives: http://www.houseoffusion.com

read CFMX bugs at Adobe?

2006-03-30 Thread Chris Norloff
Can we read what bugs have been submitted to Adobe about CFMX? I'd like to see if what we experienced has been reported before, and to see how the bug I submitted is treated. Our upper-level managers would like to know too :-( thanks, Chris Norloff

Re: read CFMX bugs at Adobe?

2006-03-30 Thread Chris Norloff
Thanks, that helps. I see it's just known/confirmed issues with existing fixes or workarounds - but that's better than nothing. Makes forums like these even more important! :-) Chris Norloff -- Original Message -- From: Dave Carabetta [EMAIL PROTECTED

Re: overflow attack return-to-libc when starting CFMX 7

2006-03-10 Thread Chris Norloff
Just to followup (and for the archives). This was fully an Entercept issue - in one of the reports it said it throws this error when starting virtual machines (kinda like a JVM, maybe!). thanks for the responses, Chris Norloff -- Original Message -- From

overflow attack return-to-libc when starting CFMX 7

2006-01-27 Thread Chris Norloff
According to Entercept, when we try to start CFMX 7 there's a buffer overflow. Entercept stops CFMX from starting, saying this is a hack attempt. We aren't having this issue on another seemingly identical machine. Anybody have an ideas on this? thanks, Chris Norloff CFMX 7.0.1 (with CHF1

Re: CFMX7 Integration with J2EE - How complete is the integration?

2005-07-11 Thread Chris Norloff
CFMX *is* Java In fact, it's Sun-certified J2EE compliant. That's pretty pure. Chris Norloff -- Original Message -- From: Mosh Teitelbaum [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Thu, 30 Jun 2005 14:17:36 -0400 All: I have a client

RE: CFMX7 Integration with J2EE - How complete is the integration?

2005-07-11 Thread Chris Norloff
can push the neo*.xml files out quite easily. Chris Norloff -- Original Message -- From: Mosh Teitelbaum [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Thu, 30 Jun 2005 16:43:51 -0400 All: Thanks for the replies. I don't think the admin

Re: Dump CFCATCH

2005-06-28 Thread Chris Norloff
The HotFix fixes the [unknown type] error if you've applied the Updater to v6.1. [empty string] sounds like there's nothing in the cfcatch scope - it's a transient scope that exists only right after a cfcatch is called Chris Norloff -- Original Message

Re: Dump CFCATCH

2005-06-28 Thread Chris Norloff
ColdFusion MX 6.1 Updater: Hot fix for cfdump throwing unknown type error for cfcatch structure http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=1a9c83c -- Original Message -- From: Trevor Orr [EMAIL PROTECTED] Reply-To:

RE: Neo-query.xml curruption on 6.1 updater

2005-06-07 Thread Chris Norloff
in the CFMX Admin - even if you make no changes. Chris Norloff -- Original Message -- From: James Holmes [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Tue, 7 Jun 2005 12:40:49 +0800 Even with 6.1 updater (on CF Enterprise standalone, Solaris 8

Re: Robot.txt question... security issue?

2005-05-27 Thread Chris Norloff
, then robots.txt will work ... at least for well-behaved spiders. Chris Norloff -- Original Message -- From: Che Vilnonis [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Fri, 27 May 2005 10:30:08 -0400 A client of ours recently had a security audit

Re: RESOLVED CFMX GC every 60 sec.?

2005-05-24 Thread Chris Norloff
the servers from well-meaning programmers ... :-) Chris Norloff -- Original Message -- From: Sean Corfield [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Fri, 20 May 2005 07:48:18 -0700 On 5/20/05, Chris Norloff [EMAIL PROTECTED] wrote: It turns out

RESOLVED CFMX GC every 60 sec.?

2005-05-20 Thread Chris Norloff
It turns out it was probably an explicit garbage collection call from one of the applications. As soon as I disabled the ability to explicitly call a GC (just let the JVM manage its own memory) the GC dropped to once an hour on an idle server. Much better. thanks, Chris Norloff

CFMX GC every 60 sec.?

2005-05-18 Thread Chris Norloff
: this is with the server idle. Now I need to see it under load. thanks, Chris Norloff -- Heap PSYoungGen total 87168K, used 84000K [0xb900, 0xbe55, 0xc900) eden space 3008K, 0% used [0xb900,0xb900,0xb92f) from space

Re: JRun closed connection Error on CFMX

2005-05-18 Thread Chris Norloff
There's a Macromedia TechNote that deals with this. Search for closed connection Chris -- Original Message -- From: Daniel Kang [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Mon, 16 May 2005 22:03:17 -0400 I am getting these errors from

RE: CFMX GC every 60 sec.?

2005-05-18 Thread Chris Norloff
XX:+PrintGCTimeStamps -XX:+PrintHeapAtGC -XX:+PrintGCDetails -Xms256m. I know they are probably for debugging but they will have a detrimental effect on performance. -Original Message- From: Chris Norloff [mailto:[EMAIL PROTECTED] Sent: 18 May 2005 13:27 To: CF-Talk Subject: CFMX GC

RE: CFMX GC every 60 sec.?

2005-05-18 Thread Chris Norloff
-talk@houseoffusion.com Date: Wed, 18 May 2005 14:13:57 +0100 Is this MX 6.1? Are you on SQL Server? IIS? Is the CF Server fully patched? N -Original Message- From: Chris Norloff [mailto:[EMAIL PROTECTED] Sent: 18 May 2005 14:11 To: CF-Talk Subject: RE: CFMX GC every 60 sec.? Thanks

RE: CF 7 on WebSphere - what's the beef with Clustering?

2005-04-28 Thread Chris Norloff
on all nodes! This worked with 30 to 90 instances of CFMX in our cluster (WAS v5.0 ND and v5.1 ND). Chris Norloff -- Original Message -- From: Calvin Ward [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Thu, 28 Apr 2005 13:59:35 -0400

SOLVED: CFMX7: No JRun JMC?

2005-04-15 Thread Chris Norloff
have been the license number I was using (which *should* have worked) and the CFMX7 version from DevNet. I pulled out the CD version and the volume license number we have and used those. thanks, Chris Norloff -- Original Message -- From: Dave Watts [EMAIL

CFMX7: No JRun JMC?

2005-04-13 Thread Chris Norloff
://[servername]:8000/j_security_check;jsessionid=[x] Anybody else run into this? I thought with CFMX 7 Enterprise you get a full, licensed version of JRun - is this correct? many thanks, Chris Norloff ~| Logware

Re: CFMX7: No JRun JMC?

2005-04-13 Thread Chris Norloff
Clarification: we installed CFMX7 in the 'multiple instances' mode. -- Original Message -- From: Chris Norloff [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Wed, 13 Apr 2005 09:55:58 -0400 We installed CFMX 7 (Enterprise (DevNet

Re: cferror question

2005-03-31 Thread Chris Norloff
You can use the Missing Template Handler in CFMX Admin. Chris -- Original Message -- From: Will Tomlinson [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Wed, 30 Mar 2005 20:40:29 -0400 cferror DEFINITELY will not catch missing file errors. I

Re: cferror question

2005-03-31 Thread Chris Norloff
Darn. You can use cftry/catch, with a catch type of missinginclude, but this requires cftry/catch on the page, and can't be implemented globally (it's intended for fine-grain exception handling) Chris Norloff -- Original Message -- From: Will Tomlinson

Re: JSESSIONID - Help

2005-03-31 Thread Chris Norloff
The JSESSIONID cookie is set by the J2EE app server; it's not a CFMX function. Use J2EE session variables just tells CFMX not to set it's own CFID/CFToken cookies, and to rely instead on the JSESSIONID cookie. Chris Norloff -- Original Message -- From

Re: Set the Log level in CF5

2005-03-31 Thread Chris Norloff
with 'View Source'. Though you may not want this on Production! ) Chris Norloff -- Original Message -- From: Thomas Chiverton [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Thu, 31 Mar 2005 14:15:51 +0100 On Wednesday 30 Mar 2005 17:57 pm

RE: Set the Log level in CF5

2005-03-31 Thread Chris Norloff
You can log things in the same directory as application.log if you want. Whether it's part of 'Custom Logs' or 'native logging' doesn't affect your ability to get error/exception information into logs to review. Chris Norloff -- Original Message

RE: J2EE Sessions

2005-01-28 Thread Chris Norloff
Servers. Search the Macromedia ColdFusion knowledge base for J2EE and you'll find a lot of info. Chris Norloff -- Original Message -- From: Brook Davies [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Thu, 27 Jan 2005 18:47:25 -0800 I'm trying

Re: Session vs. Client Variables

2004-12-30 Thread Chris Norloff
for J2EE, WebSphere, Oracle 10g, 3,000 to 4,000 concurrent users, database-intensive application) Chris Norloff -- Original Message -- From: [EMAIL PROTECTED] ... But as a test, I tried switching to client variables (using database) and we took a serious

Re: REPOST: CFHEADER/CFCONTENT over SSL on IIS with IE

2004-12-13 Thread Chris Norloff
ieHTTPheaders http://www.blunck.info/iehttpheaders.html I haven't tried it myself, but it's supposed to do what you want. Here's one for Mozilla, in case you're interested: http://livehttpheaders.mozdev.org/ I had to re-install Mozilla after using it. Chris Norloff -- Original Message

Re: Using a J2EE Application Server

2004-12-13 Thread Chris Norloff
/coldfusion/j2ee/index.html#100 http://www.macromedia.com/devnet/mx/coldfusion/java_j2ee.html best, Chris Norloff -- Original Message -- From: Andrew Dixon [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Mon, 13 Dec 2004 14:56:30 + Hi All. I'm

Re: CFMX 6.1 - java.lang.NullPointerException

2004-12-09 Thread Chris Norloff
, that definitely is the cfapplication tag in Application.cfm Chris Norloff -- Original Message -- From: Umer Farooq [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 08 Dec 2004 11:29:17 -0500 Errr.. this is still driving me crazy. It has gotten

Re: cferror question

2004-12-09 Thread Chris Norloff
Looks okay to me. The next thing I'd do is put cfdump var=#cferror# in the exception handling template to see the cferror scope variables - maybe something's not exactly as you expect (and you might check the cfcatch scope, too). Chris Norloff -- Original Message

Re: Datasource service not available

2004-12-07 Thread Chris Norloff
protection. Then anytime you access the datasources area in CFMX Admin, it writes to neo-query.xml. I hope whoever programmed that feature has long since been fired. Chris Norloff -- Original Message -- From: James Holmes [EMAIL PROTECTED] Reply-To: [EMAIL

Re: Datasource service not available

2004-12-07 Thread Chris Norloff
If I recall correctly, fixing a corrupt file that disables CFMX is considered an enhancement by Macromedia. [sigh] Chris Norloff -- Original Message -- From: Douglas Knudsen [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Tue, 7 Dec 2004 08:57:05

RE: Datasource service not available

2004-12-07 Thread Chris Norloff
to be used. (Just specifying neo-query.xml as readonly doesn't work as CFMX strips the readonly protection off) Chris Norloff -- Original Message -- From: Dave Watts [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Tue, 7 Dec 2004 14:33:11 -0500 Does

CFMX reading javascript comments (!?)

2004-12-03 Thread Chris Norloff
else experience this? I couldn't find any info at Macromedia, the Macromedia CF discussion area, or FusionAuthority archives. thanks, Chris Norloff ~| Special thanks to the CF Community Suite Silver Sponsor - RUWebby http

Re: CFMX reading javascript comments (!?)

2004-12-03 Thread Chris Norloff
2004 11:28:19 -0500, Chris Norloff [EMAIL PROTECTED] wrote: We've got a weird thing happening - CFMX is reading javascript code that we've commented out, and throwing an error because of it. (CFMX for J2EE, v6.1 (no updater), on WebSphere 5.1.0.3) The javascript code is inside cfoutput tags

Re: Creating a client variable timeout.

2004-12-03 Thread Chris Norloff
Many ways to do that. Personally, I'd use a session variable as a flag for a logged-in user, then timeout session variables in 20 min. (if that meets your objective). You can put a javascript timer in the browser to alert the user when he's getting near his 20 min. timeout. Chris Norloff

Re: jsessionid cookies

2004-12-01 Thread Chris Norloff
to tell if there was an active session for that user, so he could go to the one app on WebSphere or the other app on Oracle. Chris Norloff -- Original Message -- From: Nick Cabell [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 01 Dec 2004 10

RE: jsessionid cookies

2004-11-30 Thread Chris Norloff
on a shared host would require some coordination, but seems feasible. best, Chris Norloff http://www.macromedia.com/support/coldfusion/ts/documents/tn18232.htm -- Original Message -- From: Nick Cabell [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date

Re: J2EE Sessions / session.urlToken

2004-10-13 Thread Chris Norloff
CFID/CFTOKEN are still used to identify client variables stored in the database. Check the help on urlSessionFormat, I think there's a switch to turn off the token append. best, Chris Norloff -- Original Message -- From: Jamie Jackson [EMAIL PROTECTED

Re: CF4.5 to CFMX

2004-09-02 Thread Chris Norloff
of the same variable on a URL line. CF 4.5 reads just the second one. CFMX figures you meant what you said and you end up with a value whose value is value,value Chris Norloff -- Original Message -- From: Russ [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED

Re: CFMX 6.1 and cisco load balance

2004-08-31 Thread Chris Norloff
with Cluster Cats. Chris Norloff -- Original Message -- From: Douglas Knudsen [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Mon, 30 Aug 2004 15:43:02 -0400 Ok, anyone got some pointers for setting this up?I've been googling around and looking at macr

Re: Unresponsive threads

2004-01-19 Thread Chris Norloff
That's the Timeout requests after (seconds) [blank] setting in CF Admin Chris Norloff -- Original Message -- From: Marlon Moyer [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Fri, 16 Jan 2004 12:28:32 -0600 I've been researching my logs and I'm

J2EE datasources hidden from client var storage

2003-12-18 Thread Chris Norloff
) manually edit the WEB-INF/cfusion/lib/neo-clientstore.xml file to designate a datasource for client variable storage. Keep a backup of that file! 2) create a separate CFMX-configured datasource for only client variables, and use the J2EE datasource for regular use. Chris Norloff CFMX v6.1

rogue line prevented compilation; no error reported

2003-12-11 Thread Chris Norloff
compiled. CFMX used the previously existing .class file if one is there. If a .class file wasn't there, CFMX reported that it couldn't find the .cfm file. 'nother lesson learned, Chris Norloff CFMX 6.1 on WebSphere App Server v5.0.2.1, Solaris 8, Oracle 9i cfif NOT variables.isPeriodical !--- Get

Re: CFMX61 and Oracle 8.1.7

2003-11-12 Thread Chris Norloff
Should work fine. You do need to be sure you have updated drivers - I think 8.1.7.2 or newer. There's a TechNote on it. Chris Norloff -- Original Message -- From: Stacy Young [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Wed, 12 Nov 2003 13:26:45

debugging turning itself off

2003-10-21 Thread Chris Norloff
Anybody experience debugging turning itself off when restarting CFMX or its Application Server? The Enable Debugging checkbox just becomes unchecked. Anybody? ... Bueller? ... Bueller? thanks, Chris Norloff CFMX v6.1 for J2EE, WebSphere v5, Solaris 8, Oracle 9i [Todays Threads

Re: CFMX 6.1 and Oracle 9i

2003-10-10 Thread Chris Norloff
The open cursors error can be fixed by the cursors setting in the Oracle DB itself. Not sure how to do it myself, I just ask our DBA's. :-) Chris Norloff -- Original Message -- From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Tue, 7 Oct 2003 11:58

CFMX on WAS - datasources

2003-10-07 Thread Chris Norloff
: With CFMX datasource, we select rowid we get the following results, which we should get. ROW_ID=AACcv7AANAAAY4DAAv With WAS (v4) datasource we get the following result. [EMAIL PROTECTED] Quite a difference! Chris Norloff CFMX v6.1 on WebSphere AppServer 5.0.2.1, Oracle 9i, on Solaris 8 [Todays

CFMX on 2nd instance of WebSphere?

2003-10-06 Thread Chris Norloff
the server you go to its bin directory and run setCmdLine.sh then go to the bin directory of the first instance and run startServer. Not intuituvely obvious, shall we say ... thanks, Chris Norloff CFMX v6.1 on WAS 5.0.2.1, Oracle 9i, Solaris 8 [Todays Threads] [This Message] [Subscription

Re: Load testing CFMX6.1

2003-09-29 Thread Chris Norloff
Thanks, Stacy. What drivers are you using, and to what database? I ask because we're running CFMX on WebSphere with Oracle drivers and have been running into some slowness issues, and lately some problems connecting to the database. thanks, Chris Norloff -- Original Message

Re: JSESSIONID Bug??

2003-09-27 Thread Chris Norloff
Well, the jsessionid cookie should be there on the SECOND request from the browser, because it'll be put there when the server responds to the first browser request.And it's based on browser session - if any browser windows are open, thenon-persistent jsessionid cookie will still be there.hope

Re: ColdFusion MX 6.1 Caching

2003-09-24 Thread Chris Norloff
Could it be a proxy caching issue? We had terrible troubles like this until we added this- !--- disable proxy cache, allow browser cache --- cfheader name=cache-control value=private Chris Norloff -- Original Message -- From: Jeff Houser [EMAIL

Re: Missing template handler (CFMX patch)

2003-09-24 Thread Chris Norloff
, but that's the way our system works (CFMX 6.1 on WebSphere AS on Solaris) Chris Norloff -- Original Message -- From: Thomas Chiverton [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 24 Sep 2003 12:37:27 +0100 Following the recent MX patch for the referer

pkg CFMX with other Java apps?

2003-08-14 Thread Chris Norloff
where to look? thanks, Chris Norloff ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user

Re: iPlanet CF Page Caching Problem

2003-07-15 Thread Chris Norloff
We ran into problems like that with iPlanet v4.1 SP5, but it was proxy caching that was causing the problem, not iPlanet caching. Adding this cfheader in Application.cfm solved the problem: !--- disable proxy cache, allow browser cache --- cfheader name=cache-control value=private Chris

Re: CF5 pegging at 100%

2003-06-20 Thread Chris Norloff
Here's things I like to check for hi cpu usage: cpu usage at about 50% - check for bad mail stuck in spool directory - zero-byte mail - mail with weird characters - check if disk is full -- Original Message

RE: Duplicate URL parameters?

2003-06-07 Thread Chris Norloff
If you know which parameter you want, you can use ListFirst or ListLast. If you want both parameters, then they're already in a comma separated list for you (in CFMX) Chris Norloff -- Original Message -- From: Tony Schreiber [EMAIL PROTECTED] Reply

RE: Trusted cache?

2003-06-06 Thread Chris Norloff
the Trusted Cache back on. However, we deal with a lot of .cfm files (6,000+ in the application), a number of sites (4, in geographical separate areas), and support personnel who don't always follow our instructions. Stop/start the CFserver after deploying files is almost always understood. Chris

Duplicate URL parameters?

2003-06-06 Thread Chris Norloff
). Has anybody done this? If I remove dupes from cgi.query_string and save cgi.query_string will CF read the query string correctly and get the URL parameters out of it? thanks, Chris Norloff ~| Archives: http

RE: Duplicate URL parameters?

2003-06-06 Thread Chris Norloff
Thanks, that's a neat idea! Chris Norloff -- Original Message -- From: Ezine [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Fri, 6 Jun 2003 14:23:55 -0400 You can do a listfirst(formfield) to get the first one of the duplicated parameters. so if you

Re: Trusted cache?

2003-06-05 Thread Chris Norloff
Be sure to stop/start the CFserver when you change any .cfm file, and make the Trusted Cache big - like 5 or 10 times the total size of your .cfm files. It definitely helps response time on a Production server. Chris Norloff -- Original Message -- From

multiple instances of CFMX [was: CF Server Mappings]

2003-04-04 Thread Chris Norloff
Strange. Any idea why? CFMX for J2EE is just an app in a container, so I'm surprised it isn't pretty straight forward to have two CFMX's on one machine. Of course, I might be even MORE surprised if I can't do it when we get it ourselves. thanks, Chris Norloff -- Original Message

RE: multiple instances of CFMX [was: CF Server Mappings]

2003-04-04 Thread Chris Norloff
Thanks, that makes sense. Though in our case we WANT to have two copies of the cfserver - so we can have two completely independent environments on one physical machine. Chris Norloff -- Original Message -- From: Barney Boisvert [EMAIL PROTECTED] Reply

Re: Run CF Studio 4 and 4.5 on same machine?

2003-04-04 Thread Chris Norloff
No, I don't think you can run both copies of CFserver on one physical machine. CFMX for J2EE is the first version of CF that can have more than one copy of the CFserver running on one physical machine. Chris Norloff -- Original Message -- From: Jim

Re: Missing Template Handler in CFMX not working

2003-04-03 Thread Chris Norloff
and includes the complete path name, including the filename. HTH, Chris Norloff -- Original Message -- From: Cameron Childress [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] date: Thu, 3 Apr 2003 08:20:22 -0500 CFMX Linux UP2 I defined a missing template

Re: CF Server Mappings

2003-04-03 Thread Chris Norloff
for our error handling, which hardly changes. We use relative addresses for everything else. Looking forward to our transition to CFMX for J2EE and multiple instances of CF! Chris Norloff -- Original Message -- From: Matt Kornguth [EMAIL PROTECTED] Reply

Re: Oracle CF5

2003-04-01 Thread Chris Norloff
was trying to access tnsnames.ora too often. Putting the connectstring info into the CFQUERY fixed that. Also, I've heard of using sql trace/TKPROF to debug slow Oracle queries. I haven't used it myself, but info about it should be in the Oracle docs. Chris Norloff -- Original Message

Re: CF 5 Oracle Best Pactices

2003-03-25 Thread Chris Norloff
We've used Oracle with CF 4.5 SP2 for a while - I'd recommend going with Oracle 8i (8.1.7) and native drivers. BTW, one of the 8.1.6 Oracle drivers (8.1.6.2 ?) has a memory leak. Chris Norloff -- Original Message -- From: Robert Shaw [EMAIL PROTECTED

  1   2   3   4   >