how to deploy oracle application express ( APEX ) in windows server? - oracle-apex

how to deploy oracle application express ( APEX ) in windows server ?
any one know about the answer for this question.

you can install Oracle Apex on windows server in the following 2 ways:
If you already have a central database server. You have to install a Java based application server such as: Tomcat, Glassfish or commercial as Weblogic. Then install Oracle Rest Data Services as Apex Integrator. I recommend that you read the following article: https://oracle-base.com/articles/misc/oracle-rest-data-services-ords-installation-on-tomcat
As a second option you would have to install the oracle database in any of its editions for windows platforms and later Install or configure Oracle Application Express (APEX) preferable version 5 or later. you can follow the following link: https://oracle-base.com/articles/misc/oracle-application-express-apex-5-0-installation.
I hope I can be of your help.
Greetings.

Related

What's the purpose of Installing ODAC while Oracle Server is already installed on the system

I already installed Oracle Server on my System. It also installed the ODBC drivers. I also have .net and c++ application that uses ODBC to connect to my database. My question is do I need to install ODBC on the same system where Oracle Server is already installed with the ODBC driver or no? What's the purpose of installing ODAC.
ODAC isn't a product. Instead, ODAC is a collection of drivers that provide Oracle client connectivity to Oracle.
If you are asked by the Oracle installer software to install a particular Oracle driver, (ODBC, OLE DB or a provider for .NET) then you just need to install whole the ODAC package. ODAC consists of these tools:
The Oracle ODBC Driver
Oracle Developer Tools for Visual Studio
Oracle Data Provider for .NET
Oracle Providers for ASP.NET Oracle Provider for OLE DB
Oracle Services for Microsoft Transaction Server (MTS)

How may i connect ruby on rails with sql server on windows

Want to use sql server as a database instead of mysql in Windows.What configuration i need to change in database.yml file and what all gems are needed for installation.Please help.
Sorry to disappoint you, but there are no easy solutions for using Rails on a Windows platform. It was not designed to run on Windows and I don't think I would recommend Windows as a platform for a Rails app. Not to say it hasn't been done, but in my experience it would be far easier to setup and run on a Linux platform as it was designed to do.
There is support for MS SQL server and Rails and you can checkout this project for more information.
My recommendation is to learn more about Rails and setting it up the environment, because a red flag to me is that you want to deploy a Rails app and yet do not know how to set it for production. This should be Rails 101 knowledge. Production is just another environment for Rails, there are things you need to be aware of when running a Rails app in production and this information can be found on easily rubyonrails.org.
Put some more time into learning Rails and perhaps setup a Linux virtual machine, deploy your Rails app, and experiment. Once you learn how to deploy Rails on a Linux platform them perhaps it may be a little easier to understand how to go about doing it on Windows.
please refer :-- https://github.com/rails-sqlserver/activerecord-sqlserver-adapter
Or else you can try with this
What is left is to learn is how to use database engine that is probably of the most interest for developers who work on Windows – Microsoft's SQL Server. If you do not have MS SQL Server installed go ahead and download MS SQL Server Express installer from Microsoft's site. I will use version 2014 in this book. Let's first create database that we will use in our Rails application:
osql -b -S localhost -U -P -Q "CREATE DATABASE RwinBookDevel COLLATE SQL_Latin1_General_CP1_CS_AS"
Newest rails adapter for MS SQL Server uses tiny_tds library to connect to MS SQL server and its usage is almost straigtforward. First thing we have to do is to add following two lines to Gemfile:
gem 'tiny_tds'
gem 'activerecord-sqlserver-adapter'
And run bundle install.
With all prerequisites met we can now configure our Ruby on Rails application to use SQL Server. Connection options are displayed below:
development:
adapter: sqlserver
mode: dblib
host: localhost
port: 1433
username: <your_db_user_name>
password: <your_db_password>
database: ABC
Hope this will help you......

Oracle APEX RESTful does not have Test section

I have a local install of Oracle XE, APEX 5.0.4.00.12 and ORDS 3.0.6.176.08.46 and I'm following this tutorial http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r50/Restful%20Services/restful_services.html
I noticed that compared to the tutorial, my instance does not have a Test section. Is this due to a misconfiguration or possibly a version issue?
Solved it by:
Disabling the default APEX port
EXEC DBMS_XDB.SETHTTPPORT(0);
Turning on ORDS
java -jar ords.war

wamp server not working on 8.1

I just upgrade to win8.1 from win8 and I can't start wamp server (2.2 x64)
It was working fine on win8
Try checking that the Apache and MySQL services are still registered as services.
Look in Windows Services for services called - 'wampapache' and wampmysql'
Or if you have WAMPServer 64bit wampapache64 and wampmysqld64
If they dont exist do the following:-
wampmanager -> MySQL -> Service -> Install Service
wampmanager -> Apache -> Service -> Install Service
Then try to restart all services.
After Upgrading of window to window 8.1.
Please click on the wamp icon go to apache then services and then click on install services. And then go to mysql and services and click on install services and the restart your wamp. And enjoy your coding. Hurry
I've also gone through this situation. I checked the services and there "wampapche" and "wampmysqld" services are disable I've tried to start the services and the service didn't start stating a 1058 error. Then I changed the startup type from manual to automatic and now it's working.
all of your's answers are wrong, not only wampserver but also xampp is not working on windows 8.1 because apache server is not running in windows 8.1 with port 80, becouse port 80 is system reserved port.
#Ahmed that has been what described on the above posts. The simple answer is after upgrade we need to restart the services as they are stopped and yes it depends on the user whether they are going to keep it running or closed as they can choose whether to start manually or automatically.
Apparently Windows 8/8.1 are missing some essentials. The solution is to install Microsoft Essentials for Windows 8/8.1. This adds the .NET framework with all the necessary APIs that allow Wamp to function as designed. You can download Windows Essentials from herE: http://windows.microsoft.com/en-us/windows-live/essentials . I have already tested this out on several devices, including my laptop and desktop running both Windows 8 and 8.1. Good luck! :)

does windows appfabric require Sql Server Express?

I am using the windows platform installer to install AppFabric, it says that SQL Express is required? Can't i use the SQL Server R2? I don't really want to install SQL Express.
No, you absolutely can use full SQL Server with AppFabric. I suspect it's listed as a dependency in the Web PI so it'll install correctly for people who don't have SQL Server installed.