Dear Monks, I have a script in which I use system ("command") to launch a Java application that is in the same folder of the script. Something like:
$command = "java -mx300m -classpath application_name.jar -model path" +; system("$command");
When used on my machine this works fine. Now I'm trying to run the same code from a cgi folder on a server. When I run the same script as a cgi script on the server everything works fine except for the system ("$command") part. It seems like I cannot run that Java application from the server. Or perhaps servers do not accept the "system" function at all? Or perhaps I cannot have a .jar file in the cgi folder? Does anybody know something that can help me diagnose the problem? I apologise in advance if any of this does not make sense. I have never received formal training in programming or computer science and I'm just learning by doing. Thanks a lot.

In reply to System command on servers by AndreaN

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.