Re: [ACFUG Discuss] CF application service does not start on server reboot

2007-11-08 Thread shawn gorrell
Sure, but that doesn't mean it was the same thing that is happening to you. I'd recommend looking at the Windows event logs. There should be a more specific error message to go from. Without that you're just guessing. - Original Message From: Max Immelman [EMAIL PROTECTED] To:

RE: [ACFUG Discuss] CF application service does not start on serv er reboot

2007-11-08 Thread Steve Drucker
Greetings everyone! The call for papers for WebManiacs 2008 has been extended to Nov. 30. The 3 day FLEX+AIR combined with 2 day CF+AIR conference will be held in Washington DC, May 19-23rd. The conference will have eight concurrent tracks, four of which will involve hands-on training. Please

[ACFUG Discuss] CF application service does not start on server reboot

2007-11-08 Thread Max Immelman
This happens on my laptop and our production server. Sometimes it starts and sometimes not. Anyone else experienced this? CF702 std edition, WS2003, SP1 Max Immelman Cell: (404) 409-6785 or txt/pic/vid [EMAIL PROTECTED] Skype: maxlegend http://www.JustRightBaskets.com

[ACFUG Discuss] getPageContext.forward() hijinks

2007-11-08 Thread shawn gorrell
Do any of you use getPageContext.forward() as an alternative to cflocation? I'm having an issue where it just doesn't work if there is a multipart form for doing file uploads. For all other cases it works as expected. S - Annual

RE: [ACFUG Discuss] coding in CF8 dev for CFMX production

2007-11-08 Thread John Mason
Yea, all the new AJAX stuff in CF8 naturally isn't going to run with 7. I'm surprised by the flash form issue though. I don't use the flash forms myself, but that may be a bug that needs to be reported to Adobe. John Mason [EMAIL PROTECTED] 770.337.8363 www.FusionLink.com - ColdFusion and Flex

RE: [ACFUG Discuss] coding in CF8 dev for CFMX production

2007-11-08 Thread John Mason
So the query is for populating the select list and the bind is to bind it to the other tab that contains the grid. Ah, ok. But, I think it's actually proper to have the bind on the grid in this case. The select pulls from a query. When you select an item, the binding on the grid will pick that

Re: [ACFUG Discuss] coding in CF8 dev for CFMX production

2007-11-08 Thread Jeff Howard
Basically, I have a 2 tabbed Flash form. The first tab lists all company assets in the possession of a particular employee, department, etc. listed in a CFGRID. If you then click on a line item of that grid it populates all the information of that asset in a form on the next page. The CFSELECT

Re: [ACFUG Discuss] getPageContext.forward() hijinks

2007-11-08 Thread shawn gorrell
Thanks for the idea, I'll give it a shot. I figured this was going to be the kind of post that was answered with silence or crickets;) - Original Message From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: discussion@acfug.org Sent: Thursday, November 8, 2007 3:31:06 PM Subject: Re: [ACFUG

RE: [ACFUG Discuss] coding in CF8 dev for CFMX production

2007-11-08 Thread Charlie Arehart
Jeff, if that doesn't work for you (or you're not on Enterprise), note that when you install, if it has CF7 on it already, CF8 will offer to migrate the old settings into CF8 (and yes, this is even if you choose to install 7 side-by-side, keeping the 7 install on the machine, which might be

[ACFUG Discuss] Cfant tag

2007-11-08 Thread John Mason
We were talking a bit after last night's meeting (and playing golf on the Wii) and I mention the undocumented tag in coldfusion called cfant. If you ever want to run an ANT task with CF, the cfant tag is the way to go. Some try using cfexecute, but I'll just say don't go there ;) Naturally, bare

Re: [ACFUG Discuss] getPageContext.forward() hijinks

2007-11-08 Thread robertlash
This is a total guess here. get PageContext().setAttribute(enctype, multipart/form-data).forward(). -- Original message -- From: shawn gorrell [EMAIL PROTECTED] Do any of you use getPageContext.forward() as an alternative to cflocation? I'm having an issue

Re: [ACFUG Discuss] coding in CF8 dev for CFMX production

2007-11-08 Thread Jeff Howard
errant email send on the last one in any case, I had this code: CFSELECT name = owner multiple=no width=220 label=Owner: query=qGetUsers display=fullname

RE: [ACFUG Discuss] CF application service does not start on server reboot

2007-11-08 Thread Troy Jones
We experienced this on a server running SBS2003 when a sector had failed on the hard drive. When rebooting, the ColdFusion service had to be manually restarted even though it was set to automatic. Maybe you have a bad sector on your hard drive? Troy Jones Dynapp Support Team 678-528-2952

Re: [ACFUG Discuss] coding in CF8 dev for CFMX production

2007-11-08 Thread Jeff Howard
so i found an issue already on the first app i went to test. i was wanting to see the new ajax format forms to replace a flash form that has been problematic and on a CFSELECT in a Flash form I had a bind, the code looks as follows: CFSELECT name = owner multiple=no width=220

Re: [ACFUG Discuss] coding in CF8 dev for CFMX production

2007-11-08 Thread Jeff Howard
If that was the case would I be getting that error message? Only one of the bind or query attributes can be used on a CFSELECT The error message seems to be a conflict of attributes for the CFSELECT tag. On Nov 8, 2007 4:42 PM, John Mason [EMAIL PROTECTED] wrote: Right that surprised me. I