如何在Apex Oracle中创建RESTful

时间:2018-10-01 07:48:35

标签: oracle oracle-apex

这是我尝试在apex oracle中创建Web服务的方式。

第一步:

创建RESTful服务首先进入SQL Workshop->     RESTful服务->创建并填写表单。

enter image description here

第二步:应用更改。 enter image description here

第3步:Web服务参考。

转到Application Builder-> ApplicationName->共享组件-> WebServices引用->创建。

enter image description here

第四步。填写表格 enter image description here

第五步:enter image description here

  1. 第六步 enter image description here

  2. 第七步 enter image description here

    第八步 enter image description here

    第9步:创建 enter image description here

    第十步:测试。但是它显示了一个错误。 enter image description here

完成上述所有步骤后,我无法从浏览器调用Web服务。请在这件事上帮助我。

1 个答案:

答案 0 :(得分:0)

您是否在此架构中使用ORDS? 如果你做类似的事情

   ords.enable_schema(p_enabled               => TRUE,
                      p_schema                => user,
                      p_url_mapping_type      => 'BASE_PATH',
                      p_url_mapping_pattern   => some_path,
                      p_auto_rest_auth        => FALSE);

然后可以将APEX中的默认映射更改为此调用的映射。