Hello,
I'm trying to write a perl CGI (under IIS, using perlIS.dll) that spawns a server process when you click a Submit button. This server process does a whole bunch of stuff, fetches code from source control, runs a build, etc. And this perl CGI runs fine when I run it directly from the console, fetches code, runs build etc. But when I call it thru IIS, it seems to fail to successfully spawn the server process.
I've tried using system(), backticks, Win32::Process::Create ... I'm wondering if there is some weird limitation that IIS imposes on processes that prevents them from spawning child processes. Anyone ever heard of this kind of limitation?
If this really is a limitation, it seems I might try to work around it by having the server process always running, and listening on a port for requests, and having the CGI triggering it to run a task through sockets when requested. Though I'd rather not have to build all that if I don't have to.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.