执行以下代码时Could not find or load mod_perl at C:\Perl\site\lib\SOAP\Transport\HTTP.pm line 741
,即使我成功安装了模块,我也会收到错误消息mod_perl2
。
代码:
!#/usr/bin/perl
use SOAP::Transport::HTTP;
SOAP::Transport::HTTP::Apache -> dispatch_to('WorldFunctions') -> handle;
package WorldFunctions; sub new { bless {}, shift; }
我该如何解决这个错误?