Hello all,

We are migrating a legacy app to CF 7.0 on Windows 2003 and everything
works, except that it has to execute a program to create some rather
specific PDF files.

This is working fine under windows 2000, but under windows 2003 it times out
(indefinately)... Tried a few things and discovered that cfexecute is a
little picky. Since the app was not working directly, I tried running a
batch file instead,

<cfexecute name="...\test.bat"
  timeout="5">
</cfexecute>

attempt 1
----------------
@echo am I working?
----------------
works

attempt 2
----------------
@echo am I working?
@[program name] [args..]
----------------
times out

attempt 3
----------------
@echo am I working?
@cmd
----------------
times out

It is obvious that cfexecute just does not work like it should in windows
2003. I want to break out of this coldfusion shell and just schedule the
task to run immediately in windows (or something like that) - where I know
it will run

Any ideas?

Joel


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to