Oracle mod_plsql does not execute PUT and DELETE HTTP requests

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?

+4
source share
1 answer

node_plsql, NodeJS mod_plsql. , .

0

Source: https://habr.com/ru/post/1530242/


All Articles