Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Steven Durette
Correct. If you use request or exception error types they cannot use any other cfml. You can see the cferror specs at http://www.cfquickdocs.com/cf8/#cferror Sorry no cfmail with request and validation. Steve ~| Order the

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread nick way
e you saying i could only point to an "apperrorhandler.html" file? not "apperrorhandler.cfm? (that'd be a shame as my apperrorhandler.cfm? emails me to tell me about the error so i can sort it. Or perhaps the issue is related to "Any other cell in those pages will cause

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Steven Durette
That should read any other cfml. Sent from my iPhone On Dec 7, 2010, at 11:38 AM, Steven Durette wrote: > > Nick, > > Request and validation errors can only use cferror to redirect to HTML files > that can include cferror references. Any other cell in those pages will caus

Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Steven Durette
Nick, Request and validation errors can only use cferror to redirect to HTML files that can include cferror references. Any other cell in those pages will cause your error page to generate an error. Steve Sent from my iPhone On Dec 7, 2010, at 11:24 AM, nick way wrote: > > h

custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread nick way
hi guys For security (and appearance) reasons I don't ever want my users to be shown the default CF error message. Therefore in application.cfm I have the following: My understanding is that *any* error message will result in the error being handled by "myerrorhandler.cfm&

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-05 Thread Carl Meyer
Just noticed the answer in other thread. Interesting solution Mack. > Wow very interesting and difficult problem. I am a bit late in reading > this detail and have nothing to add over what others have covered. > Curious is it fixed and what was to solution? > Regards, Carl. > ~~~

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-05 Thread Carl Meyer
now about 5 times, I get the same error (with zero details!) everytime. >I've tried installing to a new partition - same error. I've logged on with a >new admin account and installed from there, same error. I've tried multiple >JVMs, same thing. > >If I open a command pro

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-04 Thread Brook Davies
Changing the case of the actual template file names fixed it. Changing the references in the code did not. Brook -Original Message- From: Bobby Hartsfield [mailto:bo...@acoderslife.com] Sent: December-03-10 2:50 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-04 Thread Bobby Hartsfield
riday, December 03, 2010 10:54 AM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED] The initial webservice error did not go away after the msvcr71.dll was updated. It was unrelated. For the record, the errors starting happening on our webservice after the

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-04 Thread Mark A. Kruger
: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED] The initial webservice error did not go away after the msvcr71.dll was updated. It was unrelated. For the record, the errors starting happening on our webservice after the 8.01 upgrade and involved the complex return types. The error

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-03 Thread Brook Davies
The initial webservice error did not go away after the msvcr71.dll was updated. It was unrelated. For the record, the errors starting happening on our webservice after the 8.01 upgrade and involved the complex return types. The error was: coldfusion.xml.rpc.CFCInvocationException

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-02 Thread Bobby Hartsfield
So did the initial webservice error go away as well? .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: Thursday, December 02, 2010 10:35 AM To: cf-talk Subject: RE: Webservice error after CF

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-02 Thread Brook Davies
Yeah, I wasn't sure if you need to copy it into the bin directory or just update the version in system32. Thanks again Mack. Brook ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/d

Re: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-02 Thread Mack
On Thu, Dec 2, 2010 at 3:47 PM, Mark A. Kruger wrote: > > Mack, > > Thanks for that info so copying to the /bin directory does the trick?  I > would think you would have to "un register" and "re register" nice to > know. Mark, When loading a DLL Windows searches first in the current di

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-02 Thread Mark A. Kruger
e.com www.necfug.com -Original Message- From: Mack [mailto:mrsmith.w...@gmail.com] Sent: Thursday, December 02, 2010 5:42 AM To: cf-talk Subject: Re: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED] On Thu, Dec 2, 2010 at 12:36 AM, Mark A. Kruger wrote: > >

Re: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-02 Thread Mack
e an awfully low > level OS problem to be affecting a Java ap eh? Dave is correct here, jvm.dll has a dependency on msvcr71.dll. In this case jrun.exe would terminate immediately after msvcr71.dll was loaded and write an error to the log file about not being able to load jvm.dll. The fix was to copy

