Installing JUnit in Jdeveloper 10g 10.1.3.1

Please help me to install JUnit in JDeveloper 10g 10.1.3.1. I have searched in the site they suggested me to click on 'check for updates' menu option. But if click on check for updates option after click next on welcome page I have selected 'search update centers' radio button and then have clicked on add button which asking to enter Name and Location. But I am not understanding what enter there. I have tried by entering OTN, http://www.oracle.com/technology/software/products/jdev/index.html. I have got any results.
Please help awaiting for reply

Hi,
You don't need to add anything. If you have a functional internet connection that JDeveloper can use, then you will already be able to see Oracle's official update centers in the list (you should see "Official Oracle Extensions and Updates" as the first item).
If you're having trouble with internet connectivity from JDeveloper, check out the Web Browser and Proxy page in Preferences and make sure any proxy settings you require to contact the internet are configured properly.
Thanks,
Brian

Similar Messages

  • JUnit in jdeveloper 10g

    Can someone give me some documentation on how to create test cases and incorporate JUnit into jdeveloper?
    I have looked around but haven't had much luck. Thanks

    Use help->check for update to get the JUnit extension to JDeveloper.
    And here is a basic demo of how to use it:
    http://www.oracle.com/technology/products/jdev/viewlets/1013/agile_development_viewlet_swf.html

  • Installing the Oracle JDeveloper 10g Portal Extension

    i have followed all the steps to install jdev portal extension but i am not able to see Java Portlet and Oracle PDK Java Portlet portlets in web tier..what could be the reason

    Hi,
    Did you notice any errors during the installation ? i.e, when you install the Portal Addin Jar File..
    Regards,
    Sandeep

  • J2ME wiht JDeveloper 10g version 10.1.3

    Hi,
    I need to work with j2me and JDeveloper 10 version 10.1.3, I tried to install JWE for JDeveloper 10g(9.0.5) but this doesn´t work well.
    What extensions do i need?

    Currentrly there isn't a J2ME extension to JDeveloper 10.1.3.
    If you are trying to develop an application for a mobile device you might be interested in this tutorial:
    http://www.oracle.com/technology/products/jdev/101/tutorials/wireless/mobile2.html

  • Jdeveloper 10g + JUnit

    Hi everybody my problem is:
    I'm using Jdeveloper 10g, JSF, ADF Faces.
    I'm trying to do a test case using JUnit with JDeveloper but the method corresponding to test case requiere an objects
    javax.faces.context.ExternalContext;
    javax.faces.context.FacesContext;
    something like this:
    ExternalContext objExternalContext = FacesContext.getCurrentInstance().getExternalContext();
    so, like the test case isn't executing in a web context this object(objExternalContext) is null and the test case present the famous exception NullPointerException and can't finish the test case.
    Any suggestion to create and run a test case in a web context will be a great help.
    Thanks in advantage.
    Mauricio.

    Maybe httpunit can help here:
    http://www.oracle.com/technology/products/jdev/howtos/10g/httpunit/index.html

  • Error installing jdeveloper 10g

    i have this error when trying to unzip and install jdeveloper 10g (jdev9052.zip)
    it says..
    Error loading Theme
    The file "C:\WINDOWS\system32\Themes\MyTheme.Theme" is not a valid theme.
    therefore, i cant install jdeveloper 10g..which i need it for my school assignment.
    hope anyone out there can help me with this problem i'm encounting..thanks for your help
    ps: i'm using XP pro for my OS

    Try it on another computer this probably has more to do with your computer than with JDeveloper.
    Joris

  • Installing JDeveloper 10g on Linux

    I am installing JDeveloper 10g base_installation on Fedora Core 2.
    I am using Sun J2SDK 1.4.2_05 which is work well with other applications. I have P4 with 512MB of Memory.
    I fellowed the intallation procedure in http://www.oracle.com/technology/products/jdev/htdocs/9.0.5.2/install.html#installnonwindows
    when i start jdev (even when i log as a root) the jdev start ok.
    But when i choose new from the short cut menue of the "Application Navigator" nothing happen.
    *the same copy works fine with Windows XP.
    Help me please!!

    For step-by-step instructions see here
    http://www.puschitz.com/InstallingOracle10g.shtml

  • JUnit 4 AfterClass annotation alternative in JUnit 3 in JDeveloper 10g

    hi
    A JUnit 4.6 test class like this ...
    public class MyJUnit4TestClass
         @BeforeClass public static void myBeforeClassMethod()
         { System.out.println("MyJUnit4TestClass.myBeforeClassMethod() : begin"); }
         @AfterClass public static void myAfterClassMethod()
         { System.out.println("MyJUnit4TestClass.myAfterClassMethod() : begin"); }
         @Before public void myBeforeMethod()
         { System.out.println("MyJUnit4TestClass.myBeforeMethod() : begin"); }
         @After public void myAfterMethod()
         { System.out.println("MyJUnit4TestClass.myAfterMethod() : begin"); }
         @Test public void myFirstTest()
         { System.out.println("MyJUnit4TestClass.myFirstTest() : begin"); }
         @Test public void mySecondTest()
         { System.out.println("MyJUnit4TestClass.mySecondTest() : begin"); }
         public static void main(String[] pArguments)
              org.junit.runner.JUnitCore.main("junitafterclassstuff.junit4stuff.MyJUnit4TestClass");
    } ... results in output like this ...
    JUnit version 4.6
    MyJUnit4TestClass.myBeforeClassMethod() : begin
    .MyJUnit4TestClass.myBeforeMethod() : begin
    MyJUnit4TestClass.mySecondTest() : begin
    MyJUnit4TestClass.myAfterMethod() : begin
    .MyJUnit4TestClass.myBeforeMethod() : begin
    MyJUnit4TestClass.myFirstTest() : begin
    MyJUnit4TestClass.myAfterMethod() : begin
    MyJUnit4TestClass.myAfterClassMethod() : begin
    Time: 0
    OK (2 tests)Given that JDeveloper 10g (10.1.3.4.0) does not support JUnit 4 (see threads Mature testing: TestNG or JUnit 4 for JDeveloper? and JUnit4 and Jdev 10.1.3.1), I am trying to find an alternative for the JUnit 4 AfterClass annotation in the JUnit version that is integrated (which seems to be 3.8.1).
    I could write code like this ...
    public class MyJUnit3TestClass extends TestCase
         protected static boolean fBeforeClassHasRun = false;
         protected static void myBeforeClassMethod()
              System.out.println("MyJUnit3TestClass.myBeforeClassMethod() : begin");
              fBeforeClassHasRun = true;
          * under which conditions or with which JUnit API hook can I call
          * this method, similar to the JUnit 4 AfterClass annotation
         protected static void myAfterClassMethod()
         { System.out.println("MyJUnit3TestClass.myAfterClassMethod() : begin"); }
         protected void setUp() throws Exception
              super.setUp();
              if (!fBeforeClassHasRun)
                   myBeforeClassMethod();
              System.out.println("MyJUnit3TestClass.setUp() : setting up");
         protected void tearDown() throws Exception
              super.tearDown();
              System.out.println("MyJUnit3TestClass.tearDown() : tearing down");
         public void testMyFirstTest()
         { System.out.println("MyJUnit3TestClass.testMyFirstTest() : begin"); }
         public void testMySecondTest()
         { System.out.println("MyJUnit3TestClass.testMySecondTest() : begin"); }
    } ... resulting in output like this ...
    MyJUnit3TestClass.myBeforeClassMethod() : begin
    MyJUnit3TestClass.setUp() : setting up
    MyJUnit3TestClass.testMySecondTest() : begin
    MyJUnit3TestClass.tearDown() : tearing down
    MyJUnit3TestClass.setUp() : setting up
    MyJUnit3TestClass.testMyFirstTest() : begin
    MyJUnit3TestClass.tearDown() : tearing downBut what can I do to call MyJUnit3TestClass.myAfterClassMethod() after all the tests in the class have been run, and as such let it behave similar to what the JUnit 4 AfterClass annotation allows me to do?
    many thanks
    Jan Vervecken

    repost

  • Does anybody how to install portlet add-in to Jdeveloper 10g?

    I would like to know if anybody knows how to install the portlet add-in to Jdeveloper 10G?
    Thanks in advance.

    The portlet extension for Jdeveloper 10g is now out on the JDeveloper Extension Exchange - http://otn.oracle.com/products/jdev/htdocs/partners/addins/exchange/index.html

  • Installing Oracle Text add-in to Jdeveloper 10g...

    Hi ,
    In the following url:
    http://www.oracle.com/technology/software/products/text/text.html
    the Jdeveloper's add-in for developing Text application is downloadable....
    My question is: The zip file titled: "TextWizard10.1.0.3.0.1_jar.zip" for JDeveloper 10g is for JDeveloper 10.1.2.0 or 10.1.3.0.1 or none of these versions...????????
    Thanks , a lot
    Simon

    "Support for JDeveloper is restricted to 9.0.2, 9.0.3, 9.0.4, and 10.1.0.0 "

  • Installing JHeadstart in JDeveloper 10.1.3.4

    Hi guys,
    I've recently moved to a new laptop (Win7 64bit) and am trying to re-install JHeadstart (JHS10.1.3.3.81-INSTALL.zip) in a fresh install of JDeveloper 10.1.3.4 to allow me to maintain some old applications still using 10g.
    I open up JDeveloper, select the Help .. Check for Updates .. Install from Local File and select the JHeadstart zip file. The summary screen shows it will install a new extension : Oracle JHeadstart version 10.1.3.3.81. I click on finish, then on Yes to "restart JDeveloper to finish installing updates".
    When JDeveloper restarts however, there is no welcome message and the JHeadstart extension has not been installed (and no error message) ? I've done the same install countless times before (only on 32bit windows). I've checked file security settings on the jdev/lib and jdev/ext folders and it's set to full access for all users.
    Any idea what is going wrong ? Can I perform the install manually ?
    Cheers,
    Brent

    Hi Brent,
    I don't know how to install exceptions manually. However why don't you try to install a different extension (e.g. junit integration), to see if the problem persists (is it a general problem with your jdeveloper installation / none of the extensions work??). Also try to start up the jdeveloper from the command prompt - are there any exceptions (e.g. IOException) logged on the console upon startup?
    The problem might be related to file permissions, jdk version, or 64-bit win7 os (jdeveloper 10g not certified).
    Edited by: user647567 on Jun 25, 2011 12:41 PM

  • How to create a "pjc" using jdeveloper 10g

    Hi guys
    I am trying to make my first pjc (pluggable java component) using jdeveloper (default installation with Oracle developer 10g). I was following the [Jdeveloper 9 documentation||http://www.oracle.com/technetwork/developer-tools/forms/index-087743.html] from OTN and got stuck once after creating the PJC1.java
    According to the documentation, the property inspector should allow me to change various properties for the newly created .java file and let me add new events with the events tab. In my case, once after I select the java item from UI, the property inspector doesn't show anything. No tabs for properties or events :O
    If somebody could point me towards Oracle documentation for Jdeveloper 10g, it would grateful.
    regards,
    raj
    Edited by: rthampi on Apr 27, 2013 8:50 PM

    CraigB wrote:
    Oracle jDeveloper 10.1.2.1.0 was the last version the inclued the Forms PJC Wizards. All versions after this didn't include them. You can actually develop a PJC using any IDE, but I have found using the PJC Wizard to be extreamly helpful. Java is not my strongest skill and I don't do a lot of Java PJC development so I keep this version installed for when I need to work on PJCs.
    Craig...Thank you Craig. We are with Oracle ERP R12 from 2009 June and almost all our legacy applications were either made a part of the ERP suite, or hosted with Weblogic server 10.3.6. As leading the development team, my biggest challenge is making the custom applications migrated to 11g forms/Reports "behave" exactly like the ERP suite.
    We wanted to design a parameter screen for the reports, almost like with ERP Suite, where the parameter columns are dynamically created during runtime and the biggest challenge was to limit the MAXIMUM LENGTH for those columns, thus started our venture to find an appropriate solution. After spending almost 20 years in the field of software development, I just didn't want to copy a jar file from the web and get over with it. Instead I wanted to understand what the codes do.
    Anyway, Francois was kind enough to provide the .java with his pjc blog and I created a new pjc based on this .java code :) and my objective was satisfied. If Oracle really wants to "kill" the forms/reports, I think they just should do that, instead of removing few highly sought components with so called "Newer versions"
    Ridiculously the documentation library for JDeveloper 10.1.0 is empty, even though it is listed with Oracle documentation library.
    Cheers guys
    raj

  • JUnit for JDeveloper 11G ?

    Hi,
    For some reason, I couldn't find the JUnit Integration available for JDeveloper 11G, I check for update, and just couldn't find it in the list.
    I tried to check out the update items in the first one called "Official Oracle extension and update" but did not see any items available.....
    I tried (reinstall JDeveloper 10G) the update is fine (I can see the JUnit Integration).
    Please help.
    Thanks very much.

    Please post JDeveloper 11 questions on the JDev 11 forum here:
    JDeveloper and OC4J 11g Technology Preview
    If you are using JDeveloper 11 TP3 Build 4796 you should see the JUnit extension in the check for update if you don't then check your proxy settings under tools->preferences.
    If it still doesn't work you can download the file directly from here:
    http://www.oracle.com/technology/products/jdev/101/update/center.xml#oracle.jdeveloper.junit
    and then use the check for update to install from local copy.

  • Error while running OA Framework (Suppliers Page) in Jdeveloper 10g

    Hi All,
    Currently working on R12 and OA Framwork Version is 12.0.3. As per metalink note 416708.1 ....installed jdeveloper verison p6509325_R12_GENERIC. Error Message....Can you please let me there is any workaround for this?
    OA Framework Version InformationOA Framework Version 12.0.3
    MDS Version 9.0.6.0.0 (build 26)
    UIX Version 2.3.6.2
    BC4J Version 10.1.3.3
    I am running into following error message while a running a Suppliers Page in Jdeveloper 10g.
    oracle.apps.fnd.framework.OAException: java.lang.NullPointerException
         at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source)
         at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source)
         at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(Unknown Source)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(Unknown Source)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(Unknown Source)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(Unknown Source)
         at oracle.apps.pos.supplier.webui.ByrPurchCO.processRequest(ByrPurchCO.java:60)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at OA.jspService(_OA.java:71)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##
    java.lang.NullPointerException
         at oracle.apps.pos.supplier.server.ByrSuppAMImpl.initializeOrg(ByrSuppAMImpl.java:1447)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(Unknown Source)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(Unknown Source)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(Unknown Source)
         at oracle.apps.pos.supplier.webui.ByrPurchCO.processRequest(ByrPurchCO.java:60)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at OA.jspService(_OA.java:71)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    java.lang.NullPointerException
         at oracle.apps.pos.supplier.server.ByrSuppAMImpl.initializeOrg(ByrSuppAMImpl.java:1447)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(Unknown Source)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(Unknown Source)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(Unknown Source)
         at oracle.apps.pos.supplier.webui.ByrPurchCO.processRequest(ByrPurchCO.java:60)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at OA.jspService(_OA.java:71)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)

    Check the page function and make sure that you are providing all the parameters for page functions. Also make sure that it is the page where the process starts and it is not expecting any value from any other page.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Problem in using JDeveloper 10g with JHeadstart

    I am using JDeveloper 9.0.3 and jheadstart 9.0.4.5 and I would like to test jdeveloper 10g preview with JHeadstart.
    So, I have downloaded the JDeveloper 10g to test it with my old application.
    Having run the Jdeveloper for the first time, I realized that Jdeveloper
    installed the jheadstart automatically and following message was shown in the message window :
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\PrjWizard.jar!\META-INF\jdev-ext.xml
    Error: <Line 12, Column 24>: XSD-2034: (Error) Element 'description' not expected.
    Error: <Line 13, Column 17>: XSD-2034: (Error) Element 'help' not expected.
    Error: <Line 17, Column 27>: XSD-2034: (Error) Element 'dependency_addin' not expected.
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\JhsShare.jar!\META-INF\jdev-ext.xml
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\MvcFrameworkServiceFileViewer.jar!\META-INF\jdev-ext.xml
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\JHeadstartDesignerGenerator.jar!\META-INF\jdev-ext.xml
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\JAGLauncher.jar!\META-INF\jdev-ext.xml
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\Bc4jPropertyEditor.jar!\META-INF\jdev-ext.xml
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\JASEditor.jar!\META-INF\jdev-ext.xml
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    So I try to test one of my old application with this configuration. After Jdeveloper migrated my workspace and projects and business componenet
    to the newer version, I run the application generator. It worked fine without any problem but after running the application, I got an error page showing
    that my bc4j.xcfg is not in the path.
    On the other hand, I found out that when I wanted to view my UIX pages, 2 dialog boxes appeared. The first one asked to upgrade
    to UIX 2.2's new expression language syntax and the other which is on the top of the first one, showing that UIX runtime failed to render the page
    with following detail :
    javax.servlet.ServletException: No page broker found!
         at oracle.cabo.servlet.PageBrokerHandler.handleRequest(Unknown Source)
         at oracle.cabo.servlet.UIXServlet.doGet(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at oracle.cuervo.share.servlet.PreviewServletContainer.handleRequest(PreviewServletContainer.java:305)
         at oracle.cuervo.share.servlet.PreviewServletContainer.handleRequest(PreviewServletContainer.java:229)
         at oracle.cabo.ide.addin.preview.UIXRenderThread._reallyLoad(UIXRenderThread.java:263)
         at oracle.cabo.ide.addin.preview.UIXRenderThread.runImpl(UIXRenderThread.java:203)
         at oracle.cabo.ide.addin.preview.BasePreviewThread.run(BasePreviewThread.java:79)
    I think that I should have set some setting before use JHeadstart with JDeveloper.
    Could anybody help me ?

    Alex,
    The document Sandra referred to applies to JDeveloper 10g preview (9.0.5.0). JHeadstart 9.0.4.5 will NOT work with JDeveloper 109 production (9.0.5.1).
    We plan to release a new version end of april that is compatible with 9.0.5.1. See this thread for more info: JDeveloper 10g production, status JHeadstart?
    Steven Davelaar,
    JHeadstart Team.

Maybe you are looking for