11g Application Navigator

Both Eclipse and Netbeans have support for cut/copy/paste and dragging and dropping files in the project explorer. Are there any plans for JDeveloper to support this? Is there a way to simply copy a file to another project without going to the file system? This is really frustrating.

Though there are some limitations on what Shay describes. If for example you have an ADF Fusion App with a View Controller project, and have created 2 JSF web pages in separate sub-directories, I don't believe it's currently possible to drag n drop the files between the sub-directories. If I remember correctly there is an ER on this feature. Maybe Shay can let us know if that is true?
Regards,
CM.

Similar Messages

  • JDeveloper IDE - Displaying Packages in Application Navigator

    Hi All,
    I am using JDeveloper 11g Release 2.
    I want to customize how the packages are displayed in Jdeveloper. My application package name starts with com.fireblaze.xfb.appuc001 . and project packages are com.fireblaze.xfb.appuc001.model and com.fireblaze.xfb.appuc001.ui. Now in the model package I have further sub-packages like com.fireblaze.xfb.appuc001.model.queries, and many more...
    In my case, the Jdeveloper packages are displayed in application navigator are given below:
    com.fireblaze.xfb.appuc001.model
    com.fireblaze.xfb.appuc001.model.queries.main
    com.fireblaze.xfb.appuc001.model.queries.validators
    com.fireblaze.xfb.appuc001.model.queries.lovs
    com.fireblaze.xfb.appuc001.model.services
    What I want is like:
    com.fireblaze.xfb.appuc001
    --------------------------------------model
    -----------------------------------------------queries
    ----------------------------------------------------------main
    -----------------------------------------------------------------view 1
    -----------------------------------------------------------------view n
    ----------------------------------------------------------validators
    -----------------------------------------------------------------------view 1
    -----------------------------------------------------------------------view n
    ----------------------------------------------------------lovs
    ---------------------------------------------------------------view 1
    ---------------------------------------------------------------view n
    -----------------------------------------------services
    How to achieve it in JDeveloper 11g?
    Any help will be appreciated.
    Thanks in advance
    Regards
    Bilal

    hi user,
    Create Package. and use the source directory box. properly :)
    updated lately.
    i hope that you are looking for like this.
    while creating your eo,vo,am you may see package..
    in that you should specify
    "while creating your eo:"
    com.xxx.model.*eo*"while creating your vo"
    com.xxx.model.*vo*"while creating your am"
    com.xxx.model.*am*

  • Maven project "src" directory not visible in Application Navigator

    JDeveloper 11g Release 2 (11.1.2.1.0)
    First-time user
    I built a Maven application containing two Maven projects in JDeveloper but am unable to see the "src" directory in the Application Navigator. When I attempt to create this directory the tool tells me that it already exists which I found to be true by checking the file system directory C:\JDeveloper\mywork\.
    Is this a simple setting that I am missing or is it something more significant?
    Thanks

    in the project propertties. the src should be added in the project source path..
    chk
    http://www.orastudy.com/oradoc/selfstu/fusion/doc.1111/e15524/img/ui_gs_vc_srcpaths.gif
    if you have some file inside the src directory.. then open it normally using the file -> open option. after opening.. right click -> Select in Navigator.
    This will show you the folder..

  • Maintaining different sessions in browser tabs in ADF 11g application

    I have a simple ADF 11g application which uses ADF BC 11g.
    I want to maintain different sessions between the tabs in the same browser.
    Currently it is messing up with session variables. Please reply to me ASAP.
    Thanks,
    Bobby
    Edited by: 866444 on Jun 16, 2011 11:35 AM

    Assuming you are having problems because of the usage of JSF Session scope beans, then the answer is to use pageFlowScope for that set of data - then it is not shared between tabs.

  • How to deploy a secured ADF 11g application to WebLogic 10.3 server?

    Hi,
    I have just enabled security in our ADF 11g application, as descripbed in [chapter 29|http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/adding_security.htm#insertedID0] of the Fusion Developer's Guide. It works fine in the embedded WebLogic server of JDeveloper.
    Now I'm trying to deploy to our WebLogic 10.3 server, which runs in production mode. I'm running into all sorts of problems. The WebLogic console seems to have hundreds of security related pages, I don't know which one I should use, let alone how to use it. The Fusion Developer's Guide doesn't cover deployment to a production server:
    >
    When the target server is configured for production mode, you typically handle the migration task outside of JDeveloper using tools like Oracle Enterprise Manager. For details about using tools outside of JDeveloper to migrate the policy store to the domain-level in a production environment, see the [Oracle Fusion Middleware Security Guide|http://download.oracle.com/docs/cd/E12839_01/core.1111/e10043/toc.htm].
    >
    However, this guide is of very little help to me. I found [chapter 7|http://download.oracle.com/docs/cd/E12839_01/core.1111/e10043/addlsecfea.htm#insertedID0], which says "The recommended tool is Fusion Middleware Control." I have no idea what "Fusion Middleware Control" is, where to get it and how to use it.
    Long story short: I'm totally lost. I'm looking for a step by step guide on how to deploy a secured ADF 11g application to a WegLogic 10.3 server that is running in production mode. Any help is highly appreciated.

    Ok, I found a [very helpful blog post |http://andrejusb.blogspot.com/2009/01/practical-adf-security-deployment-on.html] by [Andrejus Baranovski|http://www.blogger.com/profile/04468230464412457426]. I wish Oracle's documentation was as clear as this...
    The blog post refers to an article by Steve Muench, called [Simplified ADF 11g Application Credential and Policy Migration to Standalone WebLogic Servers|http://www.oracle.com/technology/products/jdev/tips/muench/credmig111100/index.html]. This article presents an Ant script that migrates policies from JDeveloper to WebLogic, using some PFM. (See the last definition here.)
    The problem is that Steve Muench's script assumes that JDeveloper and the standalone WebLogic are on the same machine. However, in a typical environment, such as the one I'm working in currently, this is not the case. In our case the developer stations are Windows machines, while our WebLogic server runs on a HP-UX machine. So the question is: how to perform this migration between two machines with different operating systems?
    Regards,
    Bart Kummel

  • Can't see EJB objects in Application Navigator after migration

    Hello
    I can't see any objects in Application Navigator after migration from previous version of JDeveloper (9.2.0.5), in System Navigator view I can see all sources. Has somebody any idea what the reason is?
    Tom

    In the application navigator you should see one node per EJB, when you stand on it you'll see the various source files in the structure window.

  • How do i make a new file created appear in the Application Navigator?

    I am doing an extension to JDeveloper..How do i make the new file that the user has created to appear in the Application Navigator?
    What methods can i use?
    These are my codes...but it does not work still...
    File file = new File(dir ,fileName);
    file.createNewFile();
    FileWriter fw = new FileWriter(file, false );
    PrintWriter pw = new PrintWriter( fw, true );
    Workspace workspace = ctx.getWorkspace();
    java.net.URL projectURL = workspace.getActiveProjectURL();
    URL url = file.toURL();
    Node node = new Node(url);
    jpr.add(node, true);
    node.open();
    NavigatorManager.getWorkspaceNavigatorManager().openNavigator(ctx);
    ProjectNavigatorManager.getApplicationNavigatorManager().openNavigator(ctx);
    EditorManager.getEditorManager().openDefaultEditorInFrame(node.getURL());

    If it's an IMAP type account then you should get an Edit button at the top of the list of folders that you currently have on your email account. If it's a POP type account then you won't get the Edit button, and you are limited to your existing folders

  • Missing "View|Application Navigator" and "View|Connection Navigator"

    My default Oracle JDeveloper 10g Early Access 10.1.3.34.12 is missing "View|Application Navigator" and "View|Connection Navigator" from the View toolbar. Am I simply missing an additional installation or do I not have something configured correctly?
    Thanks,
    Scott

    Thanks for the answer, that's exactly what it is. I'm new to this environment and had it installed for me, hence I didn't see the differences at the download choosing time. Thanks again.

  • Oracle 11g application won't start sometimes(jar files issue)

    Hello,
    The issue we experience is that now and then, our forms 11g application
    won't start.
    So it can be the case that, for example, the application can be started
    succesfully 5 times in a row, but the 6th and 7th time, it won't start
    anymore. But when we relaunch it for the 8th time, it launches perfectly.
    When the application isn't starting, a new window is opened having a yellow triangle
    with an exclamation mark on the top right corner.
    After a long period, we suddely discovered that it had something to do with ".jar" files.
    Because when we clear the "java jar cache" on the client machine
    (start -> control panel -> java -> "general" tab -> "view..." button -> select all the files and click on the
    cross(remove selected sources) ), the application succesfully starts for about 10 times in a row.
    But the first time we start the application(after clearing the cache), it takes much longer, because the application
    is downloading the .jar files again. (java logo appears with a progress bar)
    But clearing the cache every time before starting the application can't be a decent solution we think.
    When we enable all java debugging info in the console, we received the error below 2 times when launching a application session that refused to start:
    java.security.AccessControlException: access denied (java.lang.RuntimePermission accessClassInPackage.sun.awt)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPackageAccess(Unknown Source)
         at sun.plugin2.applet.Applet2SecurityManager.checkPackageAccess(Unknown Source)
         at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at oracle.forms.engine.Main.initDesktop(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Anyone having a clue ?
    thanks in advance !

    Sorry, I meant WEB-INF\lib in the WAR file inside my EAR.
    I put all the jar files in the WEB-INF\lib of the WAR file but it still does not work. I have to specify them in the classpaths and put the jar files in the domains\domain\lib directory
    I thought if you put it in the WEB-INF\lib then you don't have to put them in the classpath.
    Am I right?

  • Application Navigator's Group By Category: How are categories determined?

    Hi,
    I'm new to JDeveloper and wanting to understand how the categories are determined in the Application Navigator's Group By Category.
    For example:
    Why are some items in the Applications Source folder, whereas others are in the Resources folder?
    I do understand that new category folders will be added by modifying the Project Properties. For instance, if Offline Database is added, then a Offline Data Sources folder is added.
    I thought there might be a correlation between the Applications Source and Resources folder and the Project Properties, but the algorithm for that seems a little strange to me.
    Maybe I shouldn't worry about understanding this, but I do appreciate it when I know why something is structured as it is.
    Thanks for any feedback that is given.
    :) Anne

    Hi,
    what version of JDev are you using?
    Anyway go to your workspace directory (I mean the OS filesystem, e.g. C:\workspace), there the directory named after the application, there are 2 directories - one for each project: Model and ViewController. The Resources you are talking about are the files under ViewController, Application Sources are the ViewController\src, Web Content are the ViewController\public_html files.
    Elijah

  • Jdeveloper 10134 not showing Application Navigator,Connection Navigator etc

    Hi All,
    I am using Jdev 10.1.3.4. When I am openning jdev I can only see "Structure" and "Property inspector". Apart form these two I am unable to open the other window i.e. "Application Navigator", "Connection Navigator" , "Component Palette" etc. I tried to open from the menu View > Application Navigator, but it didn't work.
    I went to Tools > Preferences and then got the below error.
    java.lang.NullPointerException
         at oracle.ideimpl.webbrowser.BrowserOptionsPanel.onEntry(BrowserOptionsPanel.java:95)
         at oracle.ide.panels.MDDPanel.enterTraversableImpl(MDDPanel.java:926)
         at oracle.ide.panels.MDDPanel.enterTraversable(MDDPanel.java:899)
         at oracle.ide.panels.MDDPanel.mav$enterTraversable(MDDPanel.java:106)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(MDDPanel.java:1348)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelection(MDDPanel.java:1216)
         at oracle.ide.panels.MDDPanel$Tsl.actionPerformed(MDDPanel.java:1210)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.Dialog.show(Dialog.java:536)
         at java.awt.Component.show(Component.java:1300)
         at java.awt.Component.setVisible(Component.java:1253)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:276)
         at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:597)
         at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:391)
         at oracle.ide.cmd.IdeSettingsCommand.doit(IdeSettingsCommand.java:47)
         at oracle.ide.controller.CommandProcessor.invoke(CommandProcessor.java:259)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:541)
         at oracle.ide.controller.IdeAction$1.run(IdeAction.java:772)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:789)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:498)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1000)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1041)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    FYI, it was working fine previously. May be some file got missed. Can any body help me regarding this. Any help will be appreciated.
    ~Abhijit

    Hello Frank,
    Thanks for your reply. As you suggested I renamed the "system" folder within jdev folder. Then restarted jdev. But the same problem still exist.
    I also tried by taking another Jdeveloper dump (which is working in another machine) , but got the same problem again in my machine.
    I don't know whether the problem is with jdev files or some thing else, could be my machile system files also. Pls have a look on this once again.
    ~Abhijit

  • Application Navigator view

    Hello,
    The application navigator in my JDev 10g stoped displaying the node’s extensions, like .jws or .jpr. Any ideas on how to fix it?
    Thanks for the help,
    Arie.

    Hi Frank,
    You are absolutely right. I need to be in the System Navigator. Now everything makes sense again, including all the “missing” options in the context menu.
    Many many thanks on your help,
    Arie.

  • Toplink-Map disappeared in Applications Navigator

    Hi,
    I can no longer find the toplinkmap in the applications navigator. This presumably happened when i changed the database connection in the sessions.xml from a native connection to a j2ee-datasource. The *.mwp-File is physically still there, 'Search in Files' also finds occurences of strings in it, but when double-clicking the according resultitem only a pane with a close-icon shows up. So for some reason jDeveloper ignores the presence of the toplink map. The application itself works fine, but i can no longer inspect or change the toplink map, e.g. can not add/remove queries to/from it.
    Any idea someone? Thanks,
    Magnus

    I fixed it myself by comparing the content of the jpr-File with that one of a 'working' Project.

  • How to display 2 level folder names in the application navigator?

    We have our source code in the following structure.
    C:\somefolder\project\java\all_the_java_code_under_this_folder
    C:\somefolder\project\sample\java\all_the_sample_java_code_under_this_folder
    In the project content, I select C:\somefolder\project folder so that the code under java folder and sample\java folder are picked up. But In the Application navigator, I would like to see the folder names (java or sample\java) so that I know which files I am working with. The package names could be the same, so I cannot identify files based on packages. The application navigator will display only the last part of the folder name (in this case, it is java). This is useless for me, because that part is the same as you can see from above.
    Is there a work around for this problem, so that it is easier to navigate between files.

    At the top of the application navigator play with the folder icon and with the number next to it, and see how they effect the display.
    You can also try the system navigator as an alternative view instead of the application navigator.

  • I have JDeveloper 9.0.4.0. I don't see Application Navigator.

    I don't see application Navigator. The Developers guide mentions I need to install portal add-in. Where can I find the portal add-in ?
    The OracleAS Portal Developer Kit (PDK) provides you with the necessary libraries to
    install an add-in for Oracle JDeveloper that dramatically increases your flexibility and
    productivity when developing portlets. This extension includes two wizards, one for
    building JPS-compliant portlets and one for building PDK-Java portlets. Both wizards
    guide you through the steps of creating the portlet skeleton and all you need do then is
    implement your own business logic.
    To obtain the add-in:
    1. Visit http://portalstudio.oracle.com.
    2. On the left side of the page, click Integration/Utilities.
    3. Click Portal Add-In for Oracle JDeveloper to download portal-addin.zip.
    4. Click Install Instructions and read and follow the instructions.

    You need JDeveloper 9.0.5 to have the Application Navigator window, just download this version from OTN.
    Then from the JDeveloper home page on OTN
    (http://otn.oracle.com/products/jdev) click on the link to the Extension Exchange to get the portal extension.

Maybe you are looking for