Deploy APEX Application

Hi,
I'm using Oracle Apex for development, I designed a small application. I checked with in my computer(as my PC is application server) when I use following link to different PC it can not be run
http://<my_pc_IP>:8080/apex/f?p=100:101:688126209521487:::::
can anyone describe me how I'll Deploy APEX Application?
Thank in advance.
Baloch

1. switch off firewall
2. Log to sqlplus as sys as sysdba and launch this:
begin
dbms_xdb.setListenerLocalAccess (l_access => FALSE);
end;
3. Try again

Similar Messages

  • How to deploy APEX Application within EBS module

    Hi Guruz,
    How to deploy APEX Application within EBS module, for example I have developed APEX application by using EBS Tables like OA Framework Development in jDeveloper. or anyone can clear my understanding regarding jDeveloper and APEX differences and both are same in relation with EBS Development.
    Regards,

    Hello,
    First of all you can delete delete the development environment, by executing apxdevrm.sql script.
    You can also wrap your packages.
    Regards

  • Deploying APEX application with web host

    Hi guys,
    Whats the process of deploying APEX application with a webHost?
    We got a good deal from a web host with dedicated database, it still being processed.
    Currently we have a domain name hosted elsewhere (non APEX host) . What I am planning to do is, create a subdomain with our existing web host and point it to the IP address of the DB machine the apex host will give us.
    So I am guessing the process will involve:
    1) getting the IP address of the database machine
    2) configure the my existing web hosting setup to create a sub-domain and make it point to the IP address (for example 174.184.223.441)
    Would I need Port number of the machine running Oracle DB with APEX and the local IP address (the one starts with 10.0.0.xxx) etc?
    Would be grateful if someone can share what you did given you already have a domain hosted and need to create a subdomain to make it point to another APEX host.

    Hi Jim,
    Try to replace,
    <jnlp spec="1.0+" codebase="http://localhost:8080/fileviewer" href="index.jnlp">
    with
    <jnlp spec="1.0+" codebase="$$codebase" href="index.jnlp">
    But i was using JNlpdownload servlet to do the task
    Regards
    Leo

  • Newly deployed apex application - very slow response time reported.

    Hi, we just deployed an APEX application on January 4th. It is used up and down the east coast to track commercially caught fish. There are currently about 375 users. Most are accessing via cable or dsl. Many are complaining of speed issues. Is there something that can be done locally on their machines to help.
    The application is complex and often must process through loops of data depending on the port, species, state reqs. Each of the queries has been run through the db tool that examines how optimal they are, and all run within seconds.
    Since the system is new, we are concerned that people will become frustrated and stop using it. ANy suggestions are appreciated. It was a 2yr project and had been in a test environment for 6 months.
    thanks, Karen

    What I would suggest is, the agents could try pinging the server that you are hosting the apps on, to see how long the ping takes to return. It maybe that the server is producing the pages fine, but the traffic is getting jammed on the way to the port agent..
    Just as an example, there have been severe issues with using Oracle's hosted instance of apex in the past 6-9 months. It's not an always occurrence, but for some folks it takes FOREVER to load the applications builder or even pages in the builder. The database server is performing fine, but the app server seems to be having issues, from what I gathered in one of the last messages from Oracle on the subject..
    You could try going outside your building and accessing your app in a similar fashion that your customers do..
    Thank you,
    Tony Miller
    Webster, TX

  • How to deploy APEX Application Changes

    Dear All,
    I have gone thru Oracle Application Deployment document and didn't find any guidance to upgrade the existing application with changes.
    This is my requirement.
    01. Application is already deployed to production environment
    02. Some changes has been done for few pages and database backbends.
    03. Need to build a script to apply these changes to production application without installing new application to it. So script will use existing application and apply the changes.
    04. Ones after application is upgraded, users will use same old URL to access it. NO changes to URL or application ID.
    05. We use Application alias to access the app. So if we import same app again to production environemt then second application will conflict with the existing application alias.
    * Only few pages and database backbends been modified. Scripts for database changes are available.

    Hi,
    I found the solution.
    01. Go to Install screen
    02. When ask to choose new application ID (Install As Application), choose "Change Application ID" option
    03. Then it will show a text box to enter application Id and enter the already installed application ID.
    04. Click "Install"
    05. It will show confirmation message "You have requested that the existing application <already exists application id shows here> be removed and replaced by the application to be installed. Please confirm this request"
    at this time press "Replace Existing Application"
    Thanks

  • Deploy and Apex application

    Hi,
    I'm new in Oracle Application Express, I have to design a sample project in Apex, can anyone describe me in step by step that how to deploy Apex application on a home network and access the application using a web browser from the clients computers.
    Thanks in Advance.
    Oscar

    See the manual: http://download.oracle.com/docs/cd/B25329_01/doc/appdev.102/b25309/deploy.htm
    Thank you,
    Tony Miller
    Webster, TX

  • Deploying an Application to a APEX 3.1.1 Runtime Environment

    Hello Everyone,
    I'm trying to work out how to deploy an application from a development to runtime environment but am facing a few issues / uncertainty and would appreciate any input/help on this. To begin with here is my environment:
    - Apex 3.1.1
    - Two Oracle 9i (9.2.0.8) instances running on different hosts (development environment on host AA and runtime environment on host BB)
    - Using the Oracle 9i HTTP Server with mod_plsql (on both hosts)
    - DEVLWS workspace +(on development env)+
    - DEVSCHEMA schema +(on development env)+
    - USER01 - non-developer & non-admin user +(on development env)+
    - DEV01 - developer and admin user +(on development env)+
    I'm performing this test deployment with the downloaded application Timesheets from apex.oracle.com with the application ID of 111 (when imported into my development environment).
    Situation:_
    I have no issues on the development environment. I can import the Timesheet app into it and run it using either the USER01 or DEV01 ID as it was imported into the DEVSCHEMA schema. However, when I try to deploy over to my runtime environment, here is where things gets sketchy on this.
    1) In order to get this application (Timesheets) to run properly on my runtime environment, I've to perform a Oracle9i EXP of my DEVSCHEMA objects and import this into my runtime environment using the IMP utility to get the proper workspace and associated objects over,
    --> I tried exporting the workspace on the development env but even after running it on the runtime env, I was not able to get the application to run (missing workspace schema, users etc).
    2) From my development environment, I export the Timesheet app with supporting objects option and on the runtime environment, I use SQL*Plus as such:
    SQL> alter session set current_schema=FLOWS_030100;
    SQL> @f111.sql
    Once the script completes, I use the http://hostBB:7776/pls/apex/f?p=111.1 url and was able to get in to the application, however I found things like the images are missing and I've to manually export these again from the development env and run the generated SQL script file on my runtime env.
    Is there a better (and documented step by step) way of doing this kind of deployment? The Apex User Guides talks about creating a packaged application but I didn't see this as a way to deploy specifically into a runtime environment as I followed it and still had missing images. When I did the export of the Timesheet application, I used the DEV01 id and made sure I selected the 'with supporting objects' option but yet I've to do most of the steps manually (i.e. build the schema, tablespace, application tables via exp/imp) and again the images were not included.
    Is there a document / note available that discusses this in better detail (deploy from Development env to Runtime env) so that I can do cut down the manual steps and making sure that my developers can effectively deploy our apps with minimal fuss and headaches? Appreciate any input.

    ...I've to perform a Oracle9i EXP of my DEVSCHEMA objects and import this into my runtime environment using the IMP utility to get the proper workspace and associated objects over,...
    EXP/IMP will not do workspaces. You can use the Application Express apex_admin application to export a workspace to a file. Then, in a runtime environment, you can install that workspace file using SQL*Plus. This way of
    creating the workspace also ensures that it will have the same workspace ID as it did in the original database, making possible the installation of exported applications from application export files from the original
    workspace into the new workspace having the same workspace ID and also where the installed applications are to have their original application IDs.
    ... and still had missing images. When I did the export of the Timesheet application, I used the DEV01 id and made sure I selected the 'with supporting objects' option but yet I've to do most of the steps manually (i.e. build the schema, tablespace, application tables via exp/imp) and again the images were not included.
    Images aren't part of application exports. Exporting the images to a file and then installing them using that file and SQL*Plus is the way to do it.
    As Patrick mentioned, running the application export file in SQL*Plus doesn't run the supporting objects script. It creates the script in the datbase. But in a runtime environment you can't run the script because the runtime environment lacks the Application Builder.
    SQL> alter session set current_schema=FLOWS_030100;
    SQL> @f111.sql
    You can install applications by connecting as a less privileged schema. Any schema assigned to the workspace into which the application is to be installed will do. To install workspace export files (or applications), you can also use a schema that has been granted the role APEX_ADMINISTRATOR_ROLE.
    Scott

  • How to deploy a JSP page into my APEX application?

    hi all,
    i am using a JSP to upload multiple spreadsheets into the db. i want to deploy it on the APEX and use it as part of my APEX application's uploading feature.
    i already have the JSP file with me. can somebody please tell me how to put that onto the APEX?
    Thanks,
    Basavaraj

    One way using JSP portal is, creating Portal project with JSP Dynpage applications
    You can use NWDS tool to create JSP Dynpage based Portal components.
    Procedure to create and deploy Portal  components,
    1. Open Enterprise Portal Perspective in NWDS
    2. Create -> new Portal Project -> Give the valid name
    3. Right click on the project -> Choose Portal Object -> JSP Dynpage -> Give all the information including JSP name. -> Finish
    4. Right Click on the project structure -> Properties -> Java Build Path -> All the following jars
            htmlb, com.sap.portal.html_api.jar, servlet
    5. Navigate to your JSP page located under the folder PORTAL-INF, Write logic
    6. Right click on the portal projet-> Refresh -> Re-Build
    7. Right Click on the portal project -> Export -> Give the Valid  Portal serverdetails, Admin user name and password
    8. You can create iView (iView from PAR) in content admin for the developed portal component
    Ram

  • APEX application deployment

    Hi All,
    I will soon be exporting my first APEX application from a development database to a test database. I do not want to export the data which the application is built on as the development database contains sample data instead of the "real" data. Before exporting my application, I will of course install APEX 3.2.1 in the test environment and then import the "real" data into the test database so that once the application has been exported and installed in the new environment, the APEX application will already have its data in place.
    On page 14-12 in Chapter 14 of the Oracle Application Express Application Builder User's Guide, I saw the following section:
    Exporting an Application
    When you export an application, Oracle Application Express generates a text file containing PL/SQL API calls.
    To export an application:
    1. Navigate to the Export page:
    a. On the Workspace home page, click the Application Builder icon.
    b. Select an application.
    c. On the Application home page, click Export/Import.
    d. On the Export/Import page, click Export and then click Next.
    2. From Application, select the application to be exported.
    3. From File Format, select how rows in the export file will be formatted:
    ■ Choose UNIX to have the resulting file contain rows delimited by line feeds.
    ■ Choose DOS to have the resulting file contain rows delimited by carriage
    returns and line feeds.
    4. From Owner Override, optionally select another owner. By default, the application is owned by the owner identified in the application attribute owner.
    5. From Build Status Override, select one of the following:
    ■ Run Application Only - Developers can only run an application
    ■ Run and Build Application - Developers can both run and edit an application
    Selecting Run Application Only is an effective way to protect an application from modifications from other developers.
    6. From Debugging, select one of the following:
    ■ Yes exports the application with debugging enabled.
    ■ No exports the application with debugging disabled.
    7. From Exporting Supporting Object Definitions, specify whether to export
    supporting object definitions with your application.
    8. From Export Comments, specify whether to export comments for this application.
    See "Adding Developer Comments" on page 6-22.
    9. Use the As of field to export your application as it was previously defined. Specify the number of minutes in the field provided.
    10. Click Export Application
    Since I do not have any images, themes, static files, workspace users, cascading style sheets, etc, to export, it makes no sense to use the “Packaged Application” method to perform the export. All I need is the application definition that contains all my interactive reports, forms, etc.
    The next step would then be to Import the application into the target Oracle Application Express instance and install the application.
    This method should be OK for my needs, right?
    Thanks

    By simply doing an application export, all you will export is the metadata associated with your application (page definitions, items, processes, validations etc).
    No "Customer Data" will be exported neither will any tables or PL/SQL packages that are owned by your parsing schema.
    If you aim is simply to export the APEX application and no tables, pl/sql units, data etc, then doing a simple application export should be good enough. Thats all we ever do and then add the PL/SQL units / table data on top as additional scripts.
    Hope that helps
    Duncs
    http://djmein.blogspot.com
    As a courtesy, please remember to mark helpful or correct responses accordingly :)

  • SSO for Oracle Apex application

    Hi All,
    I am working on the requirement where the client want to implement the SSO for the apex application which are in different workspaces.
    But not using oracle SSO server :(
    The Microsoft active directory is used for authentication.
    Please give me some idea how to implement SSO for these apex applications.
    Thanks & Regards,
    Prutha

    Hi,
    I am trying to implement Single-Sign On for my Apex applications. Below are the requirement steps:
    This is working fine within same WORKSPACE and on single DB, but I need to implement SSO across DB with different workspaces.
    1. I have *2 Databases* DB-1 and DB-2. Both are different and running on different machines.
    2. On Both DB's Apex is configured.
    3. I have to deploy an app which uses internal Application Express account credentials for Login on DB-1
    4. From DB-1, after login, I have to provide a link to open another Apex App deployed on DB-2
    5. All Apex Apps on both DB's are using same Authentication Schemes.
    6. In both DB's I have PAGE SENTRY function for session validation.
    Can we configure Apex only once on both DB servers like RAC. Do we have any admin setting in Apex by which we can achieve th motive.
    Please help me to implement such functionality using only Apex across different DB's and different Workspaces.
    Thanks,
    Ismail
    Edited by: user9536278 on Mar 27, 2012 4:18 AM

  • Best Practice for implementing dual APEX applications environment

    Question:
    We are in the early stages of building an APEX application for Oracle SaaS consumption. The question I wanted to ask you is what would be the best way to deploy this app for production? Would it be easier just to create a new workspace in apex.oraclecorp.com and export the app definition or create a new instance of APEX container? Also, if we were to create a new container then what are all the hardware/middleware required?
    Follow up questions:
    1. What are you building and for what purpose?
    We are building an application for oracle employees (development, operations, and support) to assist in interacting with the CRM Saas environments. Entering bugs, tracking patch level, obtaining relevant environment contacts & urls.
    2. Who will be installing this application? Oracle customers? In their own on-premise APEX instances? Oracle Cloud?
    For the foreseeable future, there will only be the one internal install for internal use (CRM SaaS Enablement Team, DevOps).
    3. What are the database and APEX version requirements you'll have for this application?
    We do not have a particular requirement. The latest GA version would be the best candidates.
    4. Is it safe to say that there is minimal understanding & experience of APEX on your team?
    All we know is self-taught and from forum responses. Part of the problem we face is that we don’t know how to frame the questions in a way they can be understood.
    APEX container - By this I mean a fully functional APEX environment where applications can be deployed to.
    Use Case - We want to be able to make our Apex app available to the consumer (see above) and also continue to develop new features into that app for use at a later date. We are asking for information about a development model that works well for Apex apps.
    Thanks!!

    Moved the question to the internal Oracle forum:
    http://myforums.oracle.com/jive3/thread.jspa?threadID=1058413

  • Export APEX application will not import to another APEX instance

    Oracle XE 11gR2
    APEX 4.1.1
    Windows 7
    ===============
    Get the following error when trying to import (via SQL*Plus) an APEX application:
    ORA-02291: integrity constraint (APEX_040100.WWV_FLOWS_FK) violated - parent key not found
    ORA-06512: at "APEX_040100.WWW_FLOW_API", line 679
    ORA-06512: at line 3
    Used the following PL/SQL block to import APEX application:
    declare
    -- the name of the workspace in which to import -- actually your parsing schema
    t_workspace varchar2(30):= 'APEXAPP';
    -- an application number of an existing application in the workspace.
    t_existing_app number := 103;
    -- the "new" application number, an existing number will be dropped first.
    t_new_app number := 103;
    -- security group id, you don't have to set this variable
    t_secgrp_id number;
    begin
    -- get the Security Group ID
    select workspace_id
    into t_secgrp_id
    from apex_applications
    where application_id = t_existing_app;
    wwv_flow_api.set_security_group_id(p_security_group_id => t_secgrp_id);
    apex_application_install.set_application_id(t_new_app);
    apex_application_install.generate_offset;
    apex_application_install.set_schema(t_workspace);
    apex_application_install.set_application_alias('APEXAPP' );
    end;
    @C:\DEPLOY\APEX_APP.sql;
    commit;
    =====================
    I recently did an upgrade from APEX 4.0.2 to 4.1.1 but there were no apps in this particular APEX instance. Just needed an upgrade because the APEX that
    comes with Oracle XE database is 4.0.2 and we are developing with APEX 4.1.1
    Please advise. This block has been used before to deploy APEX exports.

    I'm front of the same issue.
    Did you find a solution ?
    Thanks for help.
    Fanny

  • CAN'T LOG IN APEX APPLICATION

    Hi, I am working with apex 3.2, when I try to login to the application it immediately shows Please contact the administrator. . I am no expert, the first thing that I check was the http on the Data Base Server, It is on maintenance state, but in other application the http service is also maintenance and the application is running, so I don't think this is the cause.
    Also check the data base schema and look at the Apex Administrator page and don't see anything wrong.
    I hope that someone can give some ideas to keep checking and find the error.
    Thanks.

    So it sounds like you can login the Apex application builder but not an application that you've built/deployed. If this is the case I would start looking at either the authentication scheme or the user account settings if your using the Apex authentication.
    Perhaps you could recreate the problem and post a screenshot somewhere of the error page that you see (you can't post images here on the forum)?
    Earl

  • How does APEX import a packaged APEX application

    I was wondering, if someone might help me to better understand how APEX imports a packaged application.
    The typical packaged application file looks like a simple SQL*Plus Script that needs to be processed by SQL*Plus from PL/SQL on the server.
    I would be most interested to understand how APEX handling this process because it might really help me (and probably many others) to improving our own installation process.
    Thank you in advance for any information!

    The documentation contains an entire chapter on Deploying an Application. This appears to be a good place to start.
    The tutorial How to Review a Packaged Application would also be worthwhile.
    (Please update your forum profile with a better handle than "user8607986".)

  • Deploy an application - Use a different workspace and different schema

    Hi,
    I have completed my application in my testing server, database, schema, and workspace. And now I would like to deploy my application to the live server with different database, schema and workspace.
    I have gone through the Application Express User’s Guide and I have managed to export and import my old app to my new application. However, I failed to import my table from old database schema to my new schema. So, I can’t able to open my new application due to error in executing authorization scheme code.
    May I know how do I import my old schema to my new schema and both schema are different name.
    Thanks.
    Penny

    Create a database link in your production environment and use the following script to update the content of the tables from your development:
    DECLARE
       v_tab_columns   VARCHAR2 (32000);
       v_db_link       VARCHAR2 (30)    := '@dev';
    BEGIN
       /*FOR a IN (SELECT table_name
                   FROM user_tables)
       LOOP
          EXECUTE IMMEDIATE 'TRUNCATE TABLE ' || a.table_name || '';
       END LOOP;*/
       FOR c IN (SELECT table_name
                   FROM user_tables)
       LOOP
          FOR d IN (SELECT   column_name
                        FROM user_tab_columns
                       WHERE table_name = c.table_name
                    ORDER BY column_id)
          LOOP
             v_tab_columns := v_tab_columns || ', ' || d.column_name;
          END LOOP;
          v_tab_columns := LTRIM (v_tab_columns, ',');
          BEGIN
             EXECUTE IMMEDIATE    'INSERT INTO '
                               || c.table_name
                               || ' SELECT '
                               || v_tab_columns
                               || ' FROM '
                               || c.table_name
                               || v_db_link;
             v_tab_columns := NULL;
             DBMS_OUTPUT.put_line ('Updated table ' || c.table_name);
          EXCEPTION
             WHEN OTHERS
             THEN
                v_tab_columns := NULL;
                DBMS_OUTPUT.put_line ('Failed updating table ' || c.table_name);
          END;
       END LOOP;
    END;Replace @dev with your database link.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

Maybe you are looking for

  • Error in vl01n

    hello sir,                 i m getting same error while creating pgi(post goods issue) in vl01n  and keeping stock through tcode mb1c which is"error during document  number assinment ". kindly help me to solve these errors Regards, chhavi

  • ICloud grayed out?

    My I icloud app on my iPhone 4 is all grayed out. Anyone familiar with this problem? Is there a way to reinstall?

  • How to hook my go pro up to my iMac?

    what programs do i need to view my content?

  • SCOM 2012 R2 Server Hardening Question

    Hi All, With reference to http://blogs.technet.com/b/operationsmgr/archive/2009/06/15/new-security-hardening-guide-for-operations-manager-2007-r2-and-windows-server-2008.aspx  I would like to know is there any update for SCOM 2012 R2 on Windows Serve

  • Vendor range in SRM

    Hi experts i've imported by bbpgetvd some vendors from ECC 6.0 to SRM 5.0 but some are wronged. I've deleted the needed by ppoma_bbp but i'd like to know if there is a way to go back with the number range of vendors i think abou trans SNUM.... regard