Reputation: 552
After I installed oracle APEX and built my application, How can I share/publish application URL to Other Computer connected via the same router ?..
Please Help me.
Upvotes: 1
Views: 4314
Reputation: 31
By default your HTTP port is disabled, first you have to make it enabled.
To do it, this command needs to be executed:
(execute dbms_xdb.setListenerLocalAccess(l_access => FALSE);)
Upvotes: 0
Reputation: 448
So from your other computer accessing the same network, launch a browser, then type the address to your Apex application, which usually follows the format:
http:// [your-IP-Address]:[assigned-port]/apex/f?p=[Application-Number]:[Page-number]
So you need the following information:
As an example, it may look like:
http://192.168.8.115:8080/apex/f?p=100:1
So in the above case, my app number is 100 (go to your application list to see this number), and my landing page is page 1, which is the designated login page inside my app #100.
Hope this helps!
Upvotes: 2