RE: 64 bit imagecr3

2009-03-02 Thread Pat Wenke
Add this (or your jar location): C:\Program Files (x86)\Efflare\ImageCR3Service\imagecr3.jar To: CF Admin -> Server Settings -> Java and JVM -> ColdFusion Class Path You'll probably need to restart CF. -Original Message- From: Rick Root [mailto:rick.r...@webworksllc.com] Sent: Monday

RE: problem with cferror, trycatch and iis7

2009-03-02 Thread Pat Wenke
Root [mailto:rick.r...@webworksllc.com] Sent: Monday, March 02, 2009 3:17 PM To: cf-talk Subject: Re: problem with cferror, trycatch and iis7 On Mon, Mar 2, 2009 at 3:40 PM, Pat Wenke wrote: > > Either you don't have the tag installed / configured correctly, or it's the > fact that you

RE: problem with cferror, trycatch and iis7

2009-03-02 Thread Pat Wenke
Either you don't have the tag installed / configured correctly, or it's the fact that you're running 64 bit. The com/allaire/cfx/CustomTag null gives it away. Contact efflare for the 64 bit version of imageCR3 (it now runs as a service). Don't forget to run the service under an account that

RE: problem with cferror, trycatch and iis7

2009-03-02 Thread Pat Wenke
CF Admin -> Server Settings -> Settings -> Enable HTTP status codes -Original Message- From: Rick Root [mailto:rick.r...@webworksllc.com] Sent: Monday, March 02, 2009 11:21 AM To: cf-talk Subject: problem with cferror, trycatch and iis7 I have a couple issues with error trapping on o

RE: SQL Server 2005 Datasource failing

2009-02-17 Thread Pat Wenke
Is TCP/IP enabled on your SQL 2005 instance? By default, TCP/IP connections are disabled in SQL 2005. - Pat -Original Message- From: Brad Wood [mailto:b...@bradwood.com] Sent: Tuesday, February 17, 2009 10:32 PM To: cf-talk Subject: Re: SQL Server 2005 Datasource failing What port i

RE: CF 8 Performance Problems?

2008-03-21 Thread Pat Wenke
Correct. I should have made that point in my original post. It's Sun's bug, not Adobe's. We originally thought this was a CF 8 issue (back when CF8 was released), which is why I began working with Adobe (10/4/2007), and why they logged a "bug" (11/26/2007). They suggested, if a JVM change is not a

Re: CF 8 Performance Problems?

2008-03-21 Thread Pat Wenke
This sounds exactly like the problem we ran into with one of our apps that is under very high load. Template cache settings and JVM settings do not make a noticeable difference one way or another in this case. I worked closely with Adobe support on this issue (bug 70837). Via some very simple

Re: CF 8 Performance Problems?

2008-03-21 Thread Pat Wenke
This sounds exactly like the problem we ran into with one of our apps that is under very high load. Template cache settings and JVM settings do not make a noticeable difference one way or another in this case. I worked closely with Adobe support on this issue (bug 70837). Via some very simple

RE: One more try... 7 >= 7?

2005-05-27 Thread Pat Wenke
Rick - Try setting max pooled statements to 0 in CF admin for the problematic datasource(s). I've seen "x >= x" errors and "Variable cannot be converted to requested type" errors when adding / removing columns from tables. Changing the max pooled statements setting fixed our problem. See more

RE: One more try... 7 >= 7?

2005-05-27 Thread Pat Wenke
What version of CFMX? I've seen similar with older drivers (pre 6.1 Updater). -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Friday, May 27, 2005 7:57 AM To: CF-Talk Subject: One more try... 7 >= 7? Anyone ever seen this? Error Occurred While Processing Request 7

Jar Files

2005-04-14 Thread Pat Wenke
We're running CFMX 6.1 on top of JRun and making use of a lot of Java classes. The classes are packaged in JAR files in the /WEB-INF/lib directory. Dropping an updated jar file in the lib directory causes in memory instances of the classes in the jar file to not work. For instance, the Java clas

RE: 500 Internal Server Error

2005-02-04 Thread Pat Wenke
Do you have "Enable HTTP status codes" turned off in CF Admin? We had the same problem until I saw a post from Ben Forta regarding the setting. Ever since I turned it off, we haven't had a problem. -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: Friday, Fe

RE: weird but consistent behavior

2004-08-13 Thread Pat Wenke
t is very long and parsing it represents a significant effort." Stephen -Original Message- From: George Abraham [mailto:[EMAIL PROTECTED] Sent: Friday, August 13, 2004 2:08 PM To: CF-Talk Subject: Re: weird but consistent behavior Hmm, I wonder what that does to performance though.

RE: weird but consistent behavior

2004-08-13 Thread Pat Wenke
George - We were getting the same errors when adding / removing columns from the DB.  You might want to try the following (if you're still wanting to use and SELECT *) from Stephen Dupre at Macromedia: "Maybe the statement cache is getting us.  Try shutting off "Max Pooled Statements" (set t

RE: Where is CFSCHEDULE data stored?

2004-08-05 Thread Pat Wenke
cf_root\lib\neo-cron.xml -Original Message- From: Alexander Sherwood [mailto:[EMAIL PROTECTED] Sent: Thursday, August 05, 2004 10:09 AM To: CF-Talk Subject: Where is CFSCHEDULE data stored? Anyone know where the data for tasks scheduled with CFSCHEDULE is stored? Thanks! -- Alex   

RE: update code not working

2004-08-02 Thread Pat Wenke
Actually, just 1...I read that too quickly. -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 4:03 PM To: CF-Talk Subject: update code not working I have an bit of code to update an edited record.  I'm getting the error "[Oracle]ORA-00927: mis

RE: update code not working

2004-08-02 Thread Pat Wenke
You are missing 2 commas. -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 4:03 PM To: CF-Talk Subject: update code not working I have an bit of code to update an edited record.  I'm getting the error "[Oracle]ORA-00927: missing equal sign" i

RE: SQL Find

2004-08-02 Thread Pat Wenke
CHARINDEX ( expression1 , expression2 [ , start_location ] ) PATINDEX ( '%pattern%' , _expression_ ) Check SQL Server BOL for more info on how to use these functions. -Original Message- From: Lee [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 3:37 PM To: CF-Talk Subject: SQL F

RE: [CFCDev] CFC webservice objects

2004-07-30 Thread Pat Wenke
Do you have a good understanding of OOP encapsulation?  If you're looking for the properties of this object, you won't be able to get to them using aCat.ID aCat.categoryName aCat.status Rather, you'll need to get them by using the get() methods, i.e. aCat.getID() aCat.getCategoryName() aCat.get