• 締切済み

JSPでのincludeについて

JSPからincludeでperlを呼び出したのですが、 perlのファイル内で記載したスクリプトがそのまま文字列として表示されてしまいます。 なにか設定する必要があるのでしょうか。 コマンドから直接perlを実行した場合は期待する結果が返ってくることが確認できました。 --------------------------------------------- ■test.jsp // perlを呼び出し <jsp:include page="test.pl" flush="true"></jsp:include> ■test.pl #!/usr/bin/perl print $result; exit; ■test.jspで表示される結果 #!/usr/bin/perl print "aaaaaaaaaaaaaaaa"; exit; ■期待する結果 aaaaaaaaaaaaaaaa --------------------------------------------- よろしくお願いします。

みんなの回答

  • teketon
  • ベストアンサー率65% (141/215)
回答No.1

動かしたことはないけど。

参考URL:
http://tomcat.apache.org/tomcat-7.0-doc/cgi-howto.html
jun2249
質問者

お礼

ありがとうございます。 試してみます。