I am running Oracle-Application-Server-10g and using mod_plsql for the web server. Although the web server accepts HTTP requests such as POST, DELETE and HEAD, I cannot find a way to configure it to accept other HTTP requests such as PUT and DELETE. Sending a PUT or DELETE request to the server returns "501 method not implemented . " I created the following part in httpd.conf:
<Directory "D:\OraHome_2\Apache\Apache\htdocs">
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST PUT DELETE OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST PUT DELETE OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
but it didnβt matter. Can anyone suggest a solution?
source
share