I am running Oracle-Application-Server-10g and using mod_plsql for webserver. While webserver accepts HTTP requests such as POST, DELETE and HEAD, I can not find a way in setting it to accept other HTTP requests such as PUT and DELETE. Sending PUT or DELETE request to the servers returns "501 Method Not Implemented". I have 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 made no difference. Can anyone propose a solution?