Re: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-01 Thread Dave Watts
> that is certainly odd, that is the microsoft visual c runtime file, how > would it affect ColdFusion which runs on Java ? The JVM itself is loaded as a native DLL - jvm.dll. Java requires a native bootstrap to run in the first place. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ h

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-01 Thread Leigh
> ... but it seems like an awfully low > level OS problem to be affecting a Java ap eh? I noticed the bug database does mention problems with java 1.6/msvcr71.dll and custom loaders http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6509291 http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6509

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-01 Thread Mark A. Kruger
MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Wednesday, December 01, 2010 4:27 PM To: cf-talk Subject: Re: Webservice error after CF 8.01 update CF

Re: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-01 Thread Russ Michaels
02) 408-3733 ext 105 > Skype: markakruger > www.cfwebtools.com > www.coldfusionmuse.com > www.necfug.com > > > > -Original Message- > From: Brook Davies [mailto:cft...@logiforms.com] > Sent: Wednesday, December 01, 2010 1:40 PM > To: cf-talk > Subject: RE:

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-01 Thread Mark A. Kruger
1:40 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED] Hallelujah praise the lord. Thanks to "Mack" who was kind enough to take a look at my server, we're back in business. Turns out an older version of msvcr71.dll had somehow found its way

RE: Webservice error after CF 8.01 update CF FAILS TO START! [FIXED]

2010-12-01 Thread Brook Davies
ject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Brook, Tell me everything about the OS - ignoring any information about JVM's etc. What exact version of windows are you running? Is it a VPS? Is it on a domain? W

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Mark A. Kruger
essage- From: Brook Davies [mailto:cft...@logiforms.com] Sent: Wednesday, December 01, 2010 9:39 AM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Yeah, a full reinstall to a new partition didn'

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Brook Davies
Yeah, a full reinstall to a new partition didn't work (G:\coldfusion8). Same error! -Original Message- From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: December-01-10 7:22 AM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loadi

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Mark A. Kruger
o:cft...@logiforms.com] Sent: Wednesday, December 01, 2010 9:09 AM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Nope, no compression Mark. The really strange thing is that everything was running fine, until

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Brook Davies
Nope, no compression Mark. The really strange thing is that everything was running fine, until that class file issue. And after deleting the cf generated class files and then clicking 'clear template cache' in the cfadmin, upon rebooting this mysterious error has been all I have been a

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Mark A. Kruger
AM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Hi Jochem, The dll does exist where it is supposed to. Its 3,813,376 KB in size. I've reinstalled CF8 about 6 or 7 times now, to various loca

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Brook Davies
Hi Jochem, The dll does exist where it is supposed to. Its 3,813,376 KB in size. I've reinstalled CF8 about 6 or 7 times now, to various locations always with the exact same error. The dll is virus free. I've tried starting CF directly and I get the exact same error and that error alo

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Azadi Saryev
o figure this one out. I've reinstalled > CF now about 5 times, I get the same error (with zero details!) everytime. > I've tried installing to a new partition - same error. I've logged on with a > new admin account and installed from there, same error. I've tried multi

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Jochem van Dieten
On Wed, Dec 1, 2010 at 11:34 AM, Brook Davies wrote: > If I open a command prompt and go to 'c:\coldfusion8\runtime\bin\' and run > any of executables directly (like sniffer.exe or xmlscript.exe - I get the > same error "Error loading: C:/ColdFusion8/runtime/jre\bin\serve

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-12-01 Thread Brook Davies
Well, its 2am and I am still trying to figure this one out. I've reinstalled CF now about 5 times, I get the same error (with zero details!) everytime. I've tried installing to a new partition - same error. I've logged on with a new admin account and installed from there, same er

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
chkDsk says there are no bad blocks.. I'm doing a defrag aswell -Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: November-30-10 8:52 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/ru

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
- From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: November-30-10 8:23 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Brook ok, maybe your CF files are corrupt or in a bad spot o

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
Well, I've removed the extra JVM's and rebooted. Same Error. The jvm.config file is below - its the default...this is so weird.. # # VM configuration # # Where to find JVM, if {java.home}/jre exists then that JVM is used # if not then it must be the path to the JRE itself j

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Can I see the rest of your JVM.config file? Also... have you tried commenting it out? Perhaps you have a JAVA_HOME set. Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
Davies [mailto:cft...@logiforms.com] Sent: Tuesday, November 30, 2010 8:19 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Its plain jane: # # VM configuration # # Where to find JVM, if {java.home}/jre

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Dave Watts
rs. The duplicate class name > makes me think of goofy i/o stuff. What do you think Dave? I think it's possible, but every "Error loading ... jvm.dll" I've seen or heard of was caused by a mismatch between JVMs. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Dave Watts
> I have tried running CF as the administrator account and I get the same > error (thats the account I am logged in as). The JAVA path environment > variable is actually pointing to the JVM I just installed on a separate > drive to see if that would work over the JVM included

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
class name makes me think of goofy i/o stuff. What do you think Dave? What do the windows logs show... any i/o type errors? The error you are getting is definitely really early on in the bootstrap - like when the JVM is first tapped not much to go on eh? Mark A. Kruger, MCSE, CFG (402) 408-373

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
I have tried running CF as the administrator account and I get the same error (thats the account I am logged in as). The JAVA path environment variable is actually pointing to the JVM I just installed on a separate drive to see if that would work over the JVM included with CF. Its 1.6.0_21. But

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
eboot I can no longer start CF. I've reinstalled CF and a new JVM and I get the same 1 line error every time. I really don't want to spend all night (going downtown to the colo) re-installing the OS and CF and setting up all the crap on this server, but it looks like I may have to.

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll > I deleted all the class files clicked 'clear template cache now' in the > cfadmin. The CF server hung so I rebooted only to find that CF 8.01 would no > longer start

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Dave Watts
> I've never seen anything like this before. I don't know what it could be. I > think I'm gonna have to do a complete re-install of the OS. Cause I have no > idea. BTW, I can run "java - version" from a command prompt and get a > result. Java appears to be installed and functional... Running "jav

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
no idea. BTW, I can run "java - version" from a command prompt and get a result. Java appears to be installed and functional... Brook -Original Message- From: Wil Genovese [mailto:jugg...@trunkful.com] Sent: November-30-10 7:31 PM To: cf-talk Subject: Re: Webservice error af

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Dave Watts
> I deleted all the class files clicked 'clear template cache now' in the > cfadmin. The CF server hung so I rebooted only to find that CF 8.01 would no > longer start. The only thing in the log " Error loading: > C:/ColdFusion8/runtime/jre\bin\server\jvm.dll".

