It sounds like you're really close to a solution already...
... I execute a FlowTools command with system() function...

What is supposed to happen next is the application is to create an HTML file and email to the recipient...

... Once the submit button is pressed on the web page nothing more needs to be done, the forms job is over.

Instead of using system() to run the FlowTools command, write a simple wrapper script (separate from your CGI script), which will run FlowTools, build the HTML file of results and email that to the recipient. Then have your CGI script call that wrapper like this:

... my $pid = fork; if ( !defined $pid ) { # maybe report an error to the browser... } elsif ( $pid == 0 ) { exec( 'wrapper_script', 'recipient@email', @other_args ); } else { # print a simple HTML page to the client, saying that the job is # running and results will be emailed as soon as the job finishes } __END__

The point is that once the child starts, it'll handle everything that depends on the long-running process; meanwhile the parent CGI simply tells the client browser "okay, the job is running, you'll get email" and goes away.


In reply to Re: Program Structure by graff
in thread Program Structure by rsharpe

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.