How to hide Oracle Apex Database Application Code After Publish

a 夏天 提交于 2020-01-21 09:59:07

问题


With Oracle APEX, after I finished developing application I want to publish it to customer on its LAN network, when I export file I choose Build Status Override: Read Application Only But when I want to import it, it can be changed to Read and Build Application and -in other hand- its Build status can be changed to Read and Build Application from instance administration even if I imported it as Read Application Only.

I want to import Application in a way that no one can modify it or see its code.

Any Help Please ?!...


回答1:


You cannot prevent customers from seeing the code of your APEX application as it is all stored in plain text in tables. What you can do is put most of your code into packages which can be wrapped. (Mind you, you can get software to unwrap package code anyway, so this isn't bulletproof.)




回答2:


What you are describing is the APEX Runtime only install.

The documentation explains it here: https://docs.oracle.com/cd/E71588_01/HTMIG/converting-between-runtime-and-full-development-environments.htm#HTMIG29458

The short version is on the runtime only database run this script.

$ sql / as sysdba
SQL>@apxdevrm.sql


来源:https://stackoverflow.com/questions/48829603/how-to-hide-oracle-apex-database-application-code-after-publish

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!