Re: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Wil Genovese
a fine for doing well. On Nov 30, 2010, at 8:34 PM, Brook Davies wrote: > > Yeah, its really weird. I've tried a couple different JVM's now and I get > the same error every time. The coldfusion-out.log, the only log with > anything in it only has the one line error messa

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
, 2010 8:34 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Yeah, its really weird. I've tried a couple different JVM's now and I get the same error every time. The coldfusion-out.log, th

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
-Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: Tuesday, November 30, 2010 8:34 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll Yeah, its really weird. I've tried a c

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
Yeah, its really weird. I've tried a couple different JVM's now and I get the same error every time. The coldfusion-out.log, the only log with anything in it only has the one line error message "Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll". Like I said also

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
Looks default to me Brook... what's in your /runtime/logs/*-out.log (cfusion-out.log usually). Is that were you got the "Error loading" error? -mark Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
...@cfwebtools.com] Sent: November-30-10 6:05 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll What's the path look like in the JVM.config file? Paste the top part of the file for us :) Mark A. Kruger, MCSE

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Mark A. Kruger
s.com] Sent: Tuesday, November 30, 2010 7:53 PM To: cf-talk Subject: RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll I deleted all the class files clicked 'clear template cache now' in the cfadmin. The CF server hun

RE: Webservice error after CF 8.01 update CF FAILS TO START! Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll

2010-11-30 Thread Brook Davies
I deleted all the class files clicked 'clear template cache now' in the cfadmin. The CF server hung so I rebooted only to find that CF 8.01 would no longer start. The only thing in the log " Error loading: C:/ColdFusion8/runtime/jre\bin\server\jvm.dll". I tried a differen

RE: Webservice error after CF 8.01 update

2010-11-30 Thread Brook Davies
I've installed cumulative hot fix 4... -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: November-30-10 4:07 PM To: cf-talk Subject: Re: Webservice error after CF 8.01 update have you applied all the updates and hotfixes for 8,0,1 On Tue, Nov 30, 2010

Re: Webservice error after CF 8.01 update

2010-11-30 Thread Russ Michaels
have you applied all the updates and hotfixes for 8,0,1 On Tue, Nov 30, 2010 at 11:16 PM, Brook Davies wrote: > > I am getting this error again, now with a different custom return type > class. This error is making our web service unusable. Has any one > encountered this: &

