How to deploy oracle apex application on client machine - oracle

I have created oracle apex application in oracle apex 18.0. Now I want to put it online so that end user can access it. I have searched for solutions but it's all showing deploying the application in Oracle workspace only. Will it need to install all Oracle stuff in client machine too? Can't I upload it on the server and provide URL to the client?

Related

Oracle Apex application and database

Can I run Oracle Apex application on window's server and connected database to linux server?
More info,
I want to run my oracle apex application on windows platform, and i want to have conected database on exadata on linux server. Is it possible to have the network connectivity?
If no, please share the documentation.
Searched everywhere, and ask oracle DBAs
Oracle APEX runs in the database, but you usually connect to it through Oracle REST Data Services (ORDS) that can run standalone where you have Java, or deployed in Tomcat, including Windows. You will access and develop the APEX application with a browser on Windows, or any other place where you have a browser.
Have a look at chapter three in the installation manual for APEX

How to Using Oracle client OO4O in VB6

I have an vb6 application working using Oracle 10g which uses oo4o to connect with database.
Oracle 10g is installed on remote Database server.
But i don't know how to setting on client PC to run vb6 application.
(When I run it, it shows error msg "ora-12154 tns could not resolve service name")
Please help me the way (step by step) to setting on client PC to vb6 application can be connected to oracle database.
Regards

How to run Oracle APEX application on Client side PC

How can I run Oracle APEX application on Client PC which is connected remotely to Database server side PC through Oracle Client Service software.
Oracle XE 11.2g
Oracle APEX version 19
Client service sotfware version 21.1.
You wrote an application. When you run it, all you need is a web browser. There's the application URL in browser's address line. It looks like
http://your.server:8084/apex/f?p=120:1:3120653734023:::::
Client (person) needs this part of it (120 represents APP_ID):
http://your.server:8084/apex/f?p=120
Send it to the client" who will just have to click on it and - if you're in the same network - get application's log in window. If you also provided username and password, client will be able to run the application.
Therefore, you don't have to install any Oracle software on client's PC.

Connect JDeveloper application to Oracle Live SQL

I am new to ADF/JDeveloper. I'd like to configure my ADF Web application to Oracle Live Server, since I'm using a Mac computer, which are not supported by Oracle's database distribution, I have tried to use Oracle VM but it freezes my Mac.
Needs information on database configuration panel are:
Host name
JDBBC port
SID
Oracle does not provide database connection information for the database behind livesql.oracle.com. If you want your own cloud database, you should look into setting up an Oracle Cloud Free Tier database. If you configure your database using the Always Free options, you should be able to have your database around for free forever.

ADO.NET for connecting Oracle Database on server

Recently we have developed an application which connects to oracle database for fetching records. For fetching records, we are using OLEDB for Oracle. Application runs fine on my machine by connectng properly with Oracle ,since i have oracle client installed on my machine. Now i tried to test application on another machine, which doesnot have any oracle instance/Client installed on his machine. Application fails to connect to oracle central DB Server. Is it necessary for users to install oracle client on their machine before the application communicates with Oracle.
Here is Connection string
connectionString="Provider=msdaora;Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=XYZ)(PORT=1521)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=abc.com)));Persist Security Info=False;User Id=mahens; Password=XXXXXXXXX" providerName="System.Data.SQLOLEDB"/>
The above code is for OLEDB for oracle. Is there any thing i required to install for connecting to central Oracle DB server from my windows application(.NET application installed on local machine).
If we try to use ODP.NET dll and include those dll's along within BIN directory,will that work?..Can any1 tell me a way wherein user need not install any oracle Client on their machine and communicate to server.
-Mahender
I believe you always need the oracle client installed as everything in .net ultimately uses ODP.NET. However, you can use the Oracle Instant Client to make your users' setup process easier.

Resources