Hello,Part of my workflow sends a list of files to a perl script. The perl script then works out the path and then issues an IWGEN command for each item in the list.Now this works perfectly when the list is around 50 long but anything larger the perl script doesn't finish. It just hangs, no errors, nothing.This is not an isolated issue, another script also has problems with large(?) lists.When I run this file on a different machine it flies through it no problem, so there is no issue with the script.Anyone got any ideas?thanks
Perl doenst have any issues with adding N number of files. This hang out problem occurs due to HTTP time out problem only.You must be printing some HTML in your perl script that is making it stuck.You can try using CGI instead of perl to display HTML or dont display HTML in the same file which is executing the command.Best way is to do it through workflows.