RE: Webservice error after CF 8.01 update

2010-11-30 Thread Brook Davies
I am getting this error again, now with a different custom return type class. This error is making our web service unusable. Has any one encountered this: The fault returned when invoking the web service operation is: AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope

RE: Webservice error after CF 8.01 update

2010-11-24 Thread Brook Davies
8.01 (although I thought I had cleared all class files during the upgrade. Brook -Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: November-24-10 11:57 AM To: cf-talk Subject: Webservice error after CF 8.01 update Hello, We recently updated to CF 8.01. Now

Webservice error after CF 8.01 update

2010-11-24 Thread Brook Davies
Hello, We recently updated to CF 8.01. Now we're getting this intermittent error on a webservice call that seems to be related to the custom return type: http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://

Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Dave Watts
> I would guess not either, which leads me back to why I find these web > server connectors to be such a black box!  They just make so little > sense to me.  Especially since each and every system I have looked at > that file is a single, empty, "proxyservers=" line. Yeah, they're a mystery to me

Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Ian Skinner
On 11/23/2010 3:59 PM, Dave Watts wrote: > I don't think the file should be "jrunservers.store". I'm not sure why > that's working in the existing directories (maybe it isn't being read > properly in those directories either, though). I would guess not either, which leads me back to why I find

Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Dave Watts
>  In the mean time, I took a closer look at the logs (I wasn't looking > in the Apache logs before).  I found this block for the last attempt to > request a cfm page. > > [Tue Nov 23 15:17:17 2010] [notice] jrApache[18177: 60758]  could not > open serverstore "/opt/jrun4/lib/wsconfig/www/jrunserv

Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Ian Skinner
In the mean time, I took a closer look at the logs (I wasn't looking in the Apache logs before). I found this block for the last attempt to request a cfm page. [Tue Nov 23 15:17:17 2010] [notice] jrApache[18177: 60758] could not open serverstore "/opt/jrun4/lib/wsconfig/www/jrunserver.stor

Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Dave Watts
>> In the directory in which the connector modules are installed, there >> should also be a text file. You should be able to enable the log level >> from this text file. > > What text file where?  I looked into the /opt/jrun4/lib/wsconfig folder > and each 'connector' folder under that, and I do n

Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Ian Skinner
On 11/23/2010 2:48 PM, Dave Watts wrote: > In the directory in which the connector modules are installed, there > should also be a text file. You should be able to enable the log level > from this text file. What text file where? I looked into the /opt/jrun4/lib/wsconfig folder and each 'conn

Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Dave Watts
o a new ColdFusion instance.  This worked > fine on one of our boxes, the development one, but not on the other, > production of course. > > Whenever we try to request a cfm url from one of these sites on the > production server we get a 500 Internal Server Error.  HTML pages serve >

New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Ian Skinner
Internal Server Error. HTML pages serve up just fine, and the new instance's Administrator runs fine on its 8305 port. So both Apache and ColdFusion seem to be working independently, but they are not talking to each other. All the other Apache sites connected to the other four ColdF

RE: Error: null null

2010-11-12 Thread Al Musella, DPM
lt value (0)). No dates. > >Regardless, the error just went away. > >Thanks > >Robert B. Harrison >Director of Interactive Services >Austin & Williams >125 Kennedy Drive, Suite 100 >Hauppauge NY 11788 >P : 631.231.6600 Ext. 119 &

RE: Error: null null

2010-11-12 Thread Robert Harrison
That table has USER ID (varchar) , PASSWORD (varchar) and a bunch of bit fields (default value (0)). No dates. Regardless, the error just went away. Thanks Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.

Re: Error: null null

2010-11-12 Thread Tony Bentley
explanatory :) > > I'm assuming that's a joke, but in case it's not... please explain. I don't > have a clue what it means and a search is coming up short on answers. > > Strangely, the error has just gone away and I did nothing? > > > > Robert B. Harr

RE: Error: null null

2010-11-12 Thread Robert Harrison
> > What? You don't know what null null means? It's pretty self explanatory :) I'm assuming that's a joke, but in case it's not... please explain. I don't have a clue what it means and a search is coming up short on answers. Strangely, the error has just go

Re: Error: null null

2010-11-12 Thread Tony Bentley
> What? You don't know what null null means? It's pretty self explanatory :) ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.hou

Re: Error: null null

