Oc4j 10.1.2.0.2 and Fedora

We have Oracle 10g AS 10.1.2.0.2 deployed at an enterprise level. I am working on a JSF application that will be deployed to this server. As I work on this application I would like to deploy it in stages to a local copy of oc4j 10.1.2.0.2 on my workstation.
I am using Fedora FC6 x86-64 for my workstation and in the installer exits due to an operating system check. Can oc4j 10.1.2.0.2 be installed on FC 6 o(or any version of linux not on the official support list)?
Thanks
Brad

I solved the problem. The original download was the "j2ee and web cache" download from the Application Server area. I later found a link to oc4j downloads from the JDeveloper pages that was really what I was after.
Brad

Similar Messages

  • How do I clear Browsing History from CommandLine in Windows XP / Windows 7 / And Fedora

    ok, Here is the reasoning and Scenario.
    Thousands of PC's in a corporate environment, All using a web based application so cache's fill up fast.
    Most of these are at remote offices with users not able to navigate back end controls, ie they only know how to use what they are shown.
    Plus the browsers rarely if ever get closed so the empty on close option does not get a chance to work.
    I can for IE users setup a script in scheduled tasks to clear the IE cache files, but I need FireFox options for Windows and Fedora, as we are transitioning to FireFox and in some cases even off the windows platform.

    Maybe set browser.cache.check_doc_frequency to 1. That will cause it to check with the webserver each time to see if it is different from the cache. If that doesn't work, network.http.use-cache to false will ignore the cache, which will really hurt performance overall.
    The better option is to have the web server set a no-cache (or very short expiration) header on the javascript files, or other server-side tweaking. Although, strictly speaking, it doesn't make sense that caching of javascript files is a problem unless you're doing development. In a production setting, there should be nothing wrong with caching of javascript. If the javascript is changing as the app runs, the web server should either be setting no-cache, or the javascript should be given a different name, perhaps appending a session number, etc.

  • Y500 dual boot windows 8 and fedora 19 problem

    I bought a y500 two days ago and i wanted to dual boot windows 8 and fedora 19, so here's what i did
    1. downloaded fedora 19 (x64) iso from the fedora website.
    2.made a live USB using live usb creator.
    4.opened disk management utility and shrunk the c drive (windows 8 was installed here) by 100 gb and kept the 100gb unallocated.
    3. started the laptop with novo button, changed the bios config to boot from usb.
    4.installed fedora from usb, selecting the 100gb unallocated memory for installation
    5.restarted the laptop.
    now the problem is fedora works perfectly but when i try to boot windows 8, the following error is shown.
    windows failed to start
    file:\BOOT\BCD
    status: 0xc0000225
    info:the boot configuration data for your PC is missing or contains errors.
    i am guessing the fedora installation overwrote the boot files of windows and
     i have not taken a backup. please help

    hi,
    I have a Y500 and I wanted to dualboot fedora 19 with windows 8, this proved to be unsuccessful. I had made a repair disk before the process (but not a set of recovery disks unfortunately >.<   ). now I inserted the repair disk and selected the automatic repair option, it showed a message that auto recovery has failed.  now when I pressed the NOVO button and selected the system recovery option, it does not go into the OKR menu but continues with the normal booting process.  Can somebody guide me or give links where I can find step by step instructions to making OKR work and reset my laptop to factory settings? PLEASE help As Soon As Possible
    NOTE: I did resize the windows 8 os partition but the recovery and the lenovo partition are still untouched

  • I am using jboss 4.2, java5.0 and Fedora Linux Enterprise Version 4.0 with

    Hi,
    I am using jboss 4.2, java5.0 and Fedora Linux Enterprise Version 4.0 with kernel 2.6 and NPTL 2.3.4
    I am using open source network chart generation API provided by geosoft ( http://geosoft.no/graphics/). This API generates chart into swing window.
    I wrote the code to change this swing window into web browser compatible jpeg image. I used thread to generate the image. It is working fine, for one user and no other processes running on the application.
    ISSUE:- When more than 5 users hit the application at the same time, some images get generated, some donot, there is no fixed trend to this image generation process.
    I analyzed CPU timing, it is using 100% CPU and after the images are generated / not generated, the CU usage goes down to zero.
    When I used the same code with Linux 9.0 (kernel 2.4, NPTL � 0.6), rest remain the same, it is working perfectly fine with more than 10 users, with all images being generated within 30 secs
    Can somebody help me out to figure out whether it is a kernel issue / NPTL issue? Does it have something to do with thread processing?
    Code for network chart generation :-
    NetworkGenerator ntw=new NetworkGenerator();
    BufferedImage img;
    ntw.setVectRootNodes(vectRootNodes);
    ntw.setHashChildNodeNames(hashNodeData);
    ntw.setHashNodeRelation(hashNodeRelation);
    ntw.setHashNodesCreated(hashNodesCreated);
    ntw.setSupplyChainBean(supplyChainBean);
    Thread t=new Thread(ntw);
    t.setPriority(Thread.MAX_PRIORITY);
    t.start();
    try{
    t.join();
    catch(Exception e)
    DebugManager.doDebug(className.toString(),e);
    if(t!=null)
    System.out.println(t.getState().name());
    System.out.println(t.isAlive());
    public class NetworkGenerator extends JFrame implements Runnable{
    public void run()
    //call the garbage collector
    System.gc();
    // Create the graphic canvas
    window = new no.geosoft.cc.graphics.GWindow();
    window.getCanvas().setSize(screenWidth,screenHt );
    // Create the GUI
    JPanel topLevel = new JPanel();
    topLevel.setBackground(new Color(255,255,255)) ;
    topLevel.setLayout (new BorderLayout());
    getContentPane().add (topLevel);
    topLevel.add (window.getCanvas(), BorderLayout.CENTER);
    topLevel.setVisible(true);
    // Create scene with default viewport
    scene = new no.geosoft.cc.graphics.GScene(window, "My Scene"+ (new Date().getTime()));
    no.geosoft.cc.graphics.GStyle style = new no.geosoft.cc.graphics.GStyle();
    style.setForegroundColor (new Color (0, 0, 0));
    style.setBackgroundColor (new Color (255, 255, 255));
    style.setFont (new Font ("Arial", Font.BOLD, 10));
    scene.setStyle (style);
    int xPos=minY ;
    int yPos=0;
    int noofChild=vectRootNodes.size();
    int dev=(screenHt -minY )/(noofChild+1);
    int newDev=Math.round(dev-(dev/5));
    //log.debug("---------noofChild-----------------------------------"+noofChild);
    if(!hashNodesCreated.isEmpty())
    for(int i=0;i<noofChild;i++)
    yPos=minY +(dev*(i+1));
    String nodeName = vectRootNodes.get(i).toString();
    log.debug("root nodename===="+nodeName+" with ypos :"+yPos);
    //log.debug("nodeName=="+nodeName);
    //create root nodes
    Node rootNode = createChildNode( nodeName,minY,screenHt,xPos, yPos ,newDev,1);
    scene.add(rootNode);
    log.debug("screenWidth ===="+screenWidth );
    // if(screenWidth>minExtXval)
    // minExtXval = screenWidth;
    // w2 o
    // * |
    // * |
    // * |
    // * w0 o-------o w1
    double w0[] = {0.0,screenHt ,0.0};
    double w1[] = {screenWidth,screenHt,0.0};
    double w2[] = {0.0,0.0,0.0};
    scene.setWorldExtent (w0, w1, w2);
    this.pack();
    Thanks in advance.

    How do I do that as I checked for it in utilities and is not there? Thanks in advance

  • Cannot go to the Internet from Mac OSX, and Fedora Core 5

    All Windows users (XP, 2000, Vista Beta) can connect to the Internet no problem on WRT54G with Firmware v4.20.6 (may 26, 2005). But odd enough, though getting the right DHCP assigned IP addresses and DNS server address, MacBook Pro (OS 10.4.1) and Fedora Core 5 cannot go to the internet at all using Safari and firefox browsers: the message keeps saying that your computer is not connected to the internet. Tested with BOTH wired and wireless connections, no luck to the internet. So, it's not about the wireless settings and setup. It doesn't work even if I directly connect the CAT5 cable to the router port.
    Tested at wireless hotspots, at work where we have Cisco access points, and at a friend's place where there is netgear wireless router, MacBookPro is just working fine connected to the internet.
    Any suggestions? Linksys doesn't support Mac and Linux PCs at all?

    Thank you very much All (devildance, and Frank).
    Seems like it is working fine now...
    I reset the router as factory default, and reconfig the wireless setting(disable broadcasting SSID, configure TKIP PSK, and MAC filtering). Directly connected CAT5 cable from the router to my MacBookPro Windows XP. Working fine. Switched to Mac OSX, working fine. But, when I disconnected the LAN, and attempted to connect wireless, I couldn't go to the Internet using Safari and Firefox: keeps saying that your computer is not connected to the Internet.
    Still could ping to 4.2.2.2 and 207.232.22.25, but getting errors "could not resolve the host name" when I pinged with the hostname bearshare.com.
    Connected the wired CAT5. Working fine. Unplugged and used the wireless, could not get to the internet.
    Checked the NICs settings on both LAN ethernet and wireless airport. All seems the same and correct: IP address, subnetmask and gateway address, and NO DNS entry. The same settings, but works on LAN cat5, and not works with wireless. So, for the sake of it, just manually added the DNS server IP addresses and domain names on wireless NIC. And Wala...it is working fine with wireless. Still strange the fact that Ethernet LAN NIC still doesn't have any DNS entries and working fine, but required DNS entries on wireless NIC.
    For Fedora Core, could ping and resolve names without changing any settings. But when going to the Internet, got the error saying "comcast doesn't support this platform/OS" and another error "Welcome to Comcast High speed Internet....registration currently unavailable" when attempting to go any websites. Notieced that we pinging cnn.com, bearshare.com, or any websites, got ping reply from the same IP address which appears to be one of the comcast DNS server IP, 68.87.64.132.
    So, I think it is a comcast issue not supporting Linux or something else which I would need to call to Comcast about...
    But, thanks...looks like I can go to the Internet on Mac OSX, and Fedora core now with Linksys WRT54G. Thanks so much guys for all the suggestions....

  • Oc4j standalone 10.1.3.3 and service registry with ssl install help needed

    Hello,
    I'm trying to install service registry with oc4j standalone for testing and demoing but am having some difficulty with the ssl side of things.
    I have setup a oc4j standalone 10.1.3.3 and configured the following ports:
    default http port: 9991
    ormi port: 9992
    ormi ssl port: 9993
    https port: 9994
    I have configured oc4j standalone for SSl as per instructions by copying default-web-site.xml to secure-web-site.xml and added secure="true" to <web-site> tag and added <ssl-config keystore..../> as well. I've also modified server .xml and added <web-site path="./secure-web-site.xml" /> into the file.
    I have then installed service registry as a publication (discovery) with http port pointing to 9991 and ssl enabled pointing to 9994 with oracle database.
    I can load http://localhost:9991/ and also https://localhost:9994 and both secure and non-secure page loads fine for the oc4j webpage. I can load http://localhost:9991/registry/uddi/web/ page but when I click on any of the link on it tries to load https://localhost:9994/registry/uddi/web i get a http 404 not found error.
    Tried googling and searching the forum for info, but I'm in need of a little help on where I went wrong.
    Thanks

    Hy frank, thanks for your reply:
    We use a jdk shipped with jdeveloper for running OC4J;
    "<JDev install dir>\jdk\bin\java.exe"
    java -version says:
    java version "1.5.0_06"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)
    Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode)
    Regards.
    Davide

  • Font differences between Arch and Fedora (Hyperworks)

    Anyone in Arch land running Altair Hyperworks?  I know that it is supported only on Red Hat Enterprise or SUSE Enterprise, but I believe that it will run on Fedora as well, so I thought I'd give it a whirl on Arch.  It seems to have an issue with missing (or not finding) fonts.  As far as I can tell, I have all the same fonts on my Arch install as I did in Fedora.  I'm guessing that this is due to differences in the way the font folders are laid out between Arch and Fedora.  Anyone got any suggestions before I go randomly poking around in /usr/share/fonts?

    Sorry for bringing back old post.
    But have you or anyone had any suggestions to run Altair Hyperworks on Arch?

  • [Solved]Dual booting Arch and Fedora

    i was hoping to partition like this:
    /boot (same for both)
    /root (arch)
    /swap (same for both)
    /root (fedora)
    /home (same for both)
    this doing is according to: bbs.archlinux.org/viewtopic.php?id=97121
    as both are using grub2, i don't think having same /boot would coz any trouble
    and about /home, having uid and gid 500 for both arch and fedora would not cause any trouble,eh?
    how do i change uid and gid from 100 to 500 on first boot in arch?
    thnz in advnc 
    Last edited by eric17 (2012-05-25 18:25:04)

    eric17 wrote:guys!..ran into a new one
    now that, i have gpt table(want to try it for the first time), so bootloader doesn't install in MBR, so how to install it on /dev/sda1(no seperate for boot)?
    there is no method to change the location from sda to sda1(as installer discourages it)
    if it is so important to have it in MBR, then how do I force it while 'Install bootloader'?
    first i created bios_grub(1mb) on /sda1 through fedora installation(as without it, after installing arch, fedora was showing error that there is no boot storage device 1 or somethin like that)
    then, through Gparted:
    /root /sda2   fedora
    /root /sda3   arch
    /swap           both
    simple ext4 data partion (later i would create folders in it and bind them to each distro's home
    then installed arch without bootloader in end....after that fedora and it installed grub 1.99 on /sda
    now, both are booting fine
    thnx to every one

  • Lexmark x6675, for Ubuntu and Fedora but not Arch?

    Alright, I've got a this printer, a Lexmark x6675
    http://www1.lexmark.com/products/view/A … 79-product
    And so there are Linux drivers for it. Unfortunately they are executable files which I can't extract the files from directly:
    http://support.lexmark.com/index?locale … 33847975#2 (click downloads)
    They come in rpm, and deb excutables (you'll see what I mean -_-), and I tried installing it onto an Ubuntu laptop which after could operate the printer perfectly, and I copied the files I knew were installed (the ppm, and some lexmark drivers in /usr/lexinkjet) but it still cannot recognize the printer it is connected to. All it can detect is an "unknown" upon which I install the drivers, it doesn't respond and the job goes from processing to stopped. However, I am doing this in the Gnome Cups manager which might be at fault (I am going to check that now).
    I know the device is connected, and the SD card reader on the printer is actually recognized and registered as a removable device (just like it does in Windows).
    This is the only think stopping me from a perfect Arch Linux setup on my desktop. Anyone know how to get these drivers working, or knows an alternative? Any suggestions are welcome. There is nothing in the AUR or Pacman that seems to support this printer
    And oh yeah, this is my first time posting on these forums. Please be nice
    Last edited by ajbader (2010-03-22 05:06:52)

    Hi,
    For 64bit, try installing following packages, it might work:
    pacman -S cups lib32-gcc-libs lib32-heimdal lib32-libcups lib32-gnutls lib32-libstdc++5 lib32-sqlite3
    This driver is packaged using nixstaller - that the reason behind weird formats.
    Also,Try Extracting the driver embedded inside the shell script using
    $ mkdir driver
    $ sh lexmark-08z-series-driver-1.0-1.i386.rpm.sh --target driver
    there driver is in instarchive_all file which has filesize of 8mb.
    So, lets extract it
    > tar -xvvf instarchive_all --lzma
    -rwxr-xr-x build/build 160 2010-02-23 13:19 printdriver.te
    -rw-r--r-- build/build 22502840 2010-02-23 13:19 lexmark-08z-series-driver-1.0-1.i386.rpm
    -rw-r--r-- build/build 3755 2010-02-23 13:19 launcher.c
    -rwxr-xr-x build/build 8771 2010-02-23 13:19 launcher
    -rwxr-xr-x build/build 6334 2010-02-23 13:19 lsbrowser
    -rwxr-xr-x build/build 9670 2010-02-23 13:19 lsusbdevice
    Now you need to install rpmextract and extract files inside the rpm
    $ pacman -S rpmextract
    $ rpmextract.sh lexmark-08z-series-driver-1.0-1.i386.rpm
    #Here are driver files, finally!
    $ ls -R usr
    ls -R usr
    usr:
    local
    usr/local:
    lexmark
    usr/local/lexmark:
    08zero 08z-series-driver.link 08z-series-driver.unlink
    usr/local/lexmark/08zero:
    bin docs etc lib
    usr/local/lexmark/08zero/bin:
    lxk08zusb printdriver prnutility
    usr/local/lexmark/08zero/docs:
    license.txt readme.txt
    usr/local/lexmark/08zero/etc:
    99-lexmark-08z.rules lx56-66.ppd lxdmscan.conf lxdq.conf lxdrSCc0.bin lxduscan.conf lxdw.conf lxdxclr3.lut testpage.pdf
    Lexmark08_1_0_0.conf lx7600.ppd lxdmSCc0.bin lxdrclr1.lut lxdrSCg0.bin lxduSCc0.bin lxdwscan.conf lxdx.conf
    Lexmark-logo.xpm lxdmclr1.lut lxdmSCg0.bin lxdrclr2.lut lxduclr1.lut lxduSCg0.bin lxdwSCc0.bin lxdxscan.conf
    lx36-46.ppd lxdmclr2.lut lxdqclr1.lut lxdrclr3.lut lxduclr2.lut lxdwclr1.lut lxdwSCg0.bin lxdxSCc0.bin
    lx4900.ppd lxdmclr3.lut lxdqclr2.lut lxdr.conf lxduclr3.lut lxdwclr2.lut lxdxclr1.lut lxdxSCg0.bin
    lx5000.ppd lxdm.conf lxdqclr3.lut lxdrscan.conf lxdu.conf lxdwclr3.lut lxdxclr2.lut lxZ2400.ppd
    usr/local/lexmark/08zero/lib:
    libhdctransport.so liblxdqflib.so liblxdrhpec.so liblxduhpeh.so liblxdwhpep.so libnpa407.so libuiocli.so
    liblxdmflib.so liblxdqhpec.so liblxdrhpeh.so liblxduhpep.so liblxdxflib.so libprintengine.so libuiocmd.so
    liblxdmhpec.so liblxdqhpeh.so liblxdrhpep.so liblxdwflib.so liblxdxhpec.so libprinterdictionary.so libusblp.so
    liblxdmhpeh.so liblxdqhpep.so liblxduflib.so liblxdwhpec.so liblxdxhpeh.so libsane-Lexmark08_1_0_0.so.1.0.18
    liblxdmhpep.so liblxdrflib.so liblxduhpec.so liblxdwhpeh.so liblxdxhpep.so libScanCorrect.so.2.0
    Lastly, we need to generate a arch package and install it. After this your printer should work.
    Good Luck!
    @ajbader
    the Ubuntu and fedora systems on which are you have reported that this drivers are working are 32bit or 64bit?
    Last edited by cool (2010-03-22 23:51:43)

  • Oracle Linux Calendar 9.0.4.2/10 and Fedora Core 5

    Hi folks --
    I recently migrated from FC4 to FC5 (did a fresh install), and to my chagrin, the Oracle Calendar linux client install is now broken. This was running fine under both FC4 and RHEL 4. Here is the error I receive on any of the installs (silent/text/graphical):
    [root@pcalarco OracleCalendar_inst]# sh silent_install.sh
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    awk: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    hostname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    Launching installer...
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /tmp/install.dir.23852/Linux/resource/jre/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    I know Fedora Core isn't officially supported, but does anyone have a solution for this? Are these just path errors for the JRE as in previous problems with Fedora?
    Also, does Oracle Calendar 10 run any better in FC5?
    Many thanks in advance!
    - pascal
    >
    Pascal V. Calarco, MLIS
    Head, Library Systems & Economics Subject Liaison
    University Libraries of Notre Dame/
    Michiana Academic Library Consortium
    Notre Dame, IN USA 46556-5629
    e-mail: [email protected] tel.: 574-631-3409
    --------------------------------------------------

    I did some searching, and found that this is a common problem with many applications migrating from FC4 to FC5. This problem is caused due to incompatibility of the installer's Java Run-time Environment with certain system libraries.
    In order to solve this, run these commands on the {OracleCalendar_install/cal_linux_904 file:
    $ cp cal_linux_904 cal_linux_904.bak
    $ cat cal_linux_904.bak | sed "s/export LD_ASSUME_KERNEL/#xport LD_ASSUME_KERNEL/" > cal_linux_904
    $ rm cal_linux_904.bak
    Now the installers work fine.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • OC4J 10.1.3.2, JPA and Hibernate 3.2 Exception on Deployment

    I can't get my simple web application to deploy in my standalone oc4j container. The European organization that I working for wants to use the new technologies out there. Part of the testing is getting oc4j working with hibernate. My web application works just fine with Toplink, but not with Hibernate3. The same web application in Tomcat works for both. The error that oc4j generates is shown below and really doesn't say much that I can do. I followed this blog instructions.
    http://debupanda.blogspot.com/2007/01/using-hibernate-as-pluggable-ejb-3-jpa.html
    2007-04-23 11:48:57.477 NOTIFICATION Starting application : TestJPA
    2007-04-23 11:48:57.477 NOTIFICATION Initializing ClassLoader(s)
    2007-04-23 11:48:57.477 NOTIFICATION Initializing EJB container
    2007-04-23 11:48:57.477 NOTIFICATION Loading connector(s)
    2007-04-23 11:48:57.524 NOTIFICATION Starting up resource adapters
    2007-04-23 11:48:57.524 NOTIFICATION Initializing EJB sessions
    2007-04-23 11:48:57.524 NOTIFICATION Committing ClassLoader(s)
    2007-04-23 11:48:57.524 NOTIFICATION Initialize TestJPA begins...
    2007-04-23 11:48:57.539 NOTIFICATION Initialize TestJPA ends...
    2007-04-23 11:48:57.539 NOTIFICATION Started application : TestJPA
    2007-04-23 11:48:57.555 NOTIFICATION Binding web application(s) to site default-
    web-site begins...
    2007-04-23 11:48:57.571 NOTIFICATION Binding TestJPA web-module for application
    TestJPA to site default-web-site under context root jpa
    07/04/23 11:48:57 oracle.oc4j.admin.internal.DeployerException: [TestJPA:TestJPA
    ] - Exception creating EntityManagerFactory using PersistenceProvider class org.
    hibernate.ejb.HibernatePersistence for persistence unit TestPU.
    07/04/23 11:48:57 at com.evermind.server.ejb.exception.DeploymentException
    .exceptionCreatingEntityManagerFactory(DeploymentException.java:130)
    07/04/23 11:48:57 at com.evermind.server.ejb.persistence.PersistenceUnitMa
    nagerImpl.createContainerEntityManagerFactory(PersistenceUnitManagerImpl.java:19
    7)
    07/04/23 11:48:57 at com.evermind.server.ejb.persistence.PersistenceUnitMa
    nagerImpl.initializePersistenceUnit(PersistenceUnitManagerImpl.java:159)
    07/04/23 11:48:57 at com.evermind.server.ejb.persistence.PersistenceUnitMa
    nagerImpl.initialize(PersistenceUnitManagerImpl.java:86)
    07/04/23 11:48:57 at com.evermind.server.http.HttpApplication.<init>(HttpA
    pplication.java:733)
    07/04/23 11:48:57 at com.evermind.server.ApplicationStateRunning.getHttpAp
    plication(ApplicationStateRunning.java:414)
    07/04/23 11:48:57 at com.evermind.server.Application.getHttpApplication(Ap
    plication.java:571)
    07/04/23 11:48:57 at com.evermind.server.http.HttpSite$HttpApplicationRunT
    imeReference.createHttpApplicationFromReference(HttpSite.java:1990)
    07/04/23 11:48:57 at com.evermind.server.http.HttpSite$HttpApplicationRunT
    imeReference.<init>(HttpSite.java:1909)
    07/04/23 11:48:57 at com.evermind.server.http.HttpSite.addHttpApplication(
    HttpSite.java:1606)
    07/04/23 11:48:57 at oracle.oc4j.admin.internal.WebApplicationBinder.bindW
    ebApp(WebApplicationBinder.java:238)
    07/04/23 11:48:57 at oracle.oc4j.admin.internal.WebApplicationBinder.bindW
    ebApp(WebApplicationBinder.java:99)
    07/04/23 11:48:57 at oracle.oc4j.admin.internal.ApplicationDeployer.bindWe
    bApp(ApplicationDeployer.java:547)
    07/04/23 11:48:57 at oracle.oc4j.admin.internal.ApplicationDeployer.doDepl
    oy(ApplicationDeployer.java:202)
    07/04/23 11:48:57 at oracle.oc4j.admin.internal.DeployerBase.execute(Deplo
    yerBase.java:93)
    07/04/23 11:48:57 at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeploy
    erRunnable.doRun(OC4JDeployerRunnable.java:52)
    07/04/23 11:48:57 at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRu
    nnable.run(DeployerRunnable.java:81)
    07/04/23 11:48:57 at com.evermind.util.ReleasableResourcePooledExecutor$My
    Worker.run(ReleasableResourcePooledExecutor.java:298)
    07/04/23 11:48:57 at java.lang.Thread.run(Unknown Source)
    2007-04-23 11:48:57.726 NOTIFICATION Application Deployer for TestJPA FAILED.
    2007-04-23 11:48:57.726 NOTIFICATION Application UnDeployer for TestJPA STARTS.
    2007-04-23 11:48:57.742 NOTIFICATION Removing all web binding(s) for application
    TestJPA from all web site(s)
    07/04/23 11:48:57 SEVERE: ProgressObjectImpl.reportError [TestJPA:TestJPA] - Exc
    eption creating EntityManagerFactory using PersistenceProvider class org.hiberna
    te.ejb.HibernatePersistence for persistence unit TestPU.oracle.oc4j.admin.jmx.sh
    ared.exceptions.InternalException: [TestJPA:TestJPA] - Exception creating Entity
    ManagerFactory using PersistenceProvider class org.hibernate.ejb.HibernatePersis
    tence for persistence unit TestPU.
    at oracle.oc4j.admin.jmx.shared.deploy.NotificationUserData.<init>(Notif
    icationUserData.java:107)
    at oracle.oc4j.admin.internal.Notifier.reportError(Notifier.java:429)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:123
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun
    (OC4JDeployerRunnable.java:52)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(Deplo
    yerRunnable.java:81)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:298)
    at java.lang.Thread.run(Unknown Source)
    Caused by: oracle.oc4j.admin.internal.DeployerException: [TestJPA:TestJPA] - Exc
    eption creating EntityManagerFactory using PersistenceProvider class org.hiberna
    te.ejb.HibernatePersistence for persistence unit TestPU.
    at com.evermind.server.ejb.exception.DeploymentException.exceptionCreati
    ngEntityManagerFactory(DeploymentException.java:130)
    at com.evermind.server.ejb.persistence.PersistenceUnitManagerImpl.create
    ContainerEntityManagerFactory(PersistenceUnitManagerImpl.java:197)
    at com.evermind.server.ejb.persistence.PersistenceUnitManagerImpl.initia
    lizePersistenceUnit(PersistenceUnitManagerImpl.java:159)
    at com.evermind.server.ejb.persistence.PersistenceUnitManagerImpl.initia
    lize(PersistenceUnitManagerImpl.java:86)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:
    733)
    at com.evermind.server.ApplicationStateRunning.getHttpApplication(Applic
    ationStateRunning.java:414)
    at com.evermind.server.Application.getHttpApplication(Application.java:5
    71)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.cre
    ateHttpApplicationFromReference(HttpSite.java:1990)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.<in
    it>(HttpSite.java:1909)
    at com.evermind.server.http.HttpSite.addHttpApplication(HttpSite.java:16
    06)
    at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplica
    tionBinder.java:238)
    at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplica
    tionBinder.java:99)
    at oracle.oc4j.admin.internal.ApplicationDeployer.bindWebApp(Application
    Deployer.java:547)
    at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDe
    ployer.java:202)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    ... 4 more
    2007-04-23 11:48:58.225 NOTIFICATION Application UnDeployer for TestJPA COMPLETE
    S.
    07/04/23 11:48:58 WARNING: DeployerRunnable.run [TestJPA:TestJPA] - Exception cr
    eating EntityManagerFactory using PersistenceProvider class org.hibernate.ejb.Hi
    bernatePersistence for persistence unit TestPU.oracle.oc4j.admin.internal.Deploy
    erException: [TestJPA:TestJPA] - Exception creating EntityManagerFactory using P
    ersistenceProvider class org.hibernate.ejb.HibernatePersistence for persistence
    unit TestPU.
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:126
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun
    (OC4JDeployerRunnable.java:52)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(Deplo
    yerRunnable.java:81)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:298)
    at java.lang.Thread.run(Unknown Source)

    I am not using JDeveloper, the project was created in Netbeans 5.5. I only use the WAR created and Deploy it using the web administration of Oracle 10.1.3.2

  • Oc4j 9.0.2.0.0 and  8.1.7 client

    I need to use the latest production version of oc4j -> 9.0.2.0.0. My client needs use to be able to use the oci drivers with the 8.1.7 client install. Is it possible to use 9.0.2.0.0 with the 8.1.7 client install?
    I can use the thin driver no problem, but the application requires the speed and extras that oci proviceds, especially with blob handling.
    I can use the oci drivers on a machine with the 9i client installed, no problem.
    But when I use it on a machine with the 8.1.7 client installed, I get (of course) and unsatisfied link error - it can't find ocijdbc9.
    error:
    java.lang.UnsatisfiedLinkError: no ocijdbc9 in java.library.path
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1312)
         at java.lang.Runtime.loadLibrary0(Runtime.java:749)
         at java.lang.System.loadLibrary(System.java:820)
         at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:294)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:287)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:442)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:321)
         at java.sql.DriverManager.getConnection(DriverManager.java:517)
         at java.sql.DriverManager.getConnection(DriverManager.java:177)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].sql.DriverManagerDataSource.getConnection(DriverManagerDataSource.java:219)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].sql.DriverManagerConnectionPoolDataSource.getPooledConnection(DriverManagerConnectionPoolDataSource.java:24)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].sql.OrionPooledDataSource.getPooledConnection(OrionPooledDataSource.java:290)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].sql.PooledConnectionUsage.getPooledConnection(PooledConnectionUsage.java:21)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].sql.OrionPooledDataSource.getConnection(OrionPooledDataSource.java:162)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].sql.DriverManagerXADataSource.getAutoCommitConnection(DriverManagerXADataSource.java:248)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].sql.LogicalDriverManagerXAConnection.intercept(LogicalDriverManagerXAConnection.java:113)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].sql.FilterConnection.prepareStatement(FilterConnection.java:240)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].sql.FilterConnection.prepareStatement(FilterConnection.java:241)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].sql.OrclCMTConnection.prepareStatement(OrclCMTConnection.java:774)
         at gc.hc.pphb.webtos.util.WebtosUserManager.userExists(WebtosUserManager.java:152)
         at gc.hc.pphb.webtos.util.SimpleUserManager.getUser(SimpleUserManager.java:34)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.EvermindHttpServletRequest.getUserPrincipalInternal(EvermindHttpServletRequest.java:3117)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpApplication.authenticate(HttpApplication.java:5470)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2299)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:585)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:243)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    If I down load the 9i jdbc drivers and install them, I get a jvm message stating that a dependant library - oracore9.dll - is missing. I've tried changing my Oracle_home variable, adding the /lib directory to the class and replacing the \jdbc\classes12dms.jar with a remnamed version of classes12.zip (so I have an older version of OCIDBAccess.java that doesn't call the 9i jdbc libraries) but to no avail. The must be a way to get 9.0.2.0.0 to look for the correct version of the oci driver....
    Any help would be greatly appreciated...
    Mike

    Mike,
    The Oracle9iAS R2 Client CD on Windows is available. Please download the client software from http://otn.oracle.com/software/products/ias/htdocs/solsoft.html#client and this should have new version of OCI drivers. Please install this on a separate Oracle home and include this in your $ORACLE_HOME/bin in your path and then start OC4J and you should be in good shape.
    regards
    Debu

  • Unable to install windows 7 and fedora in a dual boot even with windows 8 and fedora also

    Unable to install fedora in dual boot please help me to install, is my system supports windows 7 or not with  fedora or windows 8.1 with fedora please help me i need very urgent installation of fedora

    Hi @siddu007 , 
    Thank you for visiting the HP Support Forums and Welcome. I have looked into your issue about your HP 15-r262tu Notebook and issues with Dual booting Fedora. Here is the support site for Linux for troubleshooting.
    Here is a link to Microsoft on your Downgrade Rights. Some features will not be available in a different OS.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Dual boot Arch and Fedora

    Hi, I just bought a new laptop and I want to install Arch + Fedora + Windows (the lap comes with BIOS)
    The laptop comes with 120 GB SSD + 750 GB HDD.
    How I plan to do the partitions are:
    In the SSD:
    - Some gigs for Windows.
    - /boot
    - / for Arch
    - / for Fedora
    - SWAP (shared for both)
    In the HDD:
    - Some gigs in ntfs for windows
    - A partition in ext4 for all my data.
    The question I have is: how can I manage grub to detect both linux distros? Should I make two separate /boot partitions (one for each distro)? Or can I install grub just in one /boot and let both distros to modify it? or what is the best recommendation on doing this?
    thanks a lot!

    Thanks all for replying (:
    shulamy wrote:
    i do it from fedora because it's kernel name changes
    evry update and arch's doesn't.
    ezik
    So what you did was first installing arch with /boot in a separate partition, and then installed fedora replacing the arch /boot with the new fedora /boot? or you just told fedora to use the arch /boot as its /boot ?
    thanks

  • OC4J not running after creating workspace and projects.

    Created one workspace and added six projects. Added PostGes jar to library manager. Before doing this, the OC4J would run a test application successfully. After creating the workspace and project, I created another simple workspace with two JSP, on linked to the other. When trying to run this project get the following:
    Apr 17, 2008 10:51:53 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering transactions (commit 0) (rollback 0) (prepared 0).
    Apr 17, 2008 10:51:53 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering local transactions Queue[jms/Oc4jJmsExceptionQueue].
    Apr 17, 2008 10:51:55 AM oracle.j2ee.util.LoggingUtils logAndReturnMessage
    WARNING: Exception creating connection pool. Exception: oracle.oc4j.sql.config.DataSourceConfigException: Unable to create : org.postgresql.Driver
    08/04/17 10:51:55 SEVERE: ApplicationStateRunning.initConnector Error occurred initializing connectors. Exception is: Exception creating connection pool. Exception: oracle.oc4j.sql.config.DataSourceConfigException: Unable to create : org.postgresql.Driver
    08/04/17 10:51:55 SEVERE: ApplicationStateRunning.initConnector Stack trace: oracle.oc4j.sql.DataSourceException: Exception creating connection pool. Exception: oracle.oc4j.sql.config.DataSourceConfigException: Unable to create : org.postgresql.Driver
         at com.evermind.server.ApplicationStateRunning.initDataSourceConnectionPool(ApplicationStateRunning.java:2072)
         at com.evermind.server.ApplicationStateRunning.initDataSourceConnector(ApplicationStateRunning.java:2017)
         at com.evermind.server.ApplicationStateRunning.initConnector(ApplicationStateRunning.java:1272)
         at com.evermind.server.ApplicationStateRunning.initConnectors(ApplicationStateRunning.java:345)
         at com.evermind.server.ApplicationStateRunning.initializeApplication(ApplicationStateRunning.java:206)
         at com.evermind.server.Application.setConfig(Application.java:438)
         at com.evermind.server.Application.setConfig(Application.java:339)
         at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:1895)
         at com.evermind.server.ApplicationServer.initializeDeployedApplications(ApplicationServer.java:1651)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1034)
         at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:131)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: javax.resource.ResourceException: oracle.oc4j.sql.config.DataSourceConfigException: Unable to create : org.postgresql.Driver
         at oracle.oc4j.sql.spi.ResourceAdapterImpl.createDataSourceConnectionPool(ResourceAdapterImpl.java:106)
         at oracle.oc4j.sql.DataSourceUtils.getDataSourceConnectionPool(DataSourceUtils.java:330)
         at com.evermind.server.ApplicationStateRunning.initDataSourceConnectionPool(ApplicationStateRunning.java:2053)
         ... 11 more
    Caused by: oracle.oc4j.sql.config.DataSourceConfigException: Unable to create : org.postgresql.Driver
         at oracle.oc4j.sql.config.DataSourceConfigUtils.createConnectionFactory(DataSourceConfigUtils.java:283)
         at oracle.oc4j.sql.DataSourceConnectionPoolImpl.<init>(DataSourceConnectionPoolImpl.java:108)
         at oracle.oc4j.sql.spi.ResourceAdapterImpl.createDataSourceConnectionPool(ResourceAdapterImpl.java:99)
         ... 13 more
    Caused by: oracle.classloader.util.AnnotatedClassNotFoundException:
         Missing class: org.postgresql.Driver
         Dependent class: oracle.oc4j.sql.config.DataSourceConfigUtils
         Loader: oc4j:10.1.3
         Code-Source: /C:/Jdeveloper10/j2ee/home/lib/oc4j-internal.jar
         Configuration: <code-source> in META-INF/boot.xml in C:\Jdeveloper10\j2ee\home\oc4j.jar
    Remove the posgres jar from the library manager and still not able to run simple two page applications.
    All the projects in the other workspace compile fine. The prolblem is that now I am not able to use the internal OC4J. I remove the workspace with the five projects, and the JARs and the two page app will not run.
    The OC4J is running when launched from the IDE, ti just can find the pages.
    New install of JDEV and the two page app will run fine. Add two user two user libraries and the app will not run.
    Thank you,
    Ben Carter

    Do you have a database connection to postgress defined in JDeveloper?
    JDev might be picking this up and trying to add a datasource for it to the embedded OC4J - so try removing it, or alternatively add the postgress JDBC driver jar files to the libraries node under tools->embedded OC4J preferences.

