PL/SQL (mod_plsql): Accept parameters only from POST, not GET requests? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T12:36:44Z http://stackoverflow.com/feeds/question/487646 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/487646/pl-sql-modplsql-accept-parameters-only-from-post-not-get-requests 1 PL/SQL (mod_plsql): Accept parameters only from POST, not GET requests? J_J 2009-01-28T13:41:11Z 2009-02-05T19:21:53Z <p>Hi, I'm working on an application that uses mod_plsql with Oracle 10G to generate web pages via PL/SQL stored procedures called directly from the web browser. I'm looking for a way to only accept parameters via POST requests, and not GET requests.</p> <p>Ie, in PHP I would only want the value of $_POST['parameter_name'] and not $_GET['parameter_name']. I haven't been able to find a way to achieve this in Pl/SQL, since the parameters are specified in the procedure definition and without a request type.</p> <p>Is there any way to achieve this with PL/SQL?</p> <p>Thank you.</p> http://stackoverflow.com/questions/487646/pl-sql-modplsql-accept-parameters-only-from-post-not-get-requests/505503#505503 1 Answer by Peter Hilton for PL/SQL (mod_plsql): Accept parameters only from POST, not GET requests? Peter Hilton 2009-02-02T23:52:14Z 2009-02-02T23:52:14Z <p>In the Apache configuration, you can probably use the <a href="http://httpd.apache.org/docs/2.2/mod/core.html#limit" rel="nofollow">Limit directive</a> to restrict the relevant URLs to POST requests.</p> http://stackoverflow.com/questions/487646/pl-sql-modplsql-accept-parameters-only-from-post-not-get-requests/517487#517487 1 Answer by IK for PL/SQL (mod_plsql): Accept parameters only from POST, not GET requests? IK 2009-02-05T19:21:53Z 2009-02-05T19:21:53Z <p>If you don't have access to the Apache config, you can probably put the following code at the top of your Oracle procedure:</p> <pre><code>if owa_util.get_cgi_env('REQUEST_METHOD') != 'POST' then raise_application_error(-20001,'Only POST request method is allowed.'); end if; </code></pre>