Log Message:
-----------
Add a stub to allow SOAP access to webservice
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.6
retrieving revision 1.7
diff -Lconf/webwork.apache-config.dist -Lconf/webwork.apache-config.dist -u -r1.6 -r1.7
--- conf/webwork.apache-config.dist
+++ conf/webwork.apache-config.dist
@@ -80,7 +80,9 @@
#
Alias $webwork_htdocs_url $webwork_htdocs_dir
<Directory $webwork_htdocs_dir>
- Options None
+ Order Allow,Deny
+ Allow from All
+ Options FollowSymLinks
AllowOverride None
</Directory>
@@ -88,6 +90,8 @@
#
AliasMatch $webwork_courses_url/([^/]*)/(.*) $webwork_courses_dir/\$1/html/\$2
<Directory $webwork_courses_dir/*/html>
+ Order Allow,Deny
+ Allow from All
Options FollowSymLinks
AllowOverride None
</Directory>
@@ -101,6 +105,17 @@
Order Allow,Deny
Allow from All
</Location>
+
+########## SOAP installation ############
+<Location /mod_soap>
+ SetHandler perl-script
+ PerlHandler Apache::SOAP
+ PerlSetVar dispatch_to "WebworkXMLRPC"
+ PerlSetVar options "compress_threshold => 10000"
+ Order Allow,Deny
+ Allow from All
+</Location>
+
EOF
</Perl>
|