How to access parameters from the post data?
639965Mar 18 2009 — edited Mar 18 2009Hello,
depending on the request of an apex page, i do execute different branches of my pl/sql processes. To do so, i fetch the url with OWA_UTIL.get_cgi_env('QUERY_STRING') and do a scan for the request.
This works fine with get urls.
Now i have a button which posts its request by using the javascript:doSubmit('MY_REQUEST') syntax. This no longer uses the get method but puts the parameters in a post method.
The request is put automatically into the p_request parameter. I do NOT want to change the call to to javascript:redirect syntax!
Is there a way to access this parameter in pl/sql and if there is, how can i do it?