Maybe you are looking for

  • SXMB_MONI : Error in Persistence Layer : XML Message Not Found

    Hi Team, There are some messages in our Production system and is in Scheduled state in SXMB_MONI and when we try to re-process those messages, we are getting message : Error in Persistence Layer and when we double click on message, we are getting the

  • Ethernet and WiFi not working in browsers

    We have about 13 iMacs and 3 MacBooks connected to our LAN network.  Earlier this afternoon, one of our iMacs (20 inch early 2008) would not connect to Firefox or Safari internet browsers.  However, I was able to log into our practice management syst

  • Home button not working on my iphone5

    Home button suddenly stopped working on my IPhone 5. I have tried opening weather switching off with the top button and pressing the home button. I have also done the resetting any more ideas please.

  • Is there any encryption function in Single Language Windows 8.1?

    Looking to install a data encryption utility on my Single Language Windows 8.1 Truecrypt only seems to work on Windows 7, and there is no Bitlocker or EFS on my version of 8.1. Any recommendations? If you find my response helpful, please click on the

  • Line weight consistency

    Hello, I have created some line drawings (floor plans) in illustrator (CS5), that need to be dropped into several inDesign (CS5) Documents. They are fairly simple drawings with annotations for measurements etc.. In the indesign doc there will be 1 or