PL/SQL (mod_plsql): Accept parameters only from POST, not GET requests? -


I am working on an application that uses mod_plsql with ORCL 10G, which is stored in PL / SQL Web pages are generated directly through the name through the processes web browser I'm looking for a way to accept only parameters through POST requests, and do not receive requests.

Ie, in PHP, I do not want the value of $ _POST ['parameter_name'] and $ _GET ['criteria name']. I can not find a way to achieve this in PL / SQL because parameters are specified in the process definition and without a request type.

What is PL / SQL?

Thank you.

If you do not have access to Apache configuration, you might have the following code at the top of your oracle process Can put:

  if owa_util.get_cgi_env ('REQUEST_METHOD')! = 'POST' then raise_application_error (-20001, 'Post request method only allowed.'); end if;  

Comments