Hi Guys,
In APEX.ORACLE.COM I am trying to call some PL/SQL via a Web Service with the following setup:
URI Template: TestPOST
Method : POST
Source Type : PL/SQL
Requires Secure Access : No
Source:
begin
delete from ora_log;
insert into ora_log values (1, 2, 3, null, sysdate);
commit;
end;
The call is:
https://apex.oracle.com/pls/apex/orange/TestPOST
But Firefox returns Error: 405 - Method Not Allowed
Does anyone know how to resolve this?
Access to my Workspace is:
Workspace: ORANGE
User : guest
Password : 01range
My email : jeroen@orangeworks.com.au
Cheers
Jeroen