DataControl in 10.1.3 JDeveloper Preview

Why isn't available the Create DataControl option from a Session Bean?
Is any way to produce it automatically? I don't want to use web services in my current project.
Anyone knows why it isn't there?
Thanks

The 10.1.3 preview version doesn't come with the ADF Framework - and this is the reason you don't have the data control option. You'll have it in the production version of 10.1.3.
For now you'll need to use 10.1.2 if you want to use ADF.

Similar Messages

  • JDeveloper Preview deployment error

    I am using JDeveloper Preview version 10.1.3.0.2.223. Occasionally I encounter the following error when trying to deploy my application to a WAR file:
    ---- Deployment started. ---- May 2, 2005 3:15:28 PM
    Target platform is Standard J2EE.
    **** Unable to deploy to a WAR file because no web.xml file could be found in the project.
    **** Please verify that your project contains web components.
    Elapsed time for deployment: 1 second
    #### Deployment incomplete. #### May 2, 2005 3:15:29 PM
    Of course I have a web.xml file in my project, and I am able to run the project in JDeveloper. I have not found a reliable workaround for this error. It seems each time the solution is different, which leads me to conclude that I don't understand what is actually happening. Whenever this situation occurs I also get errors when using the wizard to create new JSP pages:
    oracle.jdeveloper.deploy.DeployException
         at oracle.jdevimpl.xml.DescriptorNodeFactory.findOrCreateIn(DescriptorNodeFactory.java:99)
         at oracle.jdeveloper.xml.j2ee.war.WebAppNode.findOrCreateIn(WebAppNode.java:214)
         at oracle.jdevimpl.webapp.jsp.wizards.AbstractJspWizard.createWebAppNode(AbstractJspWizard.java:216)
         at oracle.jdevimpl.webapp.jsp.wizards.AbstractJspWizard.access$10000071(AbstractJspWizard.java:33)
         at oracle.jdevimpl.webapp.jsp.wizards.AbstractJspWizard$1.run(AbstractJspWizard.java:97)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:171)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:141)
         at java.awt.Dialog$1.run(Dialog.java:540)
         at java.awt.Dialog.show(Dialog.java:561)
         at java.awt.Component.show(Component.java:1133)
         at java.awt.Component.setVisible(Component.java:1088)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.ProgressBar.start(ProgressBar.java:275)
         at oracle.jdevimpl.webapp.wizards.AbstractWebAppFileWizard.doFinish(AbstractWebAppFileWizard.java:82)
         at oracle.jdevimpl.webapp.wizards.AbstractWebAppWizard.invoke(AbstractWebAppWizard.java:77)
         at oracle.ide.WizardManager.invokeWizard(WizardManager.java:488)
         at oracle.ide.WizardManager$1.run(WizardManager.java:542)
         at oracle.ide.util.IdeUtil.invokeAfterRepaint(IdeUtil.java:1143)
         at oracle.ide.WizardManager$2.run(WizardManager.java:550)
         at oracle.ide.util.IdeUtil$4.run(IdeUtil.java:1123)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Caused by: java.lang.ClassCastException
         at oracle.jdevimpl.xml.DescriptorNodeFactory.findOrCreateIn(DescriptorNodeFactory.java:73)
         ... 29 more
    The JSP file is created anyway but I have a feeling the errors may be related.
    I can usually create the error by copying a workspace into a new directory and trying to use the files.

    I think maybe you use wrong adf lib when deploying your project to the OC4J.
    You can update your oc4j in the jdev.[JDEV->Tools->ADF Runtime Installer-> Standalone OC4J].
    Good luck
    Hart

  • Documentation for Setup and use OracleASJms in JDeveloper preview 3

    Hi, Is there any documentation / tutorial that show how to configure and use OracleASJms in JDeveloper Preview 3(11.1.1)with the Embedded OC4J? Thanks!
    - Matthew

    Hi,
    not that I am aware of. However, you may want to try the JDeveloper 11 and OC4J 11 forum at JDeveloper and OC4J 11g Technology Preview
    Frank

  • JDeveloper Preview Download-jdevstudio1111.zip (Build 4796) Error

    PeaZip/gwrap Error ---
    Extracting zip file -- JDeveloper Preview Download-jdevstudio1111.zip (Build 4796)
    gwrap Failes to create win32 control, error: 0.
    Press Ok to ignore and risk data corruption.
    Press Cancel to kill the Test All program.

    User,
    Wow - never heard of PeaZip before today. Looks like PeaZip is choking.
    I used ALZip (free software) and it works fine.
    John

  • Problem CMR ejb 3.0 with JDeveloper Preview 3

    I created 2 entity beans (using drag and drop from JDeveloper 10.1.3 preview 3)
    for 2 tables INCIDENTS and ENVINCIDENTS ENVINCIDENTS has a foreign key INCIDENTS_ID referring INCIDENTS.ID.I get the following error when I created ejb 3.0 beans and deployed them.
    Exception Description: Multiple writable mappings exist for the field [ENVINCIDE
    NTS.INCIDENTS_ID]. Only one may be defined as writable, all others must be spec
    ified read-only.
    If i remove the relationships they work fine. Also they work fine if I create ejb 2.1
    the culprit bean is below:
    @Id
    @Column(name="INCIDENTS_ID", primaryKey=true, nullable=false)
    public Long getIncidentsId() {
    return incidentsId;
    public void setIncidentsId(Long incidentsId) {
    this.incidentsId = incidentsId;
    @Id
    @ManyToOne(targetEntity="model.Incidents")
    @JoinColumn(name="ENVINCIDENTS.INCIDENTS_ID", referencedColumnName="INCIDENTS.ID",insertable=false, updatable=false)
    public Incidents getIncidents() {
    return incidents;
    public void setIncidents(Incidents incidents) {
    this.incidents = incidents;

    Hi HERBOLY ,
    To be able to run the clien you must run first the facade bean then try to run your client.
    Hope this will help you .
    Regards
    Lutchumaya

  • Disappointed with 10g JDeveloper preview version

    I consistently use and recommend Oracle products to my co-workers. But I am disappointed with the latest JDeveloper, thanks to many bugs. I could not find basic items like remove from project menu item. The files I open are not getting added to the project. And the continuing lack of decent support for PL/SQL. If Oracle can't support PL/SQL, in its IDE that is hard to believe. This forces me to use 2 IDEs. One for Java and another one for PL/SQL. Hope it will get better in the production release.

    All files from a folder are automatically added to a project, it is automatically recompiled with a build command. The file can be "invisible". To see a new file in the navigator, use the refresh button.
    There should be several changes to this behaviour:
    1) refresh is quite slow on a big project. It should be possible to select a package and refresh only the files inside the folder
    2) When a file is opened, it should be automatically added into the navigator of the current project.
    3) To remove a file from a project, it seems there are only 2 solutions:
    3a) Use a different hierarchy tree for each project (ie: locate each project source in a different folder) and carefully remove the files you don't need. Huge pain with versioning and check out module. You have to check out each file individually.
    3b) refactoring. Move the file in a new folder and exclude that "subfolder" in the project content (first page in the project properties).
    In the long term this refactoring could be a good thing. In the short term it is a major pain because most projects use intertwined packages.
    Some examples:
    1) I use only one hierarchy tree for several projects. I have to include much more libraries in my projects to be able to compile. For example, I have a swing application. In a package used by this swing application, one class does an import of some j2ee stuff.
    I never use this class in the swing application. I have to include all the j2ee libs to compile my project.
    2) I have a factory constructor interface dealing with java.sql.DataSource.
    I have several implementations depending on the target jdbc driver (classes12.jar ojdbc14.jar,mysql-connector-java-2.0.14-bin.jar,...). Each implementation is put in the same folder:
    /mycompany/mypackage/MyDataSourceOracle14.java
    /mycompany/mypackage/MyDataSourceOracle12.java
    /mycompany/mypackage/MyDataSourceMySql.java
    The implementation with classes12.jar is incompatible with the one with ojdbc14.jar.
    With JDev 10g preview, there is just no way to rebuild my project. I had to refactor and use subfolders:
    /mycompany/mypackage/Oracle14/MyDataSourceOracle14.java
    /mycompany/mypackage/Oracle12/MyDataSourceOracle12.java
    /mycompany/mypackage/MySql/MyDataSourceMySql.java

  • Datacontrols Tab Not appearing in JDeveloper 11g(11.1.1.2.0)

    Hi All,
    Datacontrols tab is not appearing in JDeveloper 11g.
    I have de-installed and Installed again but I have the same issue.
    Please help if any body have the solution for this issue.
    Thanks,
    Nr

    Just a simple Question, to make sure.
    Where are you looking for the datacontrol ?
    In JDev 10g it used to be on the right top of the IDE.
    In JDev 11g it is supposed to be on the left of the IDE. It might be collapsed there so you don't spot it immediately.
    But then again, you probably will have checked that.
    Regards Luc Bors

  • Broken Download link for JDeveloper Preview 3

    http://otn.oracle.com/software/products/jdev/htdocs/soft903.html?src=855007&Act=101
    This link has been broken every day since Jdeveloper 3 Preview has been announced. Any chance someone can fix this. I've put in several trouble tickets to get a fix. Is anyone at home??
    Frank

    Look at http://www.oracle.com/technetwork/developer-tools/jdev/downloads/index.html
    All 11g versions come with adf.
    Timo

  • Password Error for JDeveloper Preview

    Dear all !
    I got a Oracle 91 Application Server Developer Preview CD ..
    and want install them .. but after filling out
    the survey under
    http://profile.oracle.com/profile-servlet/Survey?language=en&src=1271084&Act=4
    I coming to this error page ..
    http://profile.oracle.com/survey/Error.html
    Registration Error.
    We're sorry. There was a problem processing your request.
    So what to do .. the german help telephone number
    wasn't very helpful, as he had no idea
    what to do ..
    So how can I proceed to get a key for the Preview ?
    Thanks a lot for the kind help !
    Frank

    I'm not sure that the registration for the preview version is still working because we now have a production version. I suggest that you download the production version of JDeveloper from OTN.
    -- Brian (JDev Team)

  • Errors while compiling ADF faces - Jdeveloper preview 2

    Hello,
    I am trying to compile/run (using F11) a jspx page that involves JSF/ADF faces. While compiling, I am getting following error messages.
    //Message 1
    C:\Jdev11g\jdk\bin\javaw.exe -jar C:\Jdev11g\j2ee\home\admin.jar ormi://192.168.1.100:23891 fmwadmin **** -updateConfig
    //Message 2
    07/11/25 13:24:17 [JpsAuth] For permisson (oracle.security.jps.JpsPermission IdentityAssertion), domain that failed: ProtectionDomain cs(file:/C:/Jdev11g/j2ee/home/jps-api.jar), []
    //Message 3
    07/11/25 13:24:17 [JpsAuth] For permisson (oracle.security.jps.service.policystore.PolicyStoreAccessPermission context=SYSTEM getSystemPolicy), domain that failed: ProtectionDomain cs(file:/C:/Jdev11g/j2ee/home/jps-api.jar), []
    I have checked all the installation settings for JDK and also checked the permissions on my local folders and everythign seems to be fine.
    Any insight in this regard will be highly appreciated. Thank you so much in advance.
    -Ruchir

    Hi,
    does the application run ? Note that TP2 shows warnings and exceptions that not necessarily impact the application
    Frank

  • JDeveloper 10.1.3  preview and Hibernate 3.0

    I'm testing JDeveloper Preview 10.1.3.0.2.223 and find some problems when using hibernate 3.0
    When I'm using with OC4J, some packages conflicts and Hibernate don't work.
    I hava to rename <jdevhome1013>\webservices\lib to <jdevhome1013>\webservices\libold
    and replace the file <jdevhome1013>\j2ee\home\lib\asm.jar from file asm.jar that folloies Hibernate 3.0
    So, I'd like to know if it's a know bug, a unknow bug or JDeveloper/OC4J won't support applications with Hibernate?
    Thanks.

    Jim, you are my Idol!!!!
    I'm evaluating JDeveloper (for the first time, not migrating from a previous version), so I'm realy brand new with this environment.
    Now that I see that you (maybe) go in the same direction I go, please, give me your opinion about one point.
    I can see JDeveloper gives the developer a lot of code-generating advantages if you accept using ADF and the rest of the whole Oracle proposed environment. Specifically, the amazing speed you can get on binding the three tiers: database (with connections and drag-and-drops for tables), Business Objects and logic (with middle tier wizards) and presentation tier (with that great drag-and-drop jsp creation tool). I think all this tools can really make a speed-difference…
    But… I don’t like “proprietary solutions”, I like open-source-standards, so… I prefer Hibernate (3.0.5), any structural-framework, like Struts or whichever, and for example JSF for the presentation tier (still evaluating this point)
    I’ve seen that tutorial about using Hibernate + JSF with JDeveloper (http://www.oracle.com/technology/pub/articles/vohra_hibernate.html) but it didn’t satisfied me too much: It’s written for Hibernate 2.1.8 and migrating to Hibernate 3.0 is not possible without a headache…
    So finally, I decided to import a “neutrally” built Struts + Hibernate 3.0 project and try to “speed it up” using JDeveloper. And then it was when I hit my head against this problem you’ve just solved! Jiiiimy, Jiiiiimy!!!! :-))))))
    So, finally, my questions:
    1)     Would you say that if I’m developing this within this kind of tools, then JDeveloper still gives me much of the speed It gives in the first case? Can I drag-and-speedy-drop from database to model tier, or from model to control or to presentation tiers without introducing any Oracle libraries in my project? How? Do you have any example?
    2)     In your opinion, which is the best environment for speeding up this whole development process: JDeveloper, Eclipse + Exadel or any other plug-in environment? Any other you may prefer?
    Hey, again, thanks a lot!! Oracle should take note of the bug you detected (and maybe pay you some bucks for it :-))
    Fer

  • MyFaces in JDeveloper 10.1.3.0.3 EA1

    I was using the JSCookMenu from MyFaces (ver. 1.0.9) in JDeveloper preview addition 10.1.3.0.2
    I am now trying to use JSCookMenu from MyFaces (ver. 1.1.0) in JDeveloper 10.1.3.0.3 EA1.
    The page loads in IE without the menu, status bar says "done, but with errors on page"
    Has anyone encountered this error in the new EA release of JDeveloper?

    Hi,
    what is teh exact error message you are getting? is it a Javascript error ?
    Frank

  • BUG in JDeveloper 10.1.3

    Hi,
    I'm testing a connection with Database PostgreSQL 8.0.
    I create a connection in version 10.1.2 and this connection show-me the table of the "public schema", but in version 10.1.3 don't show-me.
    Thanks.

    Hi,
    the JDeveloper preview on OTN is not yet tested with all databases we plan to support in production.
    Frank

  • How to test and deploy a BPEL application in JDeveloper?

    Hi guys!
    I'm trying to use the cue card overview (step 4) to test and deploy a BPEL application.
    I'm using the new version o JDeveloper Preview (10.1.3.1.0) and when a click in "Launch the Create Integration Server Connection wizard" it asks me about Application Server, host name and port number. What I should fill in? Should I start BPEL process manager outside JDeveloper to start testing?
    In the wizard of "Create Application Server Connection" (step 2 of 4: Authentication) it asks me about username (which is filled with oc4jadmin) and Password. What password I shout use here?
    Finally, in the step 3 of 4 (Connection) the wizard asks me about host name and RMI port, what I should fill in?
    Any help will be appreciate

    You need an istance of a BPEL server to test this.
    So download the SOA Suite Developer Preview and install on your machine - this will provide you with a server you can test BPEL on.
    http://www.oracle.com/technology/software/products/ias/soapreview.html

  • JDev 903 Preview and JHeadStart

    I tried to install JHeadStart on JDeveloper preview and I get the following error when trying to run JAG on an application structure. I also tried to shift xmlparserv2.jar forward in the classpath ordering, but without success.
    Initializing add-in JHeadstart BC4J Property Editor (build 9.0.9) ..... Done.
    Initializing add-in JHeadstart Application Generator (build 9.0.51)..... Done.
    Initializing add-in JHeadstart Application Structure File Editor (build 9.0.7)..
    ... Done.
    Initializing add-in JHeadstart Designer Generator (build 9.0.19)..... Done.
    Initializing add-in JHeadstart Shared Components (build 9.0.10)..... Done.
    Initializing add-in JHeadstart MVC ServiceFile Viewer (build 9.0.3)..... Done.
    Exception occurred during event dispatching:
    java.lang.NoSuchMethodError: oracle.xml.parser.v2.XSLOutput oracle.xml.parser.v2
    .XSLStylesheet.getXSLOutput()
    void oracle.jheadstart.tools.jag.ApplicationGenerator.generateFile(java.
    lang.String, java.lang.String, java.lang.String)
    ApplicationGenerator.java:700
    void oracle.jheadstart.tools.jag.ApplicationGenerator.generateServiceFil
    es(oracle.xml.parser.v2.XMLNode)
    ApplicationGenerator.java:655
    void oracle.jheadstart.tools.jag.ApplicationGenerator.generateApplicatio
    n()
    ApplicationGenerator.java:348
    void oracle.jheadstart.tools.jag.ApplicationGenerator.<init>(oracle.bali
    .xml.addin.XMLSourceNode)
    ApplicationGenerator.java:250
    boolean oracle.jheadstart.tools.addins.JAGLauncherAddin$dumpMenuControll
    er.handleEvent(oracle.ide.IdeAction, oracle.ide.addin.Context)
    JAGLauncherAddin.java:168
    void oracle.ide.IdeAction$1.run()
    IdeAction.java:579
    void java.awt.event.InvocationEvent.dispatch()
    InvocationEvent.java:154
    void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
    EventQueue.java:337
    boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.C
    omponent)
    EventDispatchThread.java:131
    void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Condit
    ional, java.awt.Component)
    EventDispatchThread.java:98
    void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
    EventDispatchThread.java:93
    void java.awt.EventDispatchThread.run()
    EventDispatchThread.java:85
    Has some one tried this yet?

    Over here I'm using JDev 902 and I think I had a similar problem (not specifically related to JHeadstart though). In short, I'm almost certain that it has something to do with the different versions of xmlparserv2.jar that are available. Or, at least.. I think that was the case over here. After I correctly used the jars listed here: http://otn.oracle.com/products/jdev/howtos/appservers/deploy_bc4j_to_iplanet.html#update_classpath the NoSuchMethodException disappeared.
    I must stress out that the NoSuchMethodException I had might not be related to yours, but I know for a fact that before I made sure I was using all the correct jars, I was in fact using a different (and maybe incorrect) version of the xmlparserv2.jar
    HTH
    Arno
    I tried to install JHeadStart on JDeveloper preview and I get the following error when trying to run JAG on an application structure. I also tried to shift xmlparserv2.jar forward in the classpath ordering, but without success.
    Initializing add-in JHeadstart BC4J Property Editor (build 9.0.9) ..... Done.
    Initializing add-in JHeadstart Application Generator (build 9.0.51)..... Done.
    Initializing add-in JHeadstart Application Structure File Editor (build 9.0.7)..
    ... Done.
    Initializing add-in JHeadstart Designer Generator (build 9.0.19)..... Done.
    Initializing add-in JHeadstart Shared Components (build 9.0.10)..... Done.
    Initializing add-in JHeadstart MVC ServiceFile Viewer (build 9.0.3)..... Done.
    Exception occurred during event dispatching:
    java.lang.NoSuchMethodError: oracle.xml.parser.v2.XSLOutput oracle.xml.parser.v2
    .XSLStylesheet.getXSLOutput()
    void oracle.jheadstart.tools.jag.ApplicationGenerator.generateFile(java.
    lang.String, java.lang.String, java.lang.String)
    ApplicationGenerator.java:700
    void oracle.jheadstart.tools.jag.ApplicationGenerator.generateServiceFil
    es(oracle.xml.parser.v2.XMLNode)
    ApplicationGenerator.java:655
    void oracle.jheadstart.tools.jag.ApplicationGenerator.generateApplicatio
    n()
    ApplicationGenerator.java:348
    void oracle.jheadstart.tools.jag.ApplicationGenerator.<init>(oracle.bali
    .xml.addin.XMLSourceNode)
    ApplicationGenerator.java:250
    boolean oracle.jheadstart.tools.addins.JAGLauncherAddin$dumpMenuControll
    er.handleEvent(oracle.ide.IdeAction, oracle.ide.addin.Context)
    JAGLauncherAddin.java:168
    void oracle.ide.IdeAction$1.run()
    IdeAction.java:579
    void java.awt.event.InvocationEvent.dispatch()
    InvocationEvent.java:154
    void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
    EventQueue.java:337
    boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.C
    omponent)
    EventDispatchThread.java:131
    void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Condit
    ional, java.awt.Component)
    EventDispatchThread.java:98
    void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
    EventDispatchThread.java:93
    void java.awt.EventDispatchThread.run()
    EventDispatchThread.java:85
    Has some one tried this yet?

Maybe you are looking for

  • Photoshop file imported to illustrator not printing right

    I have imported photoshop psd file into Illustractor and there clear background are tinting background in document when printing. Is there a solution

  • AT&T's HSPA 7.2 standard

    With AT&T uprgading to the 7.2 standard will the 3GS be able to handle the higher speeds? I read that some phones would need upgrades but I couldn't find any information on whether the 3GS would need one.

  • URGENT!!!!!!!!! rollback in BADI

    Hi, I wanted to know how can we perform ROLLBACK in BAdi's. I am using the BAdi defination -  MB_DOCUMENT_BADI and I want to roll back after i click on POST button in MIGO. The functionality is like - - First I m checking for the tcode eq MIGO. - Sec

  • IPod Shuffle suddenly won't work

    Hi all, To all of you having troubles with your Shuffle. I posted a few weeks ago about my Shuffle that stopped showing up on the Mac, in iTunes or anywhere else, then stopped charging. I also said that I saw hundreds of posts on different forums abo

  • 2.0.2 Update Problem with apps

    Non of my third party apps will work after updating to the 2.0.2 software. I'm restoring right now to see if that fixes things. I'll post a reply to this message if it works or doesn't work. To further confuse issues, I'm not having the dropped calls