Jdev 10g and 9iAS 9.0.3

Hi,
Could someone help me out with the following:
A J2EE Application built with JDEv 10g doesn't work on OC4J 9.0.3 None of the CMP EJB can be instantiated even if the entity does exist in the database -- FindByPrimaryKey returns 'no such entity'
It works fine under OC4J 9.0.4
Is this a J2EE compatibility issue?
thanks
Sergey

Have you updated the libraries on the OC4J 9.0.3 server to match the libraries in JDeveloper 10g?
You can do this from within JDeveloper using the ADF Runtime Installer available from the Tools menu, or you can follow the How To at http://otn.oracle.com/products/jdev/howtos/10g/adf_runtime_update_howto.html
-SteveA

Similar Messages

  • JDev 10g and EJB 2.0 on non-OC4J server

    It looks like JDev 10g only supports EJB 2.0 for OC4J out-of-the-box. Is this correct?
    If we wanted to generate EJB 2.0 CMP entity beans etc to deploy to a non-OC4J app server (e.g. JBoss) using JDev 10g, what would we need to do? Are there any tutorials/how-to's available?
    As a newbie to JDeveloper and J2EE, trying to work out how to re-write our Forms system in J2EE, I have to say I'm getting tired of how most of the JDev documentation - and much of the software - only seems to relate to using OC4J (or 9iAS) as your app server. If we and our customers wanted to be restricted an Oracle app server, we could just stick with Forms 9i and save ourselves a world of Java pain.
    Plus, nearly all the 10g client documentation relates to JSP clients, but we want a rich GUI using Swing (JClient would be useful but we can't figure out how to deploy it 3-tier to JBoss).
    So, Oracle, how about giving your users some more documentation on how to use JDev10g/JClient/ADF/EJB 2.0 etc with non-OC4J servers and perhaps even without JSP?
    I am sure that JDev10g and ADF could offer us a great deal of help in building our system, if only we could figure out how to use it.
    Thanks,
    Chris

    Thanks, Deepak.
    But the how-to is for old versions of JDev/JBoss:
    "This document was written for Oracle9i JDeveloper Release Candidate and JBoss 2.4.4 (Dated December 29, 2001), although other versions of Oracle9i JDeveloper and/or JBoss should behave the same."
    I'll let you know if this works with JDev 10g and JBoss 3.2.3, but I have my doubts.
    If anybody has some more recent information on this, please let me know!
    Chris

  • Jdev 10g with 9iAS

    I have seen that others have ask about a whitepaper in metalink on hoe to get a project developed in JDev 10g to work with 9iAS(9.0.2). But i can not find any answers!!!
    Can anyone direct me to the link? Or does anyone know the list of Libraries need to install to get this to work.
    Does it work at all???
    /Jens

    Hello
    Did you found the paper? Can you please provide the link?
    Thanks
    Chrigel

  • JDev 10g and Variable Highlighter

    In the production version of JDev 10g, Variable Highlighter extension(http://home.t-online.de/home/simeon.zverinski/variablehighlighter/index.html), which is so much useful, does not work properly. Quick navigation between variable occurrences functionality is lost. I would appreciate if anybody could suggest me how to fix this.
    Regards,
    Naveen

    Hi,
    This version works with keystrokes:
    http://www.dubh.org/jdevaddins/varhigh-jdev-v1.2.4.jar
    You need to delete the old version from lib/ext). It's not configured to use shortcuts by default, you need to go to Tools->Preferences->Accelerators. In the Code Editor category, look for these actions and assign them whatever accelerators you want:
    Move to Declaration
    Move to Next Vriable Occurrence
    Move to Original Vriable Occurrence
    Move to Previous Vriable Occurrence
    Rename Variable
    Let me know if there are any problems...
    Thanks,
    Brian

  • Should n't there be a separate forum for JDev 10g and another for 11g?

    Dear experts,
    Since there are still long and ongoing projects using JDev 10g, it would be convenient to split this forum into two ,
    so that searches would be faster and finding the right solution for the correct version of JDev would be easier and quicker .
    Besides, Oracle would have a more precise adoption rate of the newer version 11g and adapt its resources accordingly.
    Hoping for your feedback and adoption,
    NA
    Edited by: Nick Aiva on Dec 22, 2009 10:37 AM

    Oh really?
    Please take a look at this recent question of mine:
    Re: How do I prevent reset() function of shuttle from executing?
    Re: How do I prevent reset() function of shuttle from executing?
    How do I prevent reset() function of shuttle from executing?
    only to get the answer of two links for the 11g version library!
    Thank you anyway for replying!

  • Jdev 10G and BiBeans

    Does anyone know if the current release of BiBeans is compatible with the Jdev 10G release?

    Hi,
    The current version of BI Beans is only certified against JDev 9.0.3. There will be a version of BI Beans for JDev 10G available in the near future.
    PM Team
    Oracle Business Intelligence Beans

  • Status of uml 2.0 support in jdev 10g and 11g

    Hi,
    What's the status of UML 2.0 support in JDeveloper 10g and 11g?
    Thanks,
    Matt

    I was particularly looking for the capability to have "Combined Fragments" in sequence diagrams to express looping and other control structures. Here's a good article about combined fragments:
    http://www.ibm.com/developerworks/rational/library/3101.html
    Also having the ability to reuse sequences in UML 2.0 is an important concept.
    In the past I have also looked for support for component and deployment diagrams in JDeveloper. This is important to us to explain the design of systems.
    Thanks,
    Matt

  • JSP parsing different between JDev 903 and 9ias 9.0.3

    Ok -- we have code which looks like the following:
    <SELECT name="app_region_id">
    <OPTION></OPTION>
    <jbo:RowsetNavigate datasource="RegionDs" action="First" />
    <jbo:RowsetIterate datasource="RegionDs" >
    <jbo:Row id="RegionRow" datasource="RegionDs" action="Current" ></jbo:Row>
    <!-- key line below (this comment not in the "live" version -->
    <OPTION VALUE="<jbo:ShowValue datasource="RegionDs" dataitem="RegionId" />"
    <%=(Integer.parseInt(RegionRow.getAttribute("RegionId").toString()) == nUserRegion) ? " SELECTED " : "" %> >
    <jbo:ShowValue datasource="RegionDs" dataitem="RegionName" />
    </OPTION>
    </jbo:RowsetIterate>
    </SELECT>
    Here's the problem. The regions are: 1, 2, 3, etc.
    What happens is it should output: VALUE="blah"
    (and does under 9iAS 9.0.2, JDev 9.0.2, Jdev 9.0.3, but not 9iAS 9.0.3)
    but it outputs: VALUE="blah
    (no trailing quote) under 9iAS 9.0.3
    That causes some HTML issues. I have other examples of output that is strange/different when deployed, but works fine under JDev...
    There are workarounds, by changing the structure a bit, but the difference in behaviour is a problem...
    I posted this in the Application Server forum, but have not received a response indicating that anyone is working on this (or if it's my fault).
    Jeff

    repost

  • Jdev 10g and firebird 1.5

    Hi all.
    I need help on how to install firebird drive.

    Hi,
    Please take a look at these links (Apply for Firebird too):
    Configuring MySQL DataSources with OC4J and JDeveloper
    http://www.oracle.com/technology/products/jdev/tips/duff/mysql_and_oc4j3.html
    How To Use ADF Business Components with MySQL
    http://www.oracle.com/technology/products/jdev/howtos/10g/MySql/MySQL_and_BC_HowTo.html
    Luis R.

  • Jdev 10G and BiBeans 903

    Does anyone know if BiBeans 9.0.3 will work with JDeveloper 10g? I tried install BI Beans but it was looking for a different version of JDeveloper.

    hi greg
    i saw the beans at the last oracleworld and there are some pretty smart features coming ;) especially in the html based beans.
    btw uix xml is no called ADF UIX and is now one means of building user interfaces in a mvc architecture. adf stands for application development frameworks ;)
    regards,
    thomas

  • Jdev 10g: property inspector bug

    jdev 10g and ADF FACES EA15.
    The property inspector is not showing the value of "valuePassThru" on af:selectOneRadio controls.

    Hi Larry,
    Thanks a lot for bringing to our notice. I will test it and report it to appropriate team, so that it gets fixed.
    Regards,
    Vijay Venkataraman

  • OA Framework for JDev 10g

    Hi,
    I have downloaded oracle jDeveloper 10g. Where can I get the OA Framework Extension for JDeveloper 10g. For Oracle JDeveloper 9i, it comes as a single patch which we can download from metalink. I was told that for JDeveloper 10g, I need to download JDev 10g and the OA Extension separately.
    Please let me know where I can find OA Extension for JDeveloper 10g.
    Thanks !
    Debojyoty

    Thanks for the information.
    I also confirmed from Oracle. There is no OA Framework Extension available for Jdeveloper 10g

  • JALOPY and JDev 10g 9.0.5.1

    How can I incorporate jalogy in to Jdev 9.0.5.1?
    I followed the instructions on jalopy website and it worked perfectly for Jdev 10g Preview but not 9.0.5.1. All I did before was just copy the jar files into &lt;JDEV&gt;\jdev\lib\ext directory and restart JDev. Now it doesn't work. Thank you in advance.

    Thank you Rob for your fast response. However, it still doesn't work. However, I noticed that in the <JDEV9051>\jdev\lib\ext folder there is README.txt and it has some XML to define external plugins. I have not noticed it in the older release. Do I have to configure the plugins using XML config file now?
    Again thank you in advance.

  • BPA suite 11g and Jdev 10g

    hello,
    BPA11G is also compatible with JDEV10 ? I can use Jdev 10g with BPA suite 11g or not ? or we must install Jdev 11g ? (send a document about this)
    BR,

    Hi,
    please install the JDeveloper 11g and apply the newest "BPA Extension for JDeveloper". Install the BPA Extension using the JDeveloper Update Center. From the JDeveloper menu choose Help > Check for Updates. Browse and pick the pcbpel_bundle.zip found in the Oracle BPA Suite 11g Addons.
    It is necessary to keep the JDeveloper and BPA Suite version consistent, especially for the major releases 10 or 11. This is because in 11g a BPEL process is part of a SOA Composite, which means the technical concept has been changed as well.
    Best regards,
    Danilo

  • Jsp 2.0 and jdev 10g production (custom tags)

    there are some examples at
    http://otn.oracle.com/sample_code/tech/java/jsps/index.html
    I have certian questions it would be great if some one would clear these for me..
    In JSP 1.2 if we wanted to write the custom tag's we had tag classes that extend TagSupport or TagBodySupport and the doStart() and doEnd() tag with the evaluate body. I could spit out the complete html text on an encounter of a tag! but in the JSP 2.0 a doTag() seems to take care of the intracies! how??
    Now with jsp 2.0 I want to do the same... say some thing like this ....
    <tg:myTag list="${somelist}"></tg:myTag> and say in my tag handler class I know what to do with this list. May be I will create complete html code and will use jspWriter to write out the html inbetween these tags!!
    I have downloaded the eStore example but this class
    javax.servlet.jsp.tagext.SimpleTagSupport; is not imported. So I am not able to look at the SimpleTagSupport class.
    If I am trying to run the example in jdev 10g production should I have to specify that I am using jsp 2.0 so that jdev knows not to use jsp 1.2? if so how can I do this.
    Does all the examples provided use the OC4J standalone? Can I use the embedded oc4J instead?
    regards.

    After reading a bit more now I know how the tags work.
    However from the example I see (eStore) an array called by name "products" is created and set on the jspContext. If I already have the list and want to pass on the list which is in a bean or a session or a request can I provide it this way.
    <tag:myTag var=${bean.list}>
    or
    <tag:myTag var=${session.list}>
    or
    <tag:myTag var=${request.list}>in the .tld file I should specify the attribute var and whether it should be runtime evaluable.
    and in the TagClass
    private Collection var;
    private String listName;
    public void setVar(Colloection aList) {
      this.var = aList;
    public Collection getVar() {
      return var;
    public void doTag( ) throws JspException{
      // do i always need to this next line ------
      getJspContext( ).setAttribute(listName, getVar());
    }so that in my .tag file I can use some thing like this
    <c:forEach var="list" items="${item}">
      <td>${item.subObject.name}</td>
      <td>${item.subObject.value}</td>
    </c:forEach>And finally... as and when a tag is encountered the .tag file contents corresponding to that tag is called to get the html text and all that text is printed out in the jsp page right (without the jspWriter "out"). How does the browser know when to stop? like doEndTag() function? are these functions implicitly called?
    regards.

Maybe you are looking for