2009/8/7 Erik Lewis <ELEWIS@ngrl.org>:
Koha 3.03/Ubuntu 9.04
Started playing with setup of the SIP server got to the part of the instructions where you fire it off
Nothing
Tried a slight variation
perl -I./ ./SIPServer.pm ./SIPServer.xml
got this...
koha@koha:/usr/share/koha/lib/C4/SIP$ perl -I./ ./SIPServer.pm ./ SIPServer.xml Can't locate Net/Server/PreFork.pm in @INC (@INC contains: ./ /usr/ share/koha/lib /etc/perl /usr/local/lib/perl/5.10.0 /usr/local/share/ perl/5.10.0 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 /usr/ share/perl/5.10 /usr/local/lib/site_perl .) at ./SIPServer.pm line 7. BEGIN failed--compilation aborted at ./SIPServer.pm line 7.
That tells you you are missing a perl module needed by the SIPServer Net::Server
From the README
SIPServer is written entirely in Perl, but it require these CPAN perl modules to run: Net::Server - The SIP server is a Net::Server::Prefork server XML::LibXML XML::Parser XML::Simple - for parsing the config file UNIVERSAL::require - for loading the correct ILS interface module Clone - for running the test cases so in ubuntu sudo apt-get install libnet-server-perl Should get you that missing module (you may be missing one of the others too) Hope this helps Chris