How to deploy Oracle forms application into web? - oracle

I am using Oracle Forms 11g to develop a screen and I want to deploy it in a application server in web? Which is the best cloud application server to deploy Forms application that already contains forms preinstalled in it
?
Also , please tell me what are the prerequisite of that server to run a small application ?(for personal use).
Does Oracle or any other cloud hosting company provide such a server for subscription ?
Thanks

Related

Connect free plan azure web app to oracle autonomous database proccessing

Recently I've created an account on oracle cloud and created a autonomous database processing, i have a simple .NET Core API, she connect on my cloud database using EF Core and returns select result in JSON format, on localhost works normally, my application was connect to database and returns my expected result.
When i publish the application on azure web app free plan, the application doesn't connect to my autonomous database, i think because i'm trying using a free plan, someone just tried do something? (Oracle Cloud + Azure Web APP)
It is possible that you are hitting the Azure Web App's sandbox restrictions. Some tips to troubleshoot:
Take a look at the documentation on this topic and see if it applies to your web app, https://github.com/projectkudu/kudu/wiki/Azure-Web-App-sandbox
Check if you can find the any errors via App Service Diagnostics, https://azure.github.io/AppService/2018/09/24/Announcing-the-New-App-Service-Diagnostics-Experience.html

How to deploy oracle apex application on client machine

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?

I want to learn how to create a windows application which will be connected to a server

I want to learn how to create a windows application which will be connected to a server and will fetch the data from server and can perform various functions. For example a library app on which we can view issued books, place hold on book etc.
I am a student and have basic knowledge about databases, web application and web architectures.
You can make a window application in .net with using Visual Studio, both .net have libraries to connect with MYSQL database.
here is how you can connect with your mysql database
Connecting to a mySQL database using asp.net

Does an online Android application generated by GeneXus connect to the database?

I'm using GeneXus X Evolution 3 and I want to install it in a production environment.
The web app works well, but the android one does not. It fails when starting.
Does the android app connect to the database hosted in the server? If so, how do I need to configure ports or what do I need to set in the datastore properties?
The native android application does not access your database. It accesses REST services hosted in your applications server and those connect to the database.
So what you have to set is the Services URL property.
If you have problems accessing the REST services, you may have some issues related to URL Rewrite or other common issues.

Connect to Oracle Server from cloud Azure Application

I am pretty new to Windows Azure, I want to migrate existing web application that connects to remote Oracle server and run it as a cloud service web role how can I accomplish this while windows azure has no Oracle client installed by default ? or in other words how can I connect from within .net application to a 64Bit Oracle database server without installing oracle client ?
I have worked with Oracle client long time back so some of things below may not be right. But here are some of your options:
You could make use of Oracle client for .Net provided by Microsoft and add those assemblies references in your project. When you publish the project, make sure that Copy Local attribute on those assemblies are marked as true so that those DLLs get packaged along with the rest of your application.
If you're using Oracle provided client for .Net, I remember we had to install that application on our web server. In that case, you could make use of something called Startup Tasks in your webrole and install the package when your role starts. You could either include the installer as part of your package and then install the software using a startup task.

Resources