in reply to Re^2: Error while receiving SOAP envelope from client
in thread Error while receiving SOAP envelope from client

you must add in your conf of apache2 AddHandler cgi-script .cgi .pl
  • Comment on Re^3: Error while receiving SOAP envelope from client

Replies are listed 'Best First'.
Re^4: Error while receiving SOAP envelope from client
by Anonymous Monk on Apr 21, 2009 at 13:22 UTC
    hi, I also got the same error but it was resolved when i added AddHandler cgi-script .cgi .pl in apache conf file. But now I am getting 403 Forbidden Error saying You don't have permission to access /index.cgi. Please tell me how to fix this. Thanks, KSN
      Get permission :)
Re^4: Error while receiving SOAP envelope from client
by fshrewsb (Acolyte) on Jan 12, 2010 at 15:03 UTC
    Thanks for the original example. If you've not worked it out by now, you need to add the following to httpd.conf : <Directory "/var/www/html/soap"> Options +ExecCGI AddHandler cgi-script .cgi .pl </Directory>
Re^4: Error while receiving SOAP envelope from client
by Anonymous Monk on Jul 14, 2010 at 10:13 UTC
    you should also add the Options +ExecCGI after the Addhandler line