Problem due to 2 JDeveloper..any Solution?

Dear all one of my friend is new in OAF. He is working on JSP. Now he has started work on OAF as well.So i copied my JDeveloper to his system. Now he has 2 jdeveloper. Both have same version( that is 9.0.3) but their directory structure is different. In old one he has to put JSPs in public html folder and in new one (that is of OAF) he has to put in ....myhtml/OA_HTML.
But when the opens new JDeveloper it gives warning as "This version of JDeveloper is certified on JDK 1.4.2 you are attempting to run on JDK 1.5.0. JDeveloper may not run correctly on this version of the jdk.Continue?"
and when he is tring to run JSP it gives error as "Error: JSP files must reside in the server root directory or a subdirectory beneath it"
Can anyone suggest the solution for this problem?
Thanks
Bhupendra

Bhupendra,
Set JDEV_USER_HOME to proper jdeveloper folder before starting the corresponding Jdev. This is the only way to use multiple Jdev setup on a single system.
--Shiv                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Just downloaded and installed CS6 extended, it says problems with display driver? any solution?

    Just downloaded and installed trial version CS6 extended. It will not display any file and says display driver problem. Any solution?

    Update your graphics driver.
    Mylenium

  • I allowed Apple updates about two weeks ago and now Safari is way too slow.  I have tried using Airport and Ethernet and the problem is the same.  Yesterday, I updgraded to Safari 5.1 and the problem is now worse.  Any solutions?

    I allowed Apple updates about two weeks ago and now Safari is way too slow.   I have tried using Airport and Ethernet and the problem is the same.  Yesterday, I upgraded to Safari 5.1 and now the problem is worse.  Any solutions?

    I can't stand peremptory affirmations like "Nothing is wrong with Safari".
    Thousands of users can't be wrong (see the discussions).
    If I read you the right way, it's never software' fault, it's the user who's the culprit.
    Amazing!
    In this very case, the fact is we can't give to "christinefromfonthill" a good solution because weren't sitting in front of her Mac.
    You give her a good advice which could, perhaps, lead to an improvement.
    But must also admit that Safari is a very slow browser compared to Firefox or Chrome.
    And you can't ignore all the problems which arose when upgrading to Lion and were related to the new build and specs of Safari 5.1.
    The best example is the apparition of "garbage type" (use of Last Resort font) when reading numerous sites. This never occured before and is the direct consequence of Safari compliance to Web Open Type. This standard prohibits the use of Type 1 Postscript Fonts and is the reason why so many people are in trouble.
    I use a Mac for more than 25 years.
    I am a very "clean" user who hates the bells and whistles of third party.
    My Mac is always up-to-date and despite all my Mac loving care, I run into some problems.
    Imagine the nightmare which can occurs for the vulgum pecus who isn't, by definition, a power user aware of all the requirements for running a System in optimal conditions.
    May be Safari is one step in advance on its time but lambda users are paying the price for it.

  • I am using Firefox 4.0. Face problem opening .aspx file / application, any solution?

    webpage in form of Pop-up window (.aspx file ) is not getting opened in Firefox 4.0 browser. please suggest solution. The same webpage opened when opened with Google Chrome Browser 10.0.648.151.

    If text on web pages isn't visible then you most likely have a problem with the font that is used on those pages.
    As a test you can try to disable the website fonts and if that still doesn't work then try a few different default fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced > [ ] "Allow pages to choose their own fonts, instead of my selections above"

  • My ipod update downloads are always interrupted about halfway through. I have no problem downloading anything else. Any solution?

    Can't download the ipod touch update. It keeps timing out about halfway through.  I don't have this problem downloading any other large files. Is this an issue with the ipod and/or software?

    Hi there,
    What gen device are you using?
    Disconect your Firewall or any security programme that could be blocking this download.
    If all else fails then totally uninstall iTunes and Apple mobile device support then reinstall it.
    Hope this helps!

  • I cannot use Microsoft Hotmail with Firefox 3.6.24 and Windows 7. I click on an email but nothing happens. I did not have this problem with Windows Vista. Any solutions would be greatly appreciated.

    The Windows 7 is on a new Dell Inspiron desktop. The Windows Vista is on a Dell Studio laptop that I have had for a while. The Hotmail also works fine on the new computer when I use IE9.

    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.2 r152
    # Java Plug-in 1.6.0_11 for Netscape Navigator (DLL Helper)
    *http://www.mozilla.com/plugincheck/
    Update the Flash plugin to the latest version.
    *https://support.mozilla.com/kb/Managing+the+Flash+plugin
    *http://kb.mozillazine.org/Flash
    *http://www.adobe.com/software/flash/about/
    Update the Java plugin to the latest version.
    *https://support.mozilla.com/kb/Using+the+Java+plugin+with+Firefox
    *http://kb.mozillazine.org/Java
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)

  • Simple Access SQL problem but can't find any solution

    I have a simple java database connectivity to 3 table database to keep some records everything except one single querry line is not working and I could not figure out why.
    I put the code below I get error message is basically a Too few parameters expected 1 error. Every field name matches the ones database(I'm sure because I have other queries that use same fields in other methods) and it is simple al other queries are working fine except the one that I marked between stars. I put the method's necessary part below.
    Pls help meeeeeeeeeeeeeeee!!!
    int trans_no;
          Class.forName(JDBC_DRIVER);
          Connection DBConnection = DriverManager.getConnection(DATABASE, "admin"," ");
          Statement DBStatement = DBConnection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
          ResultSet resultSet = DBStatement.executeQuery("SELECT TransactionNo FROM TransTable");
          resultSet.last();
          if(resultSet.getRow() == 0)
              trans_no = 1;
          else
          trans_no = resultSet.getInt(1)+1;
          String exit_time = exit_date.substring(0,8);
          String exit_day = exit_date.substring(11,exit_date.length());
          String receipt_time = receipt_date.substring(0,8);
          String receipt_day = receipt_date.substring(11,receipt_date.length());
             resultSet = DBStatement.executeQuery("SELECT RcptNo FROM RcptTable WHERE ReceiptTime = '"+receipt_time+"'")
             DBStatement.executeUpdate("INSERT INTO TransTable (TransactionNo, RcptNo, RcptDate, RcptTime, ExitDate, ExitTime, TotalAmount, Change) " +
          "VALUES ('"+trans_no+"', '"+"2"+"', '"+receipt_day+"', '"+receipt_time+"', '"+exit_day+"', '"+exit_time+"', '"+Amount+"', '"+Change+"')");//resultSet.getInt(1)

    "SELECT RcptNo FROM RcptTable WHERE ReceiptTime = '"+receipt_time+"'"
    In MS Access, this exception occurs when the column names specified in the query are not correct. Check the table definition and verify the column names.

  • Close Window Ctrl+Shift+W shortcut is causing me problems (due to fumbling fingers) Any way to disable it please

    Often lose large forum posts (when I am composing them) when I mis-hit and get the control key first when wanting to type a capital w.
    Would be nice if this particular shortcut could be disabled

    Thanks a lot. I figured there would be a way but couldn't find anything relevant in my searches other than a reference to a feature that wasn't on my system, plus a Mozilla statement that shortcuts were NOT user configurable.
    It will likely save my laptop from a grisly end when it happens once too often.

  • TS2446 The problem is not fixed after resseting the password :| .....any solution ?

    My apple id is disabled for no reason , i try to reset the password but problem persist   you people have any solution for my problem?   Thanks

    Assuming iPhoto 09 or later:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Any Solution to Convert back USB recovery into Partition recovery

    Hello,
    I bought DV6-6120us with 64 bit Windows 7 Home Premium few months a go. I made USB Recovery disk with the help of HP USB recovery flash utility. some days later my hard drive stoped working due to soe bad segments.
    I claimed for warrenty. they changed the Hard drive with some worng recovery partition. Now when i try to restore my laptop to fectory settings from USB but that dont work. Would you suggest me any solution for the problem. And is there any solution to convert my USB recovery back into Partition Recovery.
    Please Help me out. 

    Thanks for the reply.
    Obviously I am not getting this across correctly.
    The recovery from the USB stick did NOT put back the hidden recovery partition. Checked in Computer manage, disk management,
    in the drive is
    1) simple basic recovery partition (no drive letter) size 1.46gig and free is 1.46gig.
    2) simple basic NTFS partition C drive. size 915gig free 841gig
    3) nothing! (in the original disk this was the 3rd partition containing simple basic no drive letter, it was the recovery partition. Now after the recovery process to return the PC back to manufacturer original it has created the 1 and 2 but NOT the 3 partition.
    To carry out recovery by pressing the zero key is not possible from the currently installed HDD because there is no recovery partition. The C drive partition took all the space from after the 1.46gig partition 1 to the end of the disk. The Disk should have been returned to original status but it wasnt. A Toshiba utility to make recover disks when run reports there is NO recovery partition available and exits.
    " the usage of recovery medium (disk or USb stick) would set the HDD back to factory settings". That did not happen. Would appears to be should have but DID NOT.
    I appreciate the attempts to help but it seems I am stuck with keeping the USB stick as the OS recovery device.
    Minsik.

  • Using talktalk and unable to send or reply to emails any solution?

    Having just bought iPad and set up all passwords etc now. Finding unable to send or reply to emails no problem with receiving, just when I send, the message comes back that server does not recognise my address. I am with talktalk, don't know if the problem is with them. Any solutions that can be tried?

    Hello 45655,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iOS: Unable to send or receive email
    http://support.apple.com/kb/ts3899
    Best of luck,
    Mario

  • I have keynote on ipad2 and powerbook g4. if I send a keynote work from mac to Ipad, I cannot read it. any solution?

    I have keynote on ipad2 and powerbook g4. if I send,by mail, a keynote work from mac to Ipad, I cannot read it.there is no problem fram Ipad to mac. any solution? thanks

    How are you trying to transfer the Keynote presentation?
    You can email the presentation to yourself and open it with Keynote on your iPad.
    You can use iTunes. Connect your iPad to your laptop, start iTunes, go to the App Tab for your device and add your presentation to the Apps/Keynote section. Now if you touch the "+" in keynote on your iPad you will get the choice Copy from iTunes.
    Your can setup iCloud on your laptop & iPad and save your Mac laptop presentation to iCloud and just open it on your iPad.
    There are, of course many other ways, Dropbox, etc.

  • Loud Speaker Turns on during call . Any solution ?

    Loudspeaker turns on during call with an option showing me that its in handset mode and offcourse it still gives me an option to switch the loudspeaker on . Is there any solution for this tried updating the software and all ... 
    If any other solutions pls let me know .... 
    I had this problem with my N8 which i got on October 11 2010 since then i have been to Nokia  Care more than 30 times for service and other problem . Atlast they gave me a replacement handset (swap is what they call) a week back but even with the New handset i am facing the same problem .. Is there any solution 
    Regards 
    Vikash

    No Bro it doesnt works ...
    Tried it with a different Sim card as well but facing the same problem Loud Speaker turns on by itself ... ...  Dont know if there is ever gonna be a solution for this . . Even Nokia care has no solution for this problem ..  I guess the Nokia Technician are incapable  or inefficient of sorting the issue  .. 
    Do tell me if u have anything  else which i could try ... 
    Thanks 
    Vikash

  • As soon as I open iTunes a  message pops up to say a problem has stopped it from working and I have to close it. Any solutions?

    As soon as I open iTunes a  message pops up to say a problem has stopped it from working and I have to close it. Any solutions?

    Start with the third box in  Troubleshooting issues with iTunes for Windows updates.
    If that doesn't work, use the steps in the second box to repair your iTunes installation. Your library should be unaffected by these steps but there is backup advice elsewhere in the user tip.
    tt2

  • Using IOS 7.1.2 on Safari when I leave the focus on a input on my webpage and rotate my device from Horizontal to vertical, I see a black space on the right and the page is not displayed properly. Any solutions to this problem?

    iOS Version: 7.1.2
    Browser: Safari
    I have a sample log-in page with two input fields and a submit button. When I focus on any of the input fields in landscape mode and rotate my phone and come to the portrait mode I see a weird black space towards the right of my page. Screenshots attached below:
    My page code below:
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
        <title>IOS Test</title>
        <style type="text/css">
            a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li, meter, nav, object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup, table, tbody, tfoot, thead, th, tr, tdvideo, tt, u, ul, var
                background: transparent;
                border: 0 none;
                font-size: 100%;
                margin: 0;
                padding: 0;
                border: 0;
                outline: 0;
                vertical-align: top;
            ol, ul
                list-style: none;
            blockquote, q
                quotes: none;
            table, table td
                padding: 0;
                border: none;
                border-collapse: collapse;
            img
                vertical-align: top;
            embed
                vertical-align: top;
            article, aside, audio, canvas, command, datalist, details, embed, figcaption, figure, footer, header, hgroup, keygen, meter, nav, output, progress, section, source, video, div
                display: block;
            mark, rp, rt, ruby, summary, time
                display: inline;
            input, textarea
                border: 0;
                padding: 0;
                margin: 0;
                outline: 0;
            iframe
                border: 0;
                margin: 0;
                padding: 0;
            input, textarea, select
                margin: 0;
                padding: 0;
            body
                font-family: Arial, Myriad Pro, Trebuchet MS, sans-serif;
                font-size: 100%;
                background: #F5F5F5;
            a
                text-decoration: none;
            a:hover
                text-decoration: none;
            img, object, embed, video
                max-width: 100% !important;
            .clear
                display: block !important;
                width: 100% !important;
                clear: both !important;
            .body
                position: fixed;
                width: 100%;
                top: 0;
                left: 0;
                overflow-y: scroll;
                -ms-overflow-style: -ms-autohiding-scrollbar;
                -webkit-overflow-scrolling: touch;
                -ms-touch-action: pan-y;
                -ms-user-select: none;
                z-index: 0;
            .body > *
                -webkit-transform: translateZ(0px);
            .header
                background: #fff;
                text-align: center;
                border-bottom: #45A116 solid 8px;
                padding: 5% 10%;
            .content
                width: 70%;
                position: relative;
                margin: 20% auto 10% auto;
                text-align: center;
            .content input
                display: block;
                background: #E6E6E6;
                border-radius: 15px;
                border-bottom: #A8A8A8 solid 3px;
                margin-bottom: 5%;
                width: 96%;
                padding: 4% 2%;
                text-align: center;
                color: #595959;
            .content a
                display: inline-block;
                padding: 2% 10%;
                color: #fff;
                background: #45A116;
                margin-top: 5%;
                border-radius: 5px;
                border-bottom: #2C690E solid 3px;
                -webkit-transition: all 0.1s linear;
                -moz-transition: all 0.1s linear;
                -ms-transition: all 0.1s linear;
                -o-transition: all 0.1s linear;
            .content a:active
                background:#368011;
        </style>
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script>
        <script type="text/javascript">
            function adjustBody() {
                var wh = $(window).height();
                $(".body").css({
                    "height": wh + "px"
            $(document).ready(function () {
                adjustBody();
                $(window).resize(function () {
                    adjustBody();
        </script>
    </head>
    <body>
        <div class="body">
            <div class="header">
                <img src="sampleImage.png" alt="Sample Logo" />
            </div>
            <form action="" method="get" id="sampleForm">
            <div class="content">
                <input type="email" value="User Name" onblur="if($(this)[0].value == ''){$(this)[0].value = 'User Name';}"
                    onfocus="if($(this)[0].value != '' && $(this)[0].value == 'User Name'){$(this)[0].value = ''};" />
                <input type="password" value="Password" onblur="if($(this)[0].value == ''){$(this)[0].value = 'Password';}"
                    onfocus="if($(this)[0].value != '' && $(this)[0].value == 'Password'){$(this)[0].value = ''};" />
                <a href="javascript:void(0);" onclick="$('#sampleForm').submit();">Login</a>
            </div>
            </form>
        </div>
    </body>
    </html>
    Does anyone have any solutions to this problem?
    Regards,
    Mayank Tripathi

    ALWAYS SAVE YOUR idevice USING ICLOUD !!!! IT SAVES ... ALL !! (includings apps data, but the apps themselves ! USE IT ! i done this...)

Maybe you are looking for