2010-11-12 Thread Jerry Johnson
; Now I'm getting the error: > > null null > The error occurred on line -1. > > RootCause: (structure - not printed) > StackTrace: java.lang.NullPointerException > > > Message: > Type: coldfusion.runtime.CfErrorWrapp

Error: null null

2010-11-12 Thread Robert Harrison
I made a change to a data base table on SQL server 2008 and added a field. Now I'm getting the error: null null The error occurred on line -1. RootCause: (structure - not printed) StackTrace: java.lang.NullPointerException Me

Re: JQuery Ajax Error issue with Site-wide Error Handler

2010-11-11 Thread Tony Bentley
Nice work! - Tony Bentley (sent from iPhone) On Nov 11, 2010, at 11:06 AM, Donnie Carvajal wrote: > > Hi Tony, > > I just realized you were intending for the code to go in the site-wide error > handler and not the custom error handling of the AJAX code. I got it > wo

Re: JQuery Ajax Error issue with Site-wide Error Handler

2010-11-11 Thread Donnie Carvajal
Hi Tony, I just realized you were intending for the code to go in the site-wide error handler and not the custom error handling of the AJAX code. I got it working. This was a great help!! Thanks again, Donnie > Check firebug (how many times do people say this?) > > If you throw

Re: JQuery Ajax Error issue with Site-wide Error Handler

2010-11-11 Thread Donnie Carvajal
Hi Tony, Thanks again. I should mention that I want the site-wide error handler to run. It writes to log files, sends email notification as well as some other bug tracking pieces we have in place. If I put a cfabort in the code, the site-wide error handler won't run. Are you sugge

Re: JQuery Ajax Error issue with Site-wide Error Handler

2010-11-11 Thread Tony Bentley
Check firebug (how many times do people say this?) If you throw a 500 and abort after, the client should treat the response as an error. You need to configure the client too, not just put in . Use ALL of my code, not just a fragment. > Thanks Tony! Will the work with the > site-wide

Re: JQuery Ajax Error issue with Site-wide Error Handler

2010-11-11 Thread Donnie Carvajal
Thanks Tony! Will the work with the site-wide error handler on? I tried adding this tag to my ajax code, but it is still returning as success. Thanks, Donnie ~| Order the Adobe Coldfusion Anthology now! http

Re: JQuery Ajax Error issue with Site-wide Error Handler

