I'm new to ColdFusion so please forgive me if I'm asking an obvious question.
I'm trying to run a simple code, which I've found somewhere to test if cfexecute works or not.
<cfexecute name="netstat" variable="result" timeout=10 />
<cfdump var="#result#">
The above code return [empty string], or if I try to write it into a file it just creates an empty file.
I've also tried to ping a server, what I can do from command line.
What I've noticed is that the page gets generated immediately instead of waiting for the timeout in case it would fail.
Also what is important to note: the code works sometimes, without changing anything.
Is it possible that there is a limitation on how many programs can ColdFusion execute?
Thanks for the help!
Solution: I had too many executions that did not terminate themselves automatically. That did not allow ColdFusion to open a new one.