BUG: WTK2.2 io broken on Linux

Hello,
I'm running an app that works perfectly (JavaVerified) in the Windows 2.2 WTK emulator, but it will not run under Linux because of this:
java.lang.ArrayIndexOutOfBoundsException:
at com.sun.kvem.cldc.i18n.j2me.GenericReader.read(+139)
at java.io.InputStreamReader.read(+56)
at j.a(+72)
at j.c(+5)
at j.b(+262)
at j.d(+23)
at s.a(+320)
at u.b(+655)
at u.run(+52)
Something's not right in Linux land.

Here's the test case I put together:
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.midlet.MIDlet;
import java.io.ByteArrayInputStream;
import java.io.InputStreamReader;
public class HelloWorld extends MIDlet implements CommandListener
    Command quitCmd;
    Form    frm;
    Display disp;
    private static void testInputStream() {
     String str = "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789"
         + "0123456789";
     System.out.println("str: " + str);
     System.out.println("strlength: " + str.length());
     byte buf[] = str.getBytes();
     System.out.println("byte size: " + buf.length);
     ByteArrayInputStream bin = new ByteArrayInputStream(buf);
     InputStreamReader isr = new InputStreamReader(bin);
     char cBuf[] = new char[128];
     System.out.println("encoding: " +
         System.getProperty("microedition.encoding"));
     System.out.println("reading from buffer and printing.");
     try {
         int charsRead;
         while ((charsRead = isr.read(cBuf, 0, cBuf.length)) >= 0) {
          for (int i = 0; i < charsRead; i++) {
              System.out.print(cBuf);
     } catch (Exception ex) {
     ex.printStackTrace();
     System.out.println("\ndone reading");
public void startApp() {
     disp = Display.getDisplay(this);
     frm = new Form("HelloWorld");
     frm.append("Hello World");
     quitCmd = new Command("quit", Command.EXIT, 1);
     frm.addCommand(quitCmd);
     frm.setCommandListener(this);
     disp.setCurrent(frm);
     testInputStream();
public void pauseApp() {
public void destroyApp(boolean unconditional) {
     if (unconditional)
     notifyDestroyed();
public void commandAction(Command c, Displayable d)
     if (c == quitCmd)
     destroyApp(true);
I've run this on both Fedora Core3 & Fedora Core4 Linux distrubutions,
when I do - I get the following failure:
     [exec] Warning: Cannot convert string "-b&h-lucida-medium-r-normal-sans-*-140-*-*-p-*-iso8859-1" to type FontStruct
     [exec] Running with storage root DefaultColorPhone
     [exec] str: 012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
     [exec] strlength: 210
     [exec] byte size: 210
     [exec] encoding: UTF8
     [exec] reading from buffer and printing.
     [exec] java.lang.ArrayIndexOutOfBoundsException:
     [exec]     at com.sun.kvem.cldc.i18n.j2me.GenericReader.read(+139)
     [exec]     at java.io.InputStreamReader.read(+56)
     [exec]     at HelloWorld.testInputStream(+159)
     [exec]     at HelloWorld.startApp(+80)
     [exec]     at javax.microedition.midlet.MIDletProxy.startApp(+7)
     [exec]     at com.sun.midp.midlet.Scheduler.schedule(+270)
     [exec]     at com.sun.midp.main.Main.runLocalClass(+28)
     [exec]     at com.sun.midp.main.Main.main(+116)
     [exec] done reading
     [exec] Execution completed.
     [exec] 741720 bytecodes executed
     [exec] 23 thread switches
     [exec] 742 classes in the system (including system classes)
     [exec] 3914 dynamic objects allocated (121300 bytes)
     [exec] 3 garbage collections (89956 bytes collected)This test case is what I put together after finding a failure of trying to run the kxml2 (www.kxml.org) XML parser under the emulator.
Any insights on why this is happening or if there is a work-around that can be applied would be appreciated.
Cheers,
Mike

Similar Messages

  • New OUI bug hinders 9.2 install on Linux

    I'm hunting a bug in "Oracle Universal Installer" on a RH Linux system with 9i Application Server Rel. 2 + world of patches installed...
    In this config, OUI will crash with a HotSpot error dump - consistently on the same place. I have narrowed it down to a library linking fault related to stat libc call (and that stat is inline).
    The bad library is:
    oraInventory/Actions21/fileActions/2.2.0.14.0/fileActionLib.jar
    stage/Actions/fileActions/2.2.0.14.0/1/fileActionLib.jar
    (one source of this "action library" is AS 9.0.2.1.0 Non-Core patch set, OUI 2.2.0.16.0)
    To find it, use:
    find / -name fileActionLib.jar 2>/dev/null | grep 2.2.0.14
    Perhaps there's also some problems with using different versions of OUI (not only latest version, or older -> newer). Base releases and patch sets comes with different oui packages - there's five now on this system, oh gee :)
    I'm looking for someone interested in a collaboration here. Specifically, if you have the bad OUI "Actions" library installed and want to try to install 9i DB 9.2. Perhaps just to find out how common this lib is and to, in some way, spread the word around to help others.
    I have a TAR going but it will probably take a while to escalate...
    Regards,
    Fredrik

    Perhaps I made a mistake by pointing finger at fileActionLib.jar, 2.2.0.14.0. One thing that made it a suspect was an object file of that jar: libactionFile170.so - its symbol table does not look quite like that of previous versions!
    But that version of libactionFile170.so does not even get used (oops) in installing DB 9.2 (it could be broken, but it does not matter for the moment).
    After digging around some more, it looks like OUI picks the wrong jar file (with classes or libraries) to work with from Inventory or distribution.
    This could depend e.g. on on whether previous components gets successfully installed or not (like jre 1.1.8).
    Bug or not... OUI has certainly bugged me a lot this weekend! :) Gaah!

  • MHDDK broken on Linux kernel 4.0

    One of the tools that ships with MHDDK is broken on new Linux kernels.
    The problem is easy to reproduce:
    cd nimhddk_linuxkernel/LinuxKernel/nirlpk
    make
    sudo make install
    gives the following error:
    nirlp: 4.0.0-040000-generic kernel not supported
    Directly executing nirlp gives the same error. Older kernels (e.g. 3.13) don't have this issue.
    Without this tool, none of the examples can even access the board.
    This issue will presumably affect all new kernels. Since this tool is binary-only, a fix will have to come from NI.
    NI, please provide a fix or workaround for this issue.
    Solved!
    Go to Solution.

    drobson wrote:
     Since this tool is binary-only, a fix will have to come from NI.
    The MHDDK is 100% source code, scripts, and Makefiles -- all editable text files.
    The nirlp file is a bash script, and it includes a check for kernel versions that were tested with the DDK examples. The last time the kernel module was updated was during the Linux 3.6 window. You can change the script to allow for newer kernels, and since you were able to compile the module, it looks hopeful that the module will load and support your devices.
    Joe Friedchicken
    NI VirtualBench Application Software
    Get with your fellow hardware users :: [ NI's VirtualBench User Group ]
    Get with your fellow OS users :: [ NI's Linux User Group ] [ NI's OS X User Group ]
    Get with your fellow developers :: [ NI's DAQmx Base User Group ] [ NI's DDK User Group ]
    Senior Software Engineer :: Multifunction Instruments Applications Group
    Software Engineer :: Measurements RLP Group (until Mar 2014)
    Applications Engineer :: High Speed Product Group (until Sep 2008)

  • -nodisplay bug with Sun Studio 10 for Linux installer

    I'm currently trying to install a trial Sun Studio 10 for Linux on a Fedora Core 3 box. I want the installer to run via the command line, so I use "./installer -nodisplay", but I get the following error message:
    java.lang.UnsatisfiedLinkError: /home/pacey/SS10/.install/jvm_1.4.2/j2re1.4.2_06/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    libXp is part of the X window system, but I've specified -nodisplay. A non-graphics option shouldn't be trying to load graphics libraries - looks like a bug. Anyway, as I don't have version 6 of that lib on my system, I'm stalled on this. Any suggestions?

    I'm currently trying to install a trial Sun Studio 10 for Linux on a Fedora Core 3 box. I want the installer to run via the command line, so I use "./installer -nodisplay", but I get the following error message:
    java.lang.UnsatisfiedLinkError: /home/pacey/SS10/.install/jvm_1.4.2/j2re1.4.2_06/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    libXp is part of the X window system, but I've specified -nodisplay. A non-graphics option shouldn't be trying to load graphics libraries - looks like a bug. Anyway, as I don't have version 6 of that lib on my system, I'm stalled on this. Any suggestions?

  • ICal bug  -- leap year has broken reoccuring events

    Since last week , when there were 29 days in February instead of 28,  events in iCal which are re-occuring  (a meeting which occurs every month on the second Monday for example) is simply wrong.
    It is clear that this is an artifact of "Leap Year." The error compounds.
    In March in was off by one day -- scheduled on Tuesday instead of Monday. In April the error compounds... now scheduled on Friday in April.
    Events which were scheduled by data "appear" to be correct, but now I don't know that I can even trust them.
    This problem propigates through iCloud and infects my iPhone and iPads as well.
    iMac 10.7.3
    iPhone 5.1
    iPad 5.1
    Mac mini 10.6.8
    It turns out this Bug dates back to 2008!!!!!
    https://discussions.apple.com/message/6309125#6309125

    No. not really.
    I spent some time on the phone with Apple support and basically discovered that if I looked at the reoccurring event back in February (the previous month), it showed up correctly as an event being repeated as, in my case, "Custom, Every Month on the first Monday." However, then comparing that entry to the incorrect March entry, I noted the March entry was showing up as repeat "Every Month." (Which translated into every 30 or 31 days, looking at subsequent events.)
    Simply changing the bad March event back to the Custom "Every Month on the First Monday," and then applying it to the forward "worked around" the issue.
    We never did come up with any idea what caused the change. (i.e. the support person could find no references to any kind of similar problem.)
    I was told to go to "www.apple.com/feedback" and to select "iCal" from the list of "OS C Apps" near the bottom of the page, and report the problem.

  • PDF Portfolio bug with acroread 9.4.2 Linux update

    Since updating adobe reader on Linux to 9.4.2, when I open a PDF portfolio created with Acrobat for Windows 9.4.2, the initial page is completely blank. It should show a thumbnail of the first page of each file in the portfolio, and this initial page still displays correctly when the portfolio is opened in the 9.4.2 Reader for Windows. I have two separate Linux machines, one running Ubuntu x84 and the other running Ubuntu amd64, and they both have the problem.
    Versions prior to 9.4.2 did not have this problem.
    A small PDF portfolio that shows the problem is at http://www.users.on.net/~njpayne/bikestuff/SmokersGap.pdf. Initial page displays fine on Windows, doesn't on Linux.

    That's a complete PITA, then. Our local government, for example, commonly
    puts up PDF portfolios on their web site which consist of scans of
    multiple written responses to planning submissions bundled together into a
    PDF portfolio. Without the thumbnails of each contained PDF in the
    portfolio, it is impossible read anything other than the first PDF in the
    portfolio. Have a look for example, at
    http://www.actpla.act.gov.au/__data/assets/pdf_file/0014/22343/DV307_Submissions_1-20_1.37 MB.pdf.
    All submissions in this portfolio can be accessed without any problem
    using Reader 9.4.3 for Windows, but with Reader 9.4.3 for Linux, only the
    first submission in the document can be accessed.
    There is no AR9.4.3 for Linux: do you mean AR9.4.2?
    Anyhow my recommendation under Linux would be to stick with AR9.3.4.
    I've just checked at my end and it has no problem with your
    sample portfolio.
    James

  • Photoshop bug report site is broken (using wrong site)

    I have a pretty serious Photoshop bug to report -- something that was supposedly fixed in 14.2.1.
    I took the time to go to  https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform  as usual when reporting bugs.
    I wrote out the nature of the bug, and all the steps to reproduce it.
    But the CONTINUE button is non-functional. At the moment it is IMPOSSIBLE to report bugs to Adobe.

    Hi,
    We ask that bugs for Photoshop get reported here now:
    http://feedback.photoshop.com/photoshop_family
    I'll take a look at your other thread about pasted AI files.
    regards,
    steve

  • Another bug: FTP Upload causing broken link?

    hi, i have a file that has multiple parent(created using create link option).
    When i update the file via WCP in drive O:,
    changes to this file was reflected to other parent, which was correct, ofcourse.
    But when i try to update the file via FTP,
    only file in the corresponding/current folder was updated,
    and link to other folders was gone,
    and other parent folders still refering to the old file.
    is this a bug? has anybody else notice this problem?
    I also noticed inconsistent behaviour between deleting files via WCP and via FTP.
    when i deleted files via FTP, it seems that the file was completely freed, removing the file from current folder and from all other related/linked folder.
    but when i use WCP to delete file, it only delete file from current folder, and the same file in other related folder is still preserved.
    another bug?
    btw i'm using IFS 9.0.1,Windows 2000

    1. Updating documents with multiple parents.
         The behaivor you describe is expected. Here is why.
         WCP updates the content of the document using RACI while
         FTP put creates a new document, replacing the existing document, and thus
         the link to other parents do not exist for the new document, and the other
         parents still point to the old document.
         One way around this problem is to have the folder containing the
         document have the multiparents, instead of the document itself. This
         would maintain the links if the docment content is changed or if the document
         is replaced.
    2. Deleting documents with multiple parents
         This does apear to be a bug. The correct behaiver is to only delete the
         file from current folder, and the same file in other related folders
         is still preserved.
         This is fixed in the next iFS release 9.0.3 for FTP.
    hope this helps!
    Bob

  • Broken link" Linux whitepaper

    On http://otn.oracle.com/tech/linux/tech_wp.html, the link for "Oracle9i Database Release 2 on Linux: Performance, Reliability and Manageability Enhancements on Red Hat Linux Advanced Server 2.1" is invalid. If you know where this whitepaper is, please post its location. Thanks.

    Hi,
    This link appears to work for me.
    Are you having difficulty accessing the Technology Center for Linux home page? http://otn.oracle.com/tech/linux/index.html
    From here there are links to whitepapers.
    Regards,
    Les

  • SharedBall example broken in Linux?

    Hello all,
    I am a bit frustrated with Flash Media Server and hoping for
    some help.
    I installed FPS3 in Linux and got the tutorial_sharedball
    example to work (from
    http://www.adobe.com/devnet/flashmediaserver/sample_apps.html).
    I can move the ball in one instance and see it move in another.
    However, I could not get the SharedBall example that comes with the
    installation to work. When it connects to the flash media server,
    the red ball disappears and doesn't come back.
    I have tried rewriting the example, but nothing that I write
    with ActionScript3 successfully changes the properties of a shared
    object. In the admin panel, I can see that tutorial_sharedball
    changes properties, but the code that I write never does.
    I am using Eclipse as an ActionScript3 editor, so I am not
    able to write or even look at .FLA files. So, the
    tutorial_sharedball example is not very useful to me because it is
    ActionScript2 and I can't view the insides of its .FLA file.
    I just installed the development server in Windows XP and got
    both the tutorial_sharedball and the SharedBall example to work.
    (By the way, I can't get the debug connection to work in Windows.
    In Linux I could just double click on the shared object and it
    would try to connect, but it's not the same in Windows.)
    Does anybody have any intuition for what could be going wrong
    in Linux? I could post my code or say more about my setup if anyone
    is interested.

    Hello all,
    I am a bit frustrated with Flash Media Server and hoping for
    some help.
    I installed FPS3 in Linux and got the tutorial_sharedball
    example to work (from
    http://www.adobe.com/devnet/flashmediaserver/sample_apps.html).
    I can move the ball in one instance and see it move in another.
    However, I could not get the SharedBall example that comes with the
    installation to work. When it connects to the flash media server,
    the red ball disappears and doesn't come back.
    I have tried rewriting the example, but nothing that I write
    with ActionScript3 successfully changes the properties of a shared
    object. In the admin panel, I can see that tutorial_sharedball
    changes properties, but the code that I write never does.
    I am using Eclipse as an ActionScript3 editor, so I am not
    able to write or even look at .FLA files. So, the
    tutorial_sharedball example is not very useful to me because it is
    ActionScript2 and I can't view the insides of its .FLA file.
    I just installed the development server in Windows XP and got
    both the tutorial_sharedball and the SharedBall example to work.
    (By the way, I can't get the debug connection to work in Windows.
    In Linux I could just double click on the shared object and it
    would try to connect, but it's not the same in Windows.)
    Does anybody have any intuition for what could be going wrong
    in Linux? I could post my code or say more about my setup if anyone
    is interested.

  • DVBSKY S950C Ci broken since linux 4.0

    Since the update to linux 4.0 the ci module of my tv card no longer works (not found by vdr).
    dmesg | grep dvb
    [ +0,015031] cx23885_dvb_register() allocating 1 frontend(s)
    [ +0,000002] cx23885[0]: cx23885 based dvb card
    [ +0,164648] dvb_ca adapter 0: Invalid PC card inserted :(
    I'm the only one having the issue?

    do I missed something I'll need to add before someone could help me?

  • Bug: OC4J HttpServlet.getDateHeader() broken.

    I've no idea where I should be posting OC4J bugs. If this is not
    the appropriate place I'd appreciate a pointer.
    Bug:
    The time returned from HttpServlet.getDateHeader() in OC4J is
    incorrect. It should only have second resolution; it has
    millisecond resolution. The sub-second part looks random (it
    changes with every post even when the date header doesn't).
    This makes comparing last-modified times problematic.
    Work Around:
    Round times down to the nearest second.
    --Will

    Yes, HttpServletRequest.getDateHeader() returns a value with
    millisecond precision, but all of the RFC 2616 date formats
    have a resolution of one second.
    When I do something like:
    long ims = request.getDateHeader("If-Modified-Since");
    I expect to get back the number of milliseconds since the
    epoch with a resolution of one second.
    --Will

  • WTK 2.2 Linux Version, SMS send between phones broken?

    Sending SMS messages from one phone to another seems to be broken in the Linux version of WTK2.2. I'm testing using the WMADemo MIDlet included with WTK2.2. Using the Linux version of the WTK2.2 emulator I get a "java.io.IOException: Connection closed" error from the phone sending the message (see below for full error). When I run the exact same MIDlet in the Windows version of the WTK2.2 emulator I don't get the error and the message is sent correctly and received by the other phone. Is there an existing bug report on this problem? If not how do I open one? I'm using Fedora Core 2 (Linux laalaa 2.6.5-1.358 #1 Sat May 8 09:04:50 EDT 2004 i686 i686 i386 GNU/Linux) and j2sdk1.4.2_08. I'm running the emulators from a NetBean 4.1 (same behavior in NB4.0) project.
    Thanks for your assistance.
    -- Steve
    Send caught:
    java.io.IOException: Connection closed
    at com.sun.midp.io.j2me.datagram.Protocol.ensureOpen(+16)
    at com.sun.midp.io.j2me.datagram.Protocol.newDatagram(+4)
    at com.sun.midp.io.j2me.sms.DatagramImpl.send(+257)
    at com.sun.midp.io.j2me.sms.Protocol.send(+429)
    at example.sms.SMSSender.run(+79)

    Hi,
    I'm having this particular problem on WTK windows version, but it appears just when running it through OTA provisionning.
    Have you found the solution to your problem?
    Isa

  • Optimizer bug in C compiler for Linux

    Save the following as bug.c:
    Bug report against Sun C for Linux:
    $ suncc -V
    cc: Sun C 5.9 Linux_i386 Build27_2 2006/08/02
    usage: cc [ options] files.  Use 'cc -flags' for details
    $ cat /etc/SuSE-release
    SuSE Linux 9.3 (x86-64)
    VERSION = 9.3
    $ uname -r
    2.6.11.4-21.8-smp
    Compiled w/ -xO2 or lower, this program runs to completion:
    $ suncc -xO2 bug.c -o bug -lpthread && ./bug
    Hello from thread 0
    Hello from thread 1
    Hello from thread 2
    Hello from thread 3
    DONE.
    However, when compiled w/ -xO3 (or higher) this program hangs:
    $ suncc -xO3 bug.c -o bug -lpthread && ./bug
    Hello from thread 0
    Hello from thread 1
    Hello from thread 2
    Hello from thread 3
    ...hung here...
    ^C
    Changing "#if 0" to "#if 1" changes a "while (cond) {body;}" to a
    "do {body;} while(cond)", and is sufficient to work around the
    problem in this case.
    #include <stdio.h>
    #include <stdlib.h>
    #include <inttypes.h>
    #include <pthread.h>
    static unsigned int numthreads = 4;
        static void test_pthread_barrier(void) {
          static pthread_cond_t barrier_cond[2] =
            { PTHREAD_COND_INITIALIZER, PTHREAD_COND_INITIALIZER };
          static pthread_mutex_t barrier_mutex[2] =
            { PTHREAD_MUTEX_INITIALIZER, PTHREAD_MUTEX_INITIALIZER };
          static volatile unsigned int barrier_count = 0;
          static volatile int phase = 0;
          const int myphase = phase;
          pthread_mutex_lock(&barrier_mutex[phase]);
          barrier_count++;
          if (barrier_count < numthreads) {
    #if 0
            do {
              pthread_cond_wait(&barrier_cond[myphase], &barrier_mutex[myphase]);
            } while (myphase == phase);
    #else
            while (myphase == phase) {
              pthread_cond_wait(&barrier_cond[myphase], &barrier_mutex[myphase]);
    #endif
          } else {
            barrier_count = 0;
            phase = !phase;
            pthread_cond_broadcast(&barrier_cond[!phase]);
          pthread_mutex_unlock(&barrier_mutex[!phase]);
    static void * thread_main(void * arg) {
      printf("Hello from thread %d\n", (int)(uintptr_t)arg);
      test_pthread_barrier();
      return NULL;
    int main(void) {
        int i;
        pthread_t *threadid = (pthread_t *)malloc(sizeof(pthread_t)*numthreads);
        for(i=0;i<numthreads;i++) {
          void *threadarg;
          pthread_attr_t attr;
          pthread_attr_init(&attr);
          pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM); /* ignore failures */
          pthread_create(&threadid, &attr, &thread_main, (void *)(uintptr_t)i);
    pthread_attr_destroy(&attr);
    for(i=0;i<numthreads;i++) {
    void *retval = NULL;
    pthread_join(threadid[i], &retval);
    free(threadid);
    printf("DONE.\n");
    return 0;

    You can refer to this bug as 6499729.
    The bug status will soon be visible on bugs.sun.com

  • Patch Needed for Windows 64 bit OS for bug number - 9356752 ...OID 11.1.1.6

    Hi,
    I m doing OID - OAM integration for SSO.
    OID 11.1.1.6 (64 bit)
    RCU 11.1.1.6 (64 bit)
    Oracle DB 11.2.0.3 (64 bit)
    Weblogic Server 10.3.6
    While installing OID 11.1.1.6
    I m getting error during configuration as
    [2013-01-19T13:40:42.723+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 19] [ecid: 0000JlHnUopFk3WFLzvH8A1Gy^Jk00000A,0] Trying to start the component oid1
    [2013-01-19T13:40:42.855+05:30] [as] [WARNING] [] [oracle.as.config] [tid: 19] [ecid: 0000JlHnUopFk3WFLzvH8A1Gy^Jk00000A,0] Failed to start component oid1[[
    oracle.as.config.ProvisionException: HTTP status code = 400 : The request parameters did not match any components
         at oracle.as.config.impl.OracleASComponentBaseImpl.manageProcess(OracleASComponentBaseImpl.java:943)
         at oracle.as.config.impl.OracleASComponentBaseImpl.start(OracleASComponentBaseImpl.java:1062
    I searched through oracle support ..I got a patch for this issue (bug number 9356752) but its for Linux and Solaris.
    Can I get the patch for Windows 64 bit OS or any solution to resolve this issue?
    Thanks and Regards,
    Yogesh

    Hi,
    I have faced the same issue when I was installing OID in linux server, but was able to fix the issue with right version of RCU ( I was using RCU 11.1.1.5 with OID 11.1.1.6).
    Regards,
    Raghav

Maybe you are looking for

  • How to make a servlet as a router between two applications ?

    Hi everybody, I have two identical applications running under ORACLE AS. when one of the application went down , I want from a servlet or anything to map all requests to bakcup application. is their any ideas you can share with me ???

  • Moving TM backups to new drive

    I have new larger external drive which i will use to store my video in one partition and for Time Machine backup of my internal drive on the other partition I have created. Can I move the TM backups from an old drive to the new and then switch on TM

  • Selection of open items in payment run - payment method

    Hi Experts, Can anyone please suggest me on this first and basic thing in the payment run. I am running payment run where cross company code payments are configured. when I select multiple company codes in the payment run and a single payment method

  • Photo book not ordering in iPhoto for iOS 7

    I'm trying to order a photobook in iPhoto on my iPhone 5. It looks like the order is processing but it never actually finishes placing the order for the photo book. Anyone know of a solution? Please help!

  • Created audio only podcast, too big to post on my .Mac website

    I'm new with GB and thought it would be a easy way to record my voice for my daughter (military deployed to mid east right now). Its a basic female voice track, about 9 1/2 mins long, with no effects, no art, nothing but me talking. The podcast is ov