2010-11-11 Thread Tony Bentley
Not sure where this goes in CF5.5. Place it in your error handler. In your js document: $.ajaxSetup({ error:function(x,e){ if(x.status == 500 && x.st

Re: Ajax + 2 functions = error

2010-11-10 Thread Jessica Kennedy
correct. I believe if you are calling it from the same root domain a "public" access will work >Confusing. Your access is public but you can call it via remote Ajax? ~| Order the Adobe Coldfusion Anthology now! http://www.amaz

Re: Ajax + 2 functions = error

2010-11-10 Thread Jessica Kennedy
I do cache my component, but since I'm testing, I'm forcing a reload on each page load, and I am istantiating the component I call via ajax on every request... still, I did a test to be sure-- I attempted to call getTest() via ajax-- worked perfectly. then attempted to call the original method

Re: Ajax + 2 functions = error

2010-11-10 Thread Azadi Saryev
: > ok, tried this, it failed on the var scoped line instead of the structAppend > line... same error message though. > > I have an ajax handler method which instantiates all of my ajax calls-- also > with an access="public". very strange. I am able to call other methods

RE: JQuery Ajax Error issue with Site-wide Error Handler

2010-11-10 Thread Brook Davies
tch, or site wide handler) and the data structure above is returned with an error message/object and success is set to false. No errors, then success=true and the data object holds the returned data. Client, side your application can either use the data returned, or handle the error if s

JQuery Ajax Error issue with Site-wide Error Handler

2010-11-10 Thread Donnie Carvajal
I have some Ajax running via jQuery and I also have a site-wide error handler running for ColdFusion. When the coldfusion template is called via ajax and an error is thrown via cfthrow, the ajax "error" handler is not triggered, instead the ajax "success" handler is.

Re: Ajax + 2 functions = error

2010-11-10 Thread Jessica Kennedy
ok, tried this, it failed on the var scoped line instead of the structAppend line... same error message though. I have an ajax handler method which instantiates all of my ajax calls-- also with an access="public". very strange. I am able to call other methods, but I have to create

Re: CFFILE ERROR

2010-11-10 Thread Monique Boea
')#" * > >output = "#Evaluate( "#language#TEXT" )#" > >nameconflict="overwrite"> > > > > > > It used to work fine but all of a sudden the red line is causing the > > following error: > > > > *C

Re: Ajax + 2 functions = error

2010-11-09 Thread Azadi Saryev
try replacing your failing line with these 2: var stuctTest = getTest(); structAppend(returnData, structTest); Azadi On 10/11/2010 09:56 , Jessica Kennedy wrote: > structAppend(returnData, getTest());//failing here! ~| Order

Re: CFFILE ERROR

2010-11-09 Thread Monique Boea
;#ExpandPath('/contentFiles/#maxContentID#_#language#.cfm')#" * > >output = "#Evaluate( "#language#TEXT" )#" > >nameconflict="overwrite"> > > > > > > It used to work fine but all of a sudden the

Re: Ajax + 2 functions = error

2010-11-09 Thread Tony Bentley
Confusing. Your access is public but you can call it via remote Ajax? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffus

Ajax + 2 functions = error

2010-11-09 Thread Jessica Kennedy
Ok, I have the following 2 functions: var returnData = structNew(); structAppend(returnData, getTest());//failing here! returnData.test2 = "test2"; var returnData = structNew(); returnData.testing = "TEST"; I am doing an ajax request on "tes

Re: CFFILE ERROR

2010-11-09 Thread Dave Watts
Evaluate( "#language#TEXT" )#" >            nameconflict="overwrite"> >     > > It used to work fine but all of a sudden the red line is causing the > following error: > > *Complex object types cannot be converted to simple values. > The expression has

CFFILE ERROR

2010-11-09 Thread Monique Boea
I have a file that is creating a CF template using the following code: It used to work fine but all of a sudden the red line is causing the following error: *Complex object types cannot be converted to simple values. The expression has requested a variable or an

Re: Best Way to Trap SQL Error

2010-11-08 Thread Rick Colman
This was a really good idea, and solved the problem. I validated for an integer, and the error went away. TNX. On 11/8/2010 7:49 AM, Michael Grant wrote: > The best way would be to validate the data before getting your database > involved. > > > On Mon, Nov 8, 2010 at 10:07

Re: Best Way to Trap SQL Error

2010-11-08 Thread Mike Chabot
A good site-wide error handler that sends alert e-mails would help. The cferror tag is one method that works well. -Mike Chabot On Mon, Nov 8, 2010 at 10:07 AM, Rick Colman wrote: > > What is the best way to gracefully trap this sort of error ... > > Error Executing Database Query.

Re: Best Way to Trap SQL Error

2010-11-08 Thread Michael Grant
The best way would be to validate the data before getting your database involved. On Mon, Nov 8, 2010 at 10:07 AM, Rick Colman wrote: > > What is the best way to gracefully trap this sort of error ... > > Error Executing Database Query. [Macromedia][SequeLink JDBC Driver][O

Re: Best Way to Trap SQL Error

2010-11-08 Thread James Holmes
Have you tried cftry/cfcatch? -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 8 November 2010 23:07, Rick Colman wrote: > > What is the best way to gracefully trap this sort of error ... > > Error Executing Database Query. [Macromedia][SequeLink JDBC

Best Way to Trap SQL Error

2010-11-08 Thread Rick Colman
What is the best way to gracefully trap this sort of error ... Error Executing Database Query. [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1. The error occurred on line 3. TNX for any suggestions. Rick

Re: StructAppend Creating an Error

2010-10-30 Thread Leigh
>> Good job. BTW: Consider using associative array notation, it is easier on the eyes ;-) ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusi

Re: StructAppend Creating an Error

2010-10-30 Thread Monique Boea
I figured it out: I had code that was resetting the values: On Sat, Oct 30, 2010 at 3:24 PM, Monique Boea wrote: > I get the results when I user your code > > > > Debug value of strInstUsername = > Debug value of strLanguage = > Debug value of strInstEmail = m...@aol.com > Debug

Re: StructAppend Creating an Error

2010-10-30 Thread Monique Boea
I get the results when I user your code Debug value of strInstUsername = Debug value of strLanguage = Debug value of strInstEmail = m...@aol.com Debug value of strGender = Female Debug value of strDegrees = Associate Degree Debug value of strEmployeeNum = Debug value of strDepartment = Debug va

<    2   3   4   5   6   7   8   9   10   11   >