From: Mike G. v. a. <we...@ma...> - 2005-06-02 16:39:02
|
Log Message: ----------- Allows connection of WeBWorK with Moodle via SOAP. This feature is still under development. Modified Files: -------------- webwork-modperl/conf: webwork.apache-config.dist Revision Data ------------- Index: webwork.apache-config.dist =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/conf/webwork.apache-config.dist,v retrieving revision 1.7 retrieving revision 1.8 diff -Lconf/webwork.apache-config.dist -Lconf/webwork.apache-config.dist -u -r1.7 -r1.8 --- conf/webwork.apache-config.dist +++ conf/webwork.apache-config.dist @@ -44,8 +44,14 @@ my $webwork_courses_dir = $ce->{webwork_courses_dir}; eval "use lib '$pg_dir/lib'"; die $@ if $@; -eval "use WebworkWebservice";die $@ if $@; #FIXME, is there another way to initialize this? +########################################## # allows Webservice access to WeBWorK +########################################## + +eval "use WebworkWebservice";die $@ if $@; #FIXME, is there another way to initialize this? +eval "use RQP"; die $@ if $@; + +########################################## $WeBWorK::SeedCE{webwork_dir} = $webwork_dir; @@ -105,6 +111,23 @@ Order Allow,Deny Allow from All </Location> + ########## RQP installation ########## + +#<Location /rqp> +# SetHandler perl-script +# PerlHandler Apache::SOAP +# PerlSetVar dispatch_to "RQP" +# PerlSetVar options "compress_threshold => 10000" +# Order Allow,Deny +# Allow from All +#</Location> + +<Location /rqp> + SetHandler perl-script + PerlHandler MySOAP + Order Allow,Deny + Allow from All +</Location> ########## SOAP installation ############ <Location /mod_soap> |