Is the CF7 server fully patched? I seem to remember a fix for scheduled jobs running twice. I could be remembering incorrectly though.
Steve -----Original Message----- From: Bryan S [mailto:[email protected]] Sent: Thursday, March 11, 2010 8:37 AM To: cf-talk Subject: RE: Phantom Scheduled Tasks The data are the same for both the desired call and the unexplained call to the URL exactly five minutes later. The five minute interval is very puzzling as is the fact that it only happens when Event1 is run *from the Cold Fusion 7 scheduler*. If I run event1 in a browser the second URL call does not occur. Bryan -----Original Message----- From: Bryan S [mailto:[email protected]] Sent: Wednesday, March 10, 2010 4:19 PM To: '[email protected]' Subject: RE: Phantom Scheduled Tasks Steve Thanks very much. I've added those to my code and will run another series of tests to see if anything useful shows up. The logging that I'm doing only works with string so I can't just dump the whole cgi form and url scopes to a file without specifying each one and then the log gets kind of unwieldy with all of that in there. Bryan -----Original Message----- From: DURETTE, STEVEN J (ATTASIAIT) [mailto:[email protected]] Sent: Wednesday, March 10, 2010 3:33 PM To: cf-talk Subject: RE: Phantom Scheduled Tasks Bryan, I normally save all of CGI/Form/URL. The main CGI ones to look at though are: Cgi.http_referer, cgi.http_user_agent, cgi.remote_addr, cgi.request_method, cgi.script_name If cgi.remote_addr is the ip of the server then the server made the call. User agent helps to see if it was the scheduler or not. Script_name ensures that it isn't some old version (name_old.cfm) laying around that is getting called somehow. Request method helps if this comes from a form, if the method is get, then something looped around and called it. Steve ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331587 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

