One Application deployed a different workspace

I am deployed a one Application in Different schema and different Workspace but this process is very slow and how can Change a Security Group id in apex application Script if any possibilities then tell me about Changing Security Group id then i am import a application in command line / Linux Terminal .
if any Possibilities then tell me.
Edited by: Asim on Jun 4, 2010 10:03 AM

Tom,
Yes, you can :-)
See [this link|http://download.oracle.com/docs/cd/B25329_01/doc/appdev.102/b25309/deploy.htm]
Generally when I move my applications from one workspace to another, I export my APEX application and then I will import it in Target workspace. I prefer to move all database objects separately using tools like TOAD or SQL developer.
Cheers,
Hari

Similar Messages

  • One Application deployed OK;  my app always gets error "404 Not Found"...

    I am trying deploying my application from within JDeveloper 10.1.3.4 to the standalone oc4j on the localhost, before deploying it on an application server. I am a newbie and I am doing this by following a tutorial. The tutorial application is deployed fine, but my application always gets the "404 Not Found" error after deployment.
    The standalone oc4j is set up on my Windows XP PC by running the <jdev_home>\jdev\bin\start_oc4j.bat file, and works fine because the tutorial application is deployed and runs fine.
    For the tutorial application, deployment is the last chapter (Chapter 10). I started from the nearly completed tutorial application from the end of Chapter 9, and went throug all the steps in Chapter 10 and the application is deployed and invoked successfully.
    My application starts with the login.jspx page. The applilcation runs perfectly when invoked directly within JDeveloper by right-clicking login.jspx and selecting Run. But when going through the same steps as with the tutorial application, my application always gets "404 Not Found" in the browser.
    The steps of deployment are:
    1. Right-click the ViewController project, select New and then Deployment Profiles/WAR File, to create the deployment profile. When creating this profile, I entered "ZBV" as the custom root context.
    2. Right-click the deployment profile (ZBV.deploy), and "Deploy To..." the standalone oc4j on the localhost, and accept the default configuration. The messages in the log window in JDeveloper are all clean without error.
    3. Open a browser, enter the url "http://localhost:8888/ZBV/faces/staff/login.jspx and get "404 Not Found". I have undeployed and gone through the same steps several times and always got the same error. I use /staff/login.jspx after ZBV/faces because in the Application Navigator, the login.jspx file is located in the ViewController/Web Content/staff folder.
    I wonder what could be wrong with my application. In the tutorial it is said that both an .ear file and a .war will be created but only the .war file needs to be created because of the dependency of the ViewController project on the DataModel project set in the application. My application has this dependency set therefore I went throug the same steps as with deploying the tutorial application.
    I hope the experienced and experts and gurus will shed light on me with their experience and wisdom.
    Many thanks!
    Newman

    Hi, Shay,
    You are right. I checked the log and found one notification message:
    Unable to dispatch JSP Page : Exception:java.io.FileNotFoundException: /staff/Login.jspx
    The capital L is a typo when creating the page file. During development you never need to type the file name but just click, and I always thought it was login.jspx. When that is corrected in the url string, the application is invoked and runs as it should. The one letter drove myself crazy for a whole day.
    Sorry and thanks! And to Dom too!
    Regards,
    Newman

  • 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
    -------------------------------------------------------------------

  • How to copy one application to a new workspace in the same HTMLDB instance?

    Hi,
    I have an application running in production and I need to duplicate it into another workspace in the same instance, using another db schema with imported objects from the original one, as my area here has just been split in two and now we need two separate development environments. I tried exporting it from the old workspace and importing into the new, but when I try to install the app (using a new id) I just can't do it through the htmldb interface, as i get a timeout and page not found. I tried then to run the dump script directly in the database, but I couldn't find any reference in the script to a new application id or workspace, and after trying I found out that it only changes the owner of my original app (as I chose owner override when exporting).
    Does anybody knows how should i do it to ?? Perhaps there are some variables in the script I could change to make it into a new app in a new wokspace ??
    PS. I'm using HTMLDB 1.5, and it would be very difficult to change to a new version right now.
    Thanks,
    Nelson Sattler,
    Brasília, Brasil
    Message was edited by:
    nsattler

    Hi nsattler,
    Assuming u have apps in workspace1 .And u want to import that apps and install it in new workspace2.So before that u need to create workspace2 pointing to the diff schema that u mentioned .
    Then import the apps and install.......i dont know why you getting timeout .Ideally it should not have any error except the version compatibility.If u export using 1.5 then u can import it into any upper version say 1.6 .
    One thing u can do run the exported script from sql*plus and track the error .If there is no workspace identified from HTMLDB interface that means ur exported file is not version compatible or u can change p_provisioning_company_id of sql file and put the value of ur present workspace p_provisioning_company_id and then try to run it from SQL*PLUS.
    I also suggest u to upgrade from 1.5 to 1.6 or 2.0 to get more benefit of the fixed bug....
    Cheers,
    ROSY

  • Buy one application for two different Touches, slightly different details

    Hi, I have a couple questions about applications and the touch, my brother and I are getting touches for our birthday and we don't know if we can buy one app and use it on both our players or not. Someone said if both are linked to the same account it's ok but our parents are going through a divorce so we'll likely be living apart...exactly how does it work? W euse the same account but we'll be on different computers so can we do that? Or will be have to have different accounts because we'll be living apart? We use one account and buy as many apps to use on both as we can before we move? If anyone knows and can list the steps we'd appreciate the help

    If you bought an app once and synced it to two different IPT's you'd almost certainly be in breach of Apple's licensing terms. In any case I imagine their apps DRM would prevent you from doing so. You're probably going to have to get separate iTunes store accounts. The divorce shouldn't affect this, there's no reason both accounts can't be registered with the same credit card #.

  • Application deployment on WebLogic 10.3.2

    I am trying to understand the best practice to deploy web applications on WebLogic 10.3.2. Is it recommended have a managed server for each and every deployment or can we have multiple deployments under one managed server. Will there be any performance issues when multiple deployments are running on one managed server? Also can we have each deployment on one managed server listen on common http port?
    Please advice.

    **Is it recommended have a managed server for each and every deployment or can we have multiple deployments under one managed server.
    --You can deploy multiple applications of one single managed server.
    **Will there be any performance issues when multiple deployments are running on one managed server?
    --There will not be performance issue as such; however you have to make sure that the system and server configurations meets the requirements.
    --WebLogic Server allows you to configure a work manager where you define the rules and constraints for your application to boost the performance.
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/config_wls/self_tuned.html
    **Also can we have each deployment on one managed server listen on common http port?
    --Just to make sure if I understood correctly, did you mean one deployment per managed server listen on same http port?
    --If yes, each managed server will have its own unique http port. So application deployed on that will be using a port associated with that managed server.
    --In case if you want all the applications to use a same IP/Port, you can use proxy which will route the requests to these applications deployed on different managed servers.
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/plugins/overview.html

  • One application with Multiple schemas- common application frame work

    Hi All,
    I am trying setup a common application frame work in apex. Please help me.
    How to achieve this.
    Creation of one application attached to different schemas at run time. So that my application maintaince is going to be easy instated of creating copies of same application.
    More details:
    1. I have one application with 100 pages pointing to a schema dev_common in one workspace APP_COMMON. I have 50 schemas with same structure of dev_common schema with different set of data ( because of large amount of data).
    So I want to create one application attached to different schemas.
    2. And another thing is I have 100 users, the user can work on 1 or multiple schemas ( I mean same application with different schemas attached)
    Any help much appreciated.
    Thanks,

    Thank you for the reply.
    >> b) I think you have to give access rights for the dev_common and app_common to all users.
    Dev_common schema is a kind of placeholder. I have 50 schemas same as dev_common because of different business requirements but the front end is same for all 50 schemas. How can we create one application used for 50 schemas instead of creating 50 applications and 50 workspaces.
    Please help me.

  • Issues with spring application deployment on weblogic

    Hi,
    We have a weblogic server which doesn't have access to internet. I am trying to deploy a spring application, i get the following error. Can somebody suggest how to fix this issue.
    [12:31:58 PM] Entering Oracle Deployment Plan Editor
    [12:32:22 PM] Redeploying Application...
    [12:33:04 PM] [Deployer:149191]Operation 'deploy' on application 'TEST_application1' is initializing on 'server1'
    [12:33:12 PM] [Deployer:149193]Operation 'deploy' on application 'TEST_application1' has failed on 'server1'
    [12:33:12 PM] [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application TEST_application1 on bi_cluster.: :oracle.xml.parser.schema.XSDException:Tried all: '1' addresses, but could not connect over HTTP to server: 'www.springframework.org', port: '80'.
    [12:33:12 PM] Weblogic Server Exception: weblogic.application.ModuleException: :oracle.xml.parser.schema.XSDException:Tried all: '1' addresses, but could not connect over HTTP to server: 'www.springframework.org', port: '80'
    [12:33:12 PM] See server logs or server console for more details.
    [12:33:12 PM] weblogic.application.ModuleException: :oracle.xml.parser.schema.XSDException:Tried all: '1' addresses, but could not connect over HTTP to server: 'www.springframework.org', port: '80'
    [12:33:12 PM] #### Deployment incomplete. ####
    [12:33:12 PM] Remote deployment failed
    I am expecting, the validator should pick up the xsd/DTD from the classpath instead of going over the internet, isn't it?
    Versions
    Jdeveloper : 11.1.1.6.0
    Weblogic : 10.3
    Thanks

    **Is it recommended have a managed server for each and every deployment or can we have multiple deployments under one managed server.
    --You can deploy multiple applications of one single managed server.
    **Will there be any performance issues when multiple deployments are running on one managed server?
    --There will not be performance issue as such; however you have to make sure that the system and server configurations meets the requirements.
    --WebLogic Server allows you to configure a work manager where you define the rules and constraints for your application to boost the performance.
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/config_wls/self_tuned.html
    **Also can we have each deployment on one managed server listen on common http port?
    --Just to make sure if I understood correctly, did you mean one deployment per managed server listen on same http port?
    --If yes, each managed server will have its own unique http port. So application deployed on that will be using a port associated with that managed server.
    --In case if you want all the applications to use a same IP/Port, you can use proxy which will route the requests to these applications deployed on different managed servers.
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/plugins/overview.html

  • Sound only plays from one application at a time

    I've been having a problem recently with my laptop where it will play sound just fine, but only for one application.
    Explained differently, if I try to start anything that would play sound, and if something else is already playing sound, there won't be any sound from the newer source, and if I want it to play sound, I would have to mute the first source and restart the second.
    Another oddity to this problem is that I can work around this problem by first muting the first source, then starting up the second source, and un-muting the first. This can also be done with additional sources by muting everything that came before it. However, this does not work in every case, and having to do so everytime is rather tedious. I've looked for a few solutions already (Checking drivers, etc.) but nothing seems to work.
    Laptop: Satellite L755D-S5104
    OS: Windows 7 Home Premium Service Pack 1

    Hi V07,
    Here is what I've notice when Im playing a video sound using K-Lite Codec [Media Player Classic] then while the sound plays on the background. I started to play the game LOL (Leagua of Legends) and it provides me both sound the LOL and video sound with no issues.
    I tried playing video using Media Player Classic and open another video using VLC Player both of this application works fine with no conflict. Both of the player provide good quality sounds.
    You can try installing K-Lite Codec [Media Player Classic] and VLC player.
    K-Lite Code for Win7
    http://www.codecguide.com/download_kl.htm
    VLC Player for Win7/Win8
    http://www.codecguide.com/download_other.htm#videolan
    Im hoping it will work to your laptops because on my Toshiba laptop it works perfectly.
    BTW IF YOU THINK IT HELPS ALOT. PLEASE DONT BE AFRAID TO CLICK KUDOS star^_^
    - cokies

  • How to read or access application link -url in Applications tab of BPM Workspace

    Hi
    I have a application deployed on BPM Workspace and link to open initiator task is present in Applications tab of BPM Workspace. I want to open that initiator task link from a task. So I want to know how the link for initiator task is created and can i move that link to other tabs?

    Hi,
    this post describes how you can get initable tasks via the BPM API: Beginning Java &amp;amp; SOA Development: Getting BPM InitiableTasks and Initiating a Task
    Does this work for you?
    Viele Grüße,
    Danilo

  • Copy Images from different workspace

    Hi,
    I have an application that uses 4 images. These images are in shared components -> images of that application. This application is in the workspace, say 'X'
    When I go to these Images I see - #APP_IMAGES# xyz.gif
    The only options I find there are - Display install file script and Display deinstall file script.
    Now I want to use these images in my application. I am developing this application in a different workspace, say 'Y'.
    How do I get these Images into my workspace? And put it in the shared components of my application.
    Please Suggest.
    Thanks.

    Hi ,
    Try this
    Open Home>Application Builder>Application X>Export / Import>Export->see the tabs Workspace Users      Application      CSS      Images      Files      Themes      User Interface Defaults now click the image then proceed->
    choose from Export Images in Application selectlist X->File Format=dos->Click EXPORT IMAGEs button.
    X.sql file will get download
    go to your workspace and choose Y application
    Select the file you wish to import to the export repository. Once imported, you can install your file.
    Open Home>Application Builder>Application Y>Export / Import>Import-> browse the sql file and
    File Type=image import
    click Next button-> image will import in your Y applicaiton
    Conform by checking this under shared components-> images
    Thanks
    Mark Wyatt

  • One application is really slow when ran locally in JDev

    Hello,
    I have JDeveloper v 11.1.2.1.0. It happens that at least one application deployed as WAR in my local WLS is really slow and I don't understand why.
    Everything is slow and this does not apparently depend on the latency of the local network.
    It looks like every http request is slow, from pressing a button to changing the record in a table. For example, opening/closing a popup might require 1 minute (considering the changing of the icon of the pointer of the mouse as a time indicator)
    I repeat: every operations that do not involve the network directly is slow. My hardware is based on a 64-bit quad-core with plenty of GB of memory, so I guess it is not the bottleneck in this case.
    What is really strange is that if I run another application locally the same operations are more responsive as expected.
    Not only that: if I deploy this slow application to a production WLS or I give it to a collegue in the same network, the application run smoothly.
    Do you have any idea? This looks so strange to me.

    Ok, I set the loggers to CONFIG (from the root node of the logger tree). Result: nothing printed out to the console (except our loggers are enabled with CONFIG).
    To see something coming from the Server I had to switch to FINE level, at which point it started to print out all some messages.
    For example, after closing a pop-up (one of the slow operation I have talked about), the server keeps repeating the below messages for various seconds (until the mouse pointer changes from "thinking" to "non-thinking"):
    <ComponentContextManagerImpl> <pushChange> Component context change pushed onto the stack. Change: UIXInclude.IncludeContextChange[Component class: mycompany.components.MyComponent, component ID: sdcsdl8]. New stack size: 2
    <ComponentContextManagerImpl> <popChange> Component context change popped from the stack. Popped change: UIXInclude.IncludeContextChange[Component class: mycompany.components.MyComponent, component ID: sdcsdl8]. New head of stack: UIXRegion.RegionContextChange[Component class: oracle.adf.view.rich.component.rich.fragment.RichRegion, component ID: r1]. New stack size: 1
    <ComponentContextManagerImpl> <pushChange> Component context change pushed onto the stack. Change: UIXInclude.IncludeContextChange[Component class: mycompany.components.MyComponent, component ID: sdcsdl7]. New stack size: 2
    <ComponentContextManagerImpl> <popChange> Component context change popped from the stack. Popped change: UIXInclude.IncludeContextChange[Component class: mycompany.components.MyComponent, component ID: sdcsdl7]. New head of stack: UIXRegion.RegionContextChange[Component class: oracle.adf.view.rich.component.rich.fragment.RichRegion, component ID: r1]. New stack size: 1
    <ComponentContextManagerImpl> <pushChange> Component context change pushed onto the stack. Change: UIXInclude.IncludeContextChange[Component class: mycompany.components.MyComponent, component ID: sdcsdl6]. New stack size: 2
    The above messages are repeated for all the ID components found in the page, which are about 20. They are the below components (see sdcsdl11), which are attacted to "customized" inputLov-items present in the records of a table. These records have about 20 visible input components nested as below :
                                               <af:column
                                                    <af:inputListOfValues autoSubmit="true"
                                                                          columns="#{bindings.Cod.hints.displayWidth}"
                                                                          id="COD"
                                                                          popupTitle="#{adfBundle['lib.rb.Label']['LOV']}"
                                                                          required="#{bindings.Cod.hints.mandatory}"
                                                                          readOnly="false"
                                                                          shortDesc="#{bindings.Cod.hints.tooltip}"
                                                                          launchPopupListener="#{pageFlowScope.MyComponent.openLov}"
                                                                          returnPopupListener="#{pageFlowScope.MyComponent.returnLov}"
                                                                          label="#{adfBundle['lib.rb.Label']['COD']}"
                                                                          value="#{bindings.Cod.inputValue}"
                                                                          partialTriggers="OTHER_COD"
                                                                          binding="#{pageFlowScope.UiBindings.dCod}">
                                                        <f:facet name="searchContent">
                                                            <retCompLib:MyComponent id="sdcsdl11"/>
                                                        </f:facet>
                                                    </af:inputListOfValues>
                                                </af:column>I don't know if I am near to the root of the problem or still far from it.
    In othe prohects with the same number of these components, I do not see any problem.

  • Deployment Issues, Different  Jars for Diff Java in one application.

    HI,
    I need to put classpath (Jars) for my WEB-INF/classes. Different Jars for Diff files in one application.
    The problem is , for one ofmy application, the lib files are x.jar and y.jar , x is older than y but have same
    lib files. in x and y, there is one class , r.java , which have a method method1(). whey they are doing modifications in y.jar , the r.java has changed to new vertion, the method method1() they re-written the body.
    My application have 5 java files, in which 2 files uses r.java imported from the x.jar earlier.
    Now we need to use y.jar because , the y.jar have more files added with good futures. But the earlier 2 files are giving exception if i use y.jar.
    I need solution for this. how can i put classpath for the 2 files to use the x.jar and other files to use y.jar in the same application.
    I am using a Tomcat 4 server. only Servlets, JSPs I am using.
    Thank you,
    Kiran

    I may be missing something here, is y.jar a newer version of x.jar? And if it is do you need x.jar at all? Are there classes in x.jar that do not exist in y.jar? Can you modify your application to provide the same functionality and only use y.jar?

  • How to deploy different projects to one application server?

    I just move to Weblogic from SOA Suite. This might be a stupid question.
    I install Weblogic Service Bus, Jdeveloper 11g, and Weblogic portal.
    If I do projects in Service Bus, Jdeveloper 11g, and Protal at the same time, should I start 3 servers?
    Can I just start one server and deploy all projects to it?
    For example, I create several ADF projects in Jdeveloper 11g and deploy them to the Weblogic server.
    However, I want to integrate these ADF project using weblogic Service Bus.
    How can I do this?
    Sincerely
    Edited by: [email protected] on Mar 16, 2009 5:10 PM
    Edited by: [email protected] on Mar 16, 2009 5:24 PM

    When I refer to applications deployed to the same server having "conflicts", I refer to the fact that you're deploying multiple allegedly independent applications to the same Java virtual machine. The JEE specification and WebLogic's implementation come pretty close to isolating those separate applications, but it's impossible to completely isolate them. One obvious potential conflict is the "context root" of web applcations. If two web applications are deployed to a server that have the same context root, then that is a clear conflict. Only one of the applications will be initiated with a reference to the context root URL.
    By context root, in a URL like "http://somewhere.com/myurl", the string "myurl" is the context root. Only one deployed web application can use that context root, as it would be impossible to tell which application is intended, otherwise.

  • How to host one application using different database connection on OAS?

    Hi,
    Jdeveloper - 10.1.3.4
    Application - ADF/BC
    Oracle Application Server - 10.1.3
    Above our the specifications for our application,
    We have two database schemas different for development and production therfore we have different databse connections for the two,
    we have one application which is in production and enhacements on the same application are done by the development team.
    Since we have two different schemas for developement and prduction we use different database connections for the application on development and production.
    The problem is our Model and View Controller project are same, only the database connection file changes that's why we are able to host only on application at a time on our OAS. This is probably because the URL generated by OAS for developemnt and prodyction application is same.
    Is there a way we can host two instances of the same application with two different database connections on the a single OAS.
    Thanks & Regards,
    Raksha

    Use different deployment profiles each with a different context root for your application?
    See: http://one-size-doesnt-fit-all.blogspot.com/2009/02/configuring-separate-dev-test-prod-urls.html

Maybe you are looking for

  • PDF Form entries

    In completing a PDF form none of the entered information either prints or shows on e-mailed form. A lock appears at the bottom right hand corner of the screen indicating that info may not be able to be entered on form. If this is what's keeping info

  • Import oracle.adf.view.rich.event.DropEvent; Not Found

    Ok guys I have a problem. A large number of my imports are not found when I type them into my project. I am following a book and there is no mention of this happening so I have no idea what to do. I figure maybe it is about finding libraries and addi

  • Generics error

    I'm using generics in my jsp and it compiles fine, but when I run it I get run-time compile error: org.apache.jasper.JasperException: Unable to compile class for JSP Syntax error on token "<", invalid AssignmentOperator Syntax error on token "=", !=

  • Looking for aspxmps115 . zip  file

    Hi.  I'm looking for the aspxmps115 . zip file that contains samples for version 11.5 I found two documents that mention aspxmps115 . zip file but none of them have a link to the file that works. https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs

  • Unable to select Aggregate

    Dear Guru's, When i was trying to check if my query is hitting the aggregate or not, i noticed this below message : RSRT --> Execute & Debug --> SELECT  ( Display Aggregates found & Select Aggregate ) Not possibe because --- ____Characteristic 0FISCV