I am having a hard time calling a PERL script from a CFEXECUTE tag.  It
seems to not accept more than one argument.
 
For example the following code with FAIL:
 
<cfexecute 
            name="C:\perl\bin\perl.exe"
            arguments="c:\scripts\run_myPERLapp.pl http://www.cnn.com";
            timeout="10">
</cfexecute>
 
 
The following code will WORK but I cannot pass it a second or third
argument:
 
<cfexecute 
            name="C:\perl\bin\perl.exe"
            arguments="c:\scripts\run_myPERLapp.pl"
            timeout="10">
</cfexecute>
 
Any ideas?
Dave adams
CFUG Ottawa


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Reply via email to