SDK: Uncaught exception thrown in native code

We are using java and the DQM SDK, our XML validates and while we are trying to create a MultiRecordTransform, we get the following exception with no information to help diagnose the issue.
com.sap.emdq.EmdqException: Uncaught exception thrown in native code
We are using the dquractransformu shared object and have NCOALink enabled.  We have successfully used the URAC transform without NCOALink.  We receive no other errors or logs when starting up, and if we turn off NCOALink, it gets past creating the MR transform.
Is there any other information we can get to help us determine what the issue is?

FYI: We found our setting in the XML that enabled NCOA processing to begin ( <PROVIDER_TYPE> ), but it would be much easier if the error indicated what was missing, instead of the generic "Uncaught exception thrown in native code".  Maybe there is a config setting to get more informative exception messages?

Similar Messages

  • Error on /SafeMode: error while trying to run project uncaught exception thrown by method called

    i try run VS 2012 with /SafeMode. I create new empty Winform. When I start debug, I got:
    "error while trying to run project uncaught exception thrown by method called through reflection"

    Hi Matanya Zac,
    Did you restart your machine? How about installing the VS2012 update 4?
    >>error while trying to run project uncaught exception thrown by method
    Did you install the VS update in your VS IDE? I met this issue before which was related to the VS update:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/5ead8ee9-ea09-4060-88b0-ee2e2044ff82/error-while-trying-to-run-a-project-uncaught-exception-thrown-by-method-called-through-reflection?forum=vsdebug
    If still no help, I suggest you repair your VS, and then restart your machine, test the result.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Exception thrown in native function.

    Hello,
    I've encountered a bizarre, yet repetitive problem with
    Dreamweaver 8. Whenever I close out of any file (.htm, .cfm, .dwt
    for example) that contains any JavaScript I get the following error
    and then DW crashes:
    While executing DWMenu_File_Close command in menus.xml, the
    following JavaScript error(s) occurred:
    Exception thrown in native function.
    I've been working with Dreamweaver for a few years, gone to
    MAX, my partner is a certified professional, and a user group
    manager. I can't fix this problem. It's got to be related to my
    system, as she has no problems whatsoever. I've been through the
    newsgroups, the technotes, developer center, and a reloaded my
    system (XP Pro) a few times.
    Thanks - David

    You can try this simple fix -
    Quit DW.
    Find this file -
    C:\Documents and Settings\<username>\Application
    Data\Macromedia\Dreamweaver
    8\Configuration\WinFileCache-*.dat
    (these folders are normally hidden - you may have to use
    Explorer > Tools >
    Folder Options to unhide them)
    and delete it.
    Restart DW. Works better?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "lotuseducation" <[email protected]> wrote
    in message
    news:e3a6up$ckl$[email protected]..
    > hi
    >
    > i am facing a strange error in my DW 8,
    > the error message is :
    >
    > while executing onLoad, the following Javascript
    error(s) occurred:
    > at line 36 of file "E:\Program
    files\Macromedia\Dreamweaver
    > 8\Configuration\Commands\_afterSave.htm":
    > Exception thrown in native function.
    >
    > what to do now? any idea
    >
    > i did not find any solution in google search for this
    >
    > thanks in advance
    > ashok sharma
    >

  • Additional uncaught exception thrown while handling exception.

    Hello all! I am *trying* to surf around the internet and do a little online shopping. I keep getting this error though and it is really bugging me/ruining my night. I am about ready to through my computer at a wall.
    Here is the error:
    Additional uncaught exception thrown while handling exception.
    Here is the full error as it appears on my screen:
    Additional uncaught exception thrown while handling exception.
    Original
    RedisException: Redis server went away in Redis->setOption() (line 23 of /home/www/usa.hunter-boot.com/htdocs/drupalroot/sites/all/modules/contrib/redis /lib/Redis/Client/PhpRedis.php).
    Additional
    RedisException: Redis server went away in Redis->setOption() (line 23 of /home/www/usa.hunter-boot.com/htdocs/drupalroot/sites/all/modules/contrib/redis /lib/Redis/Client/PhpRedis.php).
    It is REALLY bugging me. I don't know that much about computers other then the basics. I only use mine to write papers and go on the internet so if someone is nice enough to try and help me fix this issue then please don't use fancy tech lingo (dumb it down for me). Thank you!

    That's a problem on the web server, not on your computer.

  • Uncaught exceptions thrown in overridden ThreadGroup.uncaughtException

    Hi,
    To process uncaught exceptions in threads I spawn, I have created a ThreadGroup and overridden the uncaughtException method. This works flawlessly, but it brought up the following question:
    What happens to an exception that is thrown in an overridden uncaughtException method that is not caught?
    I assumed that an uncaught exception in an uncaughtException method would call the uncaughtException method in the parent thread group, but this does not seem to be the case. The uncaught exception just seems to disappear.
    Can somebody please confirm my finding that an uncaught exception thrown there just disappears and does not get handled anywhere else? Can somebody point me to the right sections of the Java Language Specs or the JVM Specs that deal with this issue?
    Below is a test program that I wrote to investigate. It throws an exception in an "outer thread", part of an "outer group" thread group; an exception in an "inner thread", part of an "inner group" thread group; and an exception in the uncaughtException method of the "inner group" thread group. I expected that the first two invoke the uncaughtException of the "outer group", while the last one invokes the method of the "inner group". Contrary to my expectations, the exception thrown in the uncaughtException method of the "inner group" does not seem to invoke anything.
    Thanks in advance.
    Yours,
    --Mathias
    public class ThrowInUncaughtExceptionHandler {
    public static void main(String[] args) {
    (new ThrowInUncaughtExceptionHandler()).run();
    public void run() {
    ThreadGroup outerGroup = new ThreadGroup("outer") {
    public void uncaughtException(Thread t, Throwable e) {
    System.out.println("in outerGroup.uncaughtException: "+e);
    final Thread outerThread = new Thread(outerGroup, new Runnable() {
    public void run() {
    System.out.println("in outerThread.run");
    System.out.println("\tthread group: "+Thread.currentThread().getThreadGroup());
    System.out.flush();
    ThreadGroup innerGroup = new ThreadGroup("inner") {
    public void uncaughtException(Thread t, Throwable e) {
    System.out.println("in innerGroup.uncaughtException: "+e);
    System.out.println("\tthrowing another exception...");
    throw new RuntimeException("thrown in innerGroup.uncaughtException");
    final Thread innerThread = new Thread(innerGroup, new Runnable() {
    public void run() {
    System.out.println("in innerThread.run");
    System.out.println("\tthread group: "+Thread.currentThread().getThreadGroup());
    System.out.flush();
    throw new RuntimeException("thrown in innerThread");
    innerThread.start();
    try { innerThread.join(); }
    catch(InterruptedException ioe) { /* ignore */ }
    throw new RuntimeException("thrown in outerThread");
    outerThread.start();
    }

    Hi tigerxx:
    Thank you for your reply. Unfortunately, your suggestion does not help. I had tried it already, even though according to the Java API Javadocs, this is not necessary anyway: If no thread group is specified as parent of a thread group, then the current thread's thread group is used. Since innerGroup is created by a thread in outerGroup, innerGroup's parent is outerGroup.
    Thanks again, though, for taking the time to read and reply.
    --Mathias                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to catch Exception inside the native code

    Hello,
    I have an error of unexpected exception during running native code,it occurrs randomly, not every time.
    the error text is:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x9535F359
    Function=acy_match+0xC6
    Library=/usr/lib/libNegativeMatcher.so
    I don't know what exactly cause the crash inside the c code but I think it might be memory leak . What I'm concern is that this exception cause program termination.
    I have few questions:
    1. This exception cause the java program to end. How can I catch this exception and avoid program termination?
    2. What is 0xC6 in:
    Function=acy_match+0xC6
    and PC=0x9535F359?
    Can it help me track the problem inside the native code?
    Thanks for your help.

    An unexpected exception has been detected in native
    code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x9535F359
    Function=acy_match+0xC6
    Library=/usr/lib/libNegativeMatcher.so
    I don't know what exactly cause the crash inside the
    c code but I think it might be memory leak . What
    I'm concern is that this exception cause program
    termination.I doubt it is a memory leak (actually I am rather certain that another error would occur if it was just memory exhaustion.)
    I have few questions:
    1. This exception cause the java program to end. How
    can I catch this exception and avoid program
    termination?I suspect that would be a really bad idea. That particular signal very likely indicates that you have corrupted memory. Continuing is unlikely to work.
    2. What is 0xC6 in:
    As a guess it is an offset into the compiled code which indicates where the memory problem was detected.
    That it unlikely to help you with a pointer/memory problem because that is where it was detected and not where it happened. By comparing the source you might be able to determine what was bad and then trace it back.

  • Catching exception thrown by Native program

    I am calling a C++ DLL from java program.
    If there is any exception in the DLL, the java program exits by itself.
    I want to know how I can catch the exception thrown by the native program.
    Any help is appreciated.
    Thanks in advance.
    Sridhar

    I'll assume that you wrote a JNI wrapper around the DLL. In this case, the wrapper would need to throw the exception back to the VM. The DLL won't do this.

  • JVM Exception thrown from JNI code

    Hi
    I have impleemnted JNI layer on top of C SDK
    The code for JNI seems fine and all local references are also freed. JNI is not working. However if I declare a huge C structure in the local variables list, function works and SDK function also returns.
    Could you anyone help me on this ?
    Interesting this is that if I declare that structure as first local variable function works and if it is last local variable, it does not work.
    Regards,
    Ritu
         

    Sounds like a classic buffer overflow problem to me.
    Hard to say for sure when the source code is absent from the posting.
    Sylvia.

  • Error.  ....Exception thrown in native function

    Hello, all..
    I have a screen capture of the error message I'm getting when
    I try to save an htm file I've created for a page. Had a site all
    built and when went in to make a quick change to site, the error
    started popping up and now I can't save any changes to the page.
    I've uninstalled DW and reinstalled but it still persists. There is
    much more to the error message and I didn't know what part of it to
    key in the Message Title that people would understand my error
    message. I posted this message in another group but I think it was
    the wrong one. My apologies to all.
    Can I send the screen capture to someone and receive
    opinions? I am running MX 2004. Can't afford to buy anything new
    and I don't do enough web work to invest in more software. I don't
    know how to post an image here, so if someone would please tell me
    how to get the image to them, I'd be more than glad to send it. I'm
    desperate.....I need to get this fixed. Thank you! Carolyn

    You can upload the image to any webserver and post a link on
    this forum.
    Incase you don't have access to a webserver, you can
    copy-paste the text of
    the error message on this forum and hopefully the more
    experienced folk will
    be able to give helpful advice.
    You cannot lose until you give up !!!
    "tobiano1" <[email protected]> wrote in
    message
    news:eqlhsi$mul$[email protected]..
    > Hello, all..o
    > I have a screen capture of the error message I'm getting
    when I try to
    > save an
    > htm file I've created for a page. Had a site all built
    and when went in to
    > make
    > a quick change to site, the error started popping up and
    now I can't save
    > any
    > changes to the page. I've uninstalled DW and reinstalled
    but it still
    > persists.
    > There is much more to the error message and I didn't
    know what part of it
    > to
    > key in the Message Title that people would understand my
    error message. I
    > posted this message in another group but I think it was
    the wrong one. My
    > apologies to all.
    >
    > Can I send the screen capture to someone and receive
    opinions? I am
    > running MX
    > 2004. Can't afford to buy anything new and I don't do
    enough web work to
    > invest
    > in more software. I don't know how to post an image
    here, so if someone
    > would
    > please tell me how to get the image to them, I'd be more
    than glad to send
    > it.
    > I'm desperate.....I need to get this fixed. Thank you!
    Carolyn
    >
    >

  • What meaNing is the error: "detected in native code outside the VM"

    Hi,
    I am trying to run dbca to create database(10.2.0.1 for Linux x86) in RHEL5 beta2, after I click the OK button on the parameter confirmon window, will display the Java exception:
    detected in native code outside the VM
    How resolve the problem?
    Thanks!

    Hi, Avi:
    The the "install forum" has reply me, but error is same. entire error message and stack trace as following, I no install JDK or JRE now, because I think the db10g already has a jre and some lib.
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x4A802D35
    Function=XFreeFontSet+0x15
    Library=/usr/lib/libX11.so.6
    Current Java thread:
    at sun.awt.motif.X11InputMethod.disposeXIC(Native Method)
    at sun.awt.motif.X11InputMethod.disposeImpl(X11InputMethod.java:662)
    - locked <0xa88b9d58> (a sun.awt.motif.X11InputMethod)
    at sun.awt.motif.X11InputMethod.dispose(X11InputMethod.java:689)
    at sun.awt.im.InputContext.dispose(InputContext.java:617)
    at java.awt.Window$1DisposeAction.run(Window.java:560)
    - locked <0xa88a2978> (a java.lang.Object)
    at java.awt.Window.dispose(Window.java:570)
    at java.awt.Dialog.disposeImpl(Dialog.java:638)
    at java.awt.Dialog.dispose(Dialog.java:634)
    at oracle.ewt.lwAWT.BufferedDialog.dispose(Unknown Source)
    at oracle.sysman.assistants.dbca.ui.SummaryDialog.actionPerformed(SummaryDialog.java:440)
    at oracle.ewt.button.PushButton.processActionEvent(Unknown Source)
    at oracle.ewt.button.PushButton.processEventImpl(Unknown Source)
    at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
    at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
    at oracle.ewt.button.PushButton.activate(Unknown Source)
    at oracle.ewt.lwAWT.AbstractButton.processMouseReleased(Unknown Source)
    at oracle.ewt.lwAWT.AbstractButton.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Component.java:4897)
    at java.awt.Container.processEvent(Container.java:1569)
    at oracle.ewt.lwAWT.LWComponent.processEventImpl(Unknown Source)
    at oracle.ewt.button.PushButton.processEventImpl(Unknown Source)
    at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
    at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Component.java:3615)
    at java.awt.Container.dispatchEventImpl(Container.java:1627)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
    at java.awt.Container.dispatchEventImpl(Container.java:1613)
    at java.awt.Window.dispatchEventImpl(Window.java:1606)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:141)
    at java.awt.Dialog$1.run(Dialog.java:540)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Dynamic libraries:
    08048000-08056000 r-xp 00000000 08:06 883639 /usr/local/oracle/db10g/jdk/jre/bin/java
    08056000-08059000 rwxp 0000d000 08:06 883639 /usr/local/oracle/db10g/jdk/jre/bin/java
    4a61d000-4a636000 r-xp 00000000 08:01 493139 /lib/ld-2.5.so
    4a636000-4a637000 r-xp 00018000 08:01 493139 /lib/ld-2.5.so
    4a637000-4a638000 rwxp 00019000 08:01 493139 /lib/ld-2.5.so
    4a63a000-4a63c000 r-xp 00000000 08:06 9815341 /usr/lib/libXau.so.6.0.0
    4a63c000-4a63d000 rwxp 00001000 08:06 9815341 /usr/lib/libXau.so.6.0.0
    4a63f000-4a777000 r-xp 00000000 08:01 493140 /lib/libc-2.5.so
    4a777000-4a779000 r-xp 00137000 08:01 493140 /lib/libc-2.5.so
    4a779000-4a77a000 rwxp 00139000 08:01 493140 /lib/libc-2.5.so
    4a77f000-4a7a4000 r-xp 00000000 08:01 493147 /lib/libm-2.5.so
    4a7a4000-4a7a5000 r-xp 00024000 08:01 493147 /lib/libm-2.5.so
    4a7a5000-4a7a6000 rwxp 00025000 08:01 493147 /lib/libm-2.5.so
    4a7a8000-4a7aa000 r-xp 00000000 08:01 493141 /lib/libdl-2.5.so
    4a7aa000-4a7ab000 r-xp 00001000 08:01 493141 /lib/libdl-2.5.so
    4a7ab000-4a7ac000 rwxp 00002000 08:01 493141 /lib/libdl-2.5.so
    4a7ae000-4a7c1000 r-xp 00000000 08:01 493142 /lib/libpthread-2.5.so
    4a7c1000-4a7c2000 r-xp 00012000 08:01 493142 /lib/libpthread-2.5.so
    4a7c2000-4a7c3000 rwxp 00013000 08:01 493142 /lib/libpthread-2.5.so
    4a7dc000-4a7e1000 r-xp 00000000 08:06 9815342 /usr/lib/libXdmcp.so.6.0.0
    4a7e1000-4a7e2000 rwxp 00004000 08:06 9815342 /usr/lib/libXdmcp.so.6.0.0
    4a7e4000-4a8e2000 r-xp 00000000 08:06 9815343 /usr/lib/libX11.so.6.2.0
    4a8e2000-4a8e6000 rwxp 000fe000 08:06 9815343 /usr/lib/libX11.so.6.2.0
    4a8e8000-4a8f7000 r-xp 00000000 08:06 9815348 /usr/lib/libXext.so.6.4.0
    4a8f7000-4a8f8000 rwxp 0000e000 08:06 9815348 /usr/lib/libXext.so.6.4.0
    4a91d000-4a928000 r-xp 00000000 08:01 493149 /lib/libgcc_s-4.1.1-20061011.so.1
    4a928000-4a929000 rwxp 0000a000 08:01 493149 /lib/libgcc_s-4.1.1-20061011.so.1
    4aaf4000-4aafc000 r-xp 00000000 08:06 9815344 /usr/lib/libXrender.so.1.3.0
    4aafc000-4aafd000 rwxp 00007000 08:06 9815344 /usr/lib/libXrender.so.1.3.0
    4aaff000-4ab03000 r-xp 00000000 08:06 9815352 /usr/lib/libXfixes.so.3.1.0
    4ab03000-4ab04000 rwxp 00003000 08:06 9815352 /usr/lib/libXfixes.so.3.1.0
    4ab2f000-4ab38000 r-xp 00000000 08:06 9815353 /usr/lib/libXcursor.so.1.0.2
    4ab38000-4ab39000 rwxp 00008000 08:06 9815353 /usr/lib/libXcursor.so.1.0.2
    4ab3b000-4ab52000 r-xp 00000000 08:06 9815357 /usr/lib/libICE.so.6.3.0
    4ab52000-4ab53000 rwxp 00016000 08:06 9815357 /usr/lib/libICE.so.6.3.0
    4ab57000-4ab5f000 r-xp 00000000 08:06 9813468 /usr/lib/libSM.so.6.0.0
    4ab5f000-4ab60000 rwxp 00007000 08:06 9813468 /usr/lib/libSM.so.6.0.0
    4ac2c000-4ac3e000 r-xp 00000000 08:01 493154 /lib/libnsl-2.5.so
    4ac3e000-4ac3f000 r-xp 00012000 08:01 493154 /lib/libnsl-2.5.so
    4ac3f000-4ac40000 rwxp 00013000 08:01 493154 /lib/libnsl-2.5.so
    4ad29000-4ad7d000 r-xp 00000000 08:06 9815284 /usr/lib/libXt.so.6.0.0
    4ad7d000-4ad81000 rwxp 00054000 08:06 9815284 /usr/lib/libXt.so.6.0.0
    4bf57000-4bf5c000 r-xp 00000000 08:06 9813824 /usr/lib/libXtst.so.6.1.0
    4bf5c000-4bf5d000 rwxp 00004000 08:06 9813824 /usr/lib/libXtst.so.6.1.0
    a161b000-a1621000 r-xp 00000000 08:06 883543 /usr/local/oracle/db10g/jdk/jre/lib/i386/libnio.so
    a1621000-a1622000 rwxp 00005000 08:06 883543 /usr/local/oracle/db10g/jdk/jre/lib/i386/libnio.so
    a1622000-a1658000 rwxs 00000000 00:08 786446 /SYSV00000000 (deleted)
    a175a000-a1814000 r-xp 00000000 08:06 883527 /usr/local/oracle/db10g/jdk/jre/lib/i386/libfontmanager.so
    a1814000-a182f000 rwxp 000b9000 08:06 883527 /usr/local/oracle/db10g/jdk/jre/lib/i386/libfontmanager.so
    a1830000-a1837000 r-xp 00000000 08:06 9813462 /usr/lib/libXp.so.6.2.0
    a1837000-a1838000 rwxp 00006000 08:06 9813462 /usr/lib/libXp.so.6.2.0
    a183e000-a1845000 r-xp 00000000 08:06 599545 /usr/local/oracle/db10g/oui/lib/linux/liboraInstaller.so
    a1845000-a1846000 rwxp 00006000 08:06 599545 /usr/local/oracle/db10g/oui/lib/linux/liboraInstaller.so
    a1846000-a184d000 r-xs 00000000 08:06 9876851 /usr/lib/gconv/gconv-modules.cache
    a184d000-a18a0000 r-xp 00000000 08:06 883540 /usr/local/oracle/db10g/jdk/jre/lib/i386/libmlib_image.so
    a18a0000-a18a1000 rwxp 00052000 08:06 883540 /usr/local/oracle/db10g/jdk/jre/lib/i386/libmlib_image.so
    a18a1000-a1b72000 r-xp 00000000 08:06 883523 /usr/local/oracle/db10g/jdk/jre/lib/i386/libawt.so
    a1b72000-a1b88000 rwxp 002d0000 08:06 883523 /usr/local/oracle/db10g/jdk/jre/lib/i386/libawt.so
    a1d6e000-a1d7e000 r-xp 00000000 08:06 883542 /usr/local/oracle/db10g/jdk/jre/lib/i386/libnet.so
    a1d7e000-a1d7f000 rwxp 0000f000 08:06 883542 /usr/local/oracle/db10g/jdk/jre/lib/i386/libnet.so
    a1d7f000-a1d8c000 r-xp 00000000 08:06 596076 /usr/local/oracle/db10g/lib/libldapjclnt10.so
    a1d8c000-a1d8e000 rwxp 0000c000 08:06 596076 /usr/local/oracle/db10g/lib/libldapjclnt10.so
    a1d8e000-a1f6a000 r-xp 00000000 08:06 599456 /usr/local/oracle/db10g/lib/libnnz10.so
    a1f6a000-a1f90000 rwxp 001dc000 08:06 599456 /usr/local/oracle/db10g/lib/libnnz10.so
    a1f92000-a2cc3000 r-xp 00000000 08:06 598954 /usr/local/oracle/db10g/lib/libclntsh.so.10.1
    a2cc3000-a2d24000 rwxp 00d31000 08:06 598954 /usr/local/oracle/db10g/lib/libclntsh.so.10.1
    a2d38000-a2d4d000 r-xp 00000000 08:06 599256 /usr/local/oracle/db10g/lib/libnjni10.so
    a2d4d000-a2d51000 rwxp 00014000 08:06 599256 /usr/local/oracle/db10g/lib/libnjni10.so
    a2d51000-a2ef4000 r-xp 00000000 08:06 598619 /usr/local/oracle/db10g/lib/libimf.so
    a2ef4000-a2ef6000 rwxp 001a2000 08:06 598619 /usr/local/oracle/db10g/lib/libimf.so
    a2ef6000-a2f35000 r-xs 00000000 08:06 589501 /usr/local/oracle/db10g/inventory/prereqs/oui/OraPrereqChecks.jar
    a2f35000-a2f6d000 r-xs 00000000 08:06 599532 /usr/local/oracle/db10g/oui/jlib/OraPrereq.jar
    a2f6d000-a2f79000 r-xs 00000000 08:06 598522 /usr/local/oracle/db10g/oc4j/j2ee/home/db_oc4j_deploy.jar
    a2f79000-a2fac000 r-xs 00000000 08:06 598335 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/crimson.jar
    a2fac000-a338e000 r-xs 00000000 08:06 598514 /usr/local/oracle/db10g/oc4j/sqlj/lib/translator.jar
    a338e000-a3403000 r-xs 00000000 08:06 598513 /usr/local/oracle/db10g/oc4j/sqlj/lib/runtime12ee.jar
    a3403000-a340f000 r-xs 00000000 08:06 598503 /usr/local/oracle/db10g/oc4j/jlib/jssl-1_1.jar
    a340f000-a3448000 r-xs 00000000 08:06 598356 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/http_client.jar
    a3448000-a34c6000 r-xs 00000000 08:06 598498 /usr/local/oracle/db10g/oc4j/javacache/lib/cache.jar
    a34c6000-a352e000 r-xs 00000000 08:06 598357 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/jem.jar
    a352e000-a35e3000 r-xs 00000000 08:06 598510 /usr/local/oracle/db10g/oc4j/rdbms/jlib/aqapi.jar
    a35e3000-a3607000 r-xs 00000000 08:06 598517 /usr/local/oracle/db10g/oc4j/webservices/lib/wsdl.jar
    a3607000-a362f000 r-xs 00000000 08:06 598516 /usr/local/oracle/db10g/oc4j/webservices/lib/wsserver.jar
    a362f000-a37c0000 r-xs 00000000 08:06 598501 /usr/local/oracle/db10g/oc4j/jdbc/lib/nls_charset12.jar
    a37c0000-a3947000 r-xs 00000000 08:06 598500 /usr/local/oracle/db10g/oc4j/jdbc/lib/classes12dms.jar
    a3947000-a39e3000 r-xs 00000000 08:06 598317 /usr/local/oracle/db10g/oc4j/j2ee/home/jazncore.jar
    a39e3000-a3a26000 r-xs 00000000 08:06 598318 /usr/local/oracle/db10g/oc4j/j2ee/home/jazn.jar
    a3a26000-a3a40000 r-xs 00000000 08:06 598337 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/jaas.jar
    a3a40000-a3a47000 r-xs 00000000 08:06 598338 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/jaxp.jar
    a3a47000-a3af0000 r-xs 00000000 08:06 598505 /usr/local/oracle/db10g/oc4j/lib/xmlparserv2.jar
    a3af0000-a3b35000 r-xs 00000000 08:06 598349 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/mail.jar
    a3b35000-a3b41000 r-xs 00000000 08:06 598331 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/activation.jar
    a3b41000-a3b44000 r-xs 00000000 08:06 598339 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/jcert.jar
    a3b44000-a3b46000 r-xs 00000000 08:06 598346 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/jnet.jar
    a3b46000-a3bc4000 r-xs 00000000 08:06 598347 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/jsse.jar
    a3bc4000-a3bd3000 r-xs 00000000 08:06 598334 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/cos.jar
    a3bd3000-a3c51000 r-xs 00000000 08:06 598332 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/bcel.jar
    a3c51000-a3c56000 r-xs 00000000 08:06 598333 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/connector.jar
    a3c56000-a3cc4000 r-xs 00000000 08:06 598504 /usr/local/oracle/db10g/oc4j/lib/dms.jar
    a3cc4000-a3ccc000 r-xs 00000000 08:06 598352 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/javax88.jar
    a3ccc000-a3cd0000 r-xs 00000000 08:06 598351 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/javax77.jar
    a3cd0000-a3d27000 r-xs 00000000 08:06 598343 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/jmxri.jar
    a3d27000-a3d2a000 r-xs 00000000 08:06 598348 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/jta.jar
    a3d2a000-a3d31000 r-xs 00000000 08:06 598341 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/jms.jar
    a3d31000-a3d3b000 r-xs 00000000 08:06 598324 /usr/local/oracle/db10g/oc4j/j2ee/home/iiop_gen_bin.jar
    a3d3b000-a3e76000 r-xs 00000000 08:06 598325 /usr/local/oracle/db10g/oc4j/j2ee/home/iiop.jar
    a3e76000-a3e78000 r-xs 00000000 08:06 598340 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/jdbc.jar
    a3e78000-a3e91000 r-xs 00000000 08:06 598345 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/jndi.jar
    a3e91000-a3f35000 r-xs 00000000 08:06 598353 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/ojsp.jar
    a3f35000-a3f43000 r-xs 00000000 08:06 598350 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/servlet.jar
    a3f43000-a3f47000 r-xs 00000000 08:06 598336 /usr/local/oracle/db10g/oc4j/j2ee/home/lib/ejb.jar
    a3f47000-a44c9000 r-xs 00000000 08:06 598330 /usr/local/oracle/db10g/oc4j/j2ee/home/oc4j.jar
    a44c9000-a4866000 r-xs 00000000 08:06 599555 /usr/local/oracle/db10g/oui/jlib/OraInstaller.jar
    a4866000-a5423000 r-xs 00000000 08:06 598681 /usr/local/oracle/db10g/sysman/jlib/emCORE.jar
    a5423000-a5440000 r-xs 00000000 08:06 593960 /usr/local/oracle/db10g/jlib/ldap.jar
    a5440000-a5586000 r-xs 00000000 08:06 593848 /usr/local/oracle/db10g/jlib/emConfigInstall.jar
    a5586000-a55d9000 r-xs 00000000 08:06 593849 /usr/local/oracle/db10g/jlib/emca.jar
    a55d9000-a5dc3000 r-xs 00000000 08:06 595944 /usr/local/oracle/db10g/jlib/oemlt-10_1_0.jar
    a5dc3000-a5dd5000 r-xs 00000000 08:06 594200 /usr/local/oracle/db10g/jlib/srvmasm.jar
    a5dd5000-a5de3000 r-xs 00000000 08:06 594201 /usr/local/oracle/db10g/jlib/srvmhas.jar
    a5de3000-a5eaa000 r-xs 00000000 08:06 594199 /usr/local/oracle/db10g/jlib/srvm.jar
    a5eaa000-a6032000 r-xs 00000000 08:06 596110 /usr/local/oracle/db10g/jdbc/lib/classes12.zip
    a6032000-a607f000 r-xs 00000000 08:06 598998 /usr/local/oracle/db10g/jlib/opm.jar
    a607f000-a6127000 r-xs 00000000 08:06 594289 /usr/local/oracle/db10g/owm/jlib/owm-3_0.jar
    a6127000-a616c000 r-xs 00000000 08:06 593941 /usr/local/oracle/db10g/ldap/oidadmin/dasnls.jar
    a616c000-a6178000 r-xs 00000000 08:06 594297 /usr/local/oracle/db10g/jlib/jssl-1_1.jar
    a6178000-a6210000 r-xs 00000000 08:06 595952 /usr/local/oracle/db10g/jlib/ldapjclnt10.jar
    a6210000-a6264000 r-xs 00000000 08:06 599252 /usr/local/oracle/db10g/jlib/ojpse.jar
    a6264000-a627f000 r-xs 00000000 08:06 594291 /usr/local/oracle/db10g/jlib/oraclepki103.jar
    a627f000-a6285000 r-xs 00000000 08:06 599248 /usr/local/oracle/db10g/jlib/ojmisc.jar
    a6285000-a62ce000 r-xs 00000000 08:06 599299 /usr/local/oracle/db10g/jlib/netcfg.jar
    a62ce000-a62e2000 r-xs 00000000 08:06 595312 /usr/local/oracle/db10g/jlib/orai18n-tools.jar
    a62e2000-a6449000 r-xs 00000000 08:06 595305 /usr/local/oracle/db10g/jlib/orai18n-lcsd.jar
    a6449000-a645f000 r-xs 00000000 08:06 595311 /usr/local/oracle/db10g/jlib/orai18n-servlet.jar
    a645f000-a646b000 r-xs 00000000 08:06 595310 /usr/local/oracle/db10g/jlib/orai18n-net.jar
    a646b000-a65bf000 r-xs 00000000 08:06 595309 /usr/local/oracle/db10g/jlib/orai18n-translation.jar
    a65bf000-a66bf000 r-xs 00000000 08:06 595304 /usr/local/oracle/db10g/jlib/orai18n-collation.jar
    a66bf000-a671f000 r-xs 00000000 08:06 595307 /usr/local/oracle/db10g/jlib/orai18n-utility.jar
    a671f000-a6732000 r-xs 00000000 08:06 595306 /usr/local/oracle/db10g/jlib/orai18n-mapping.jar
    a6732000-a68c3000 r-xs 00000000 08:06 595308 /usr/local/oracle/db10g/jlib/orai18n.jar
    a68c3000-a69eb000 r-xs 00000000 08:06 598705 /usr/local/oracle/db10g/lib/xmlparserv2.jar
    a69eb000-a69f9000 r-xs 00000000 08:06 596123 /usr/local/oracle/db10g/jlib/kodiak.jar
    a69f9000-a6a80000 r-xs 00000000 08:06 593853 /usr/local/oracle/db10g/jlib/oracle_ice5.jar
    a6a80000-a6c27000 r-xs 00000000 08:06 599096 /usr/local/oracle/db10g/jlib/jewt4.jar
    a6c27000-a6c8c000 r-xs 00000000 08:06 598688 /usr/local/oracle/db10g/jlib/help4.jar
    a6c8c000-a6c9a000 r-xs 00000000 08:06 599458 /usr/local/oracle/db10g/jlib/share.jar
    a6c9a000-a6ca8000 r-xs 00000000 08:06 593852 /usr/local/oracle/db10g/jlib/ewtcompat-3_3_15.jar
    a6ca8000-a6f2d000 r-xs 00000000 08:06 599099 /usr/local/oracle/db10g/jlib/ewt3.jar
    a6f2d000-a7028000 r-xs 00000000 08:06 593843 /usr/local/oracle/db10g/assistants/jlib/assistantsCommon.jar
    a7028000-a71b5000 r-xs 00000000 08:06 592248 /usr/local/oracle/db10g/assistants/dbca/jlib/dbca.jar
    a71b5000-a7271000 r-xs 00000000 08:06 600243 /usr/local/oracle/db10g/jdk/jre/lib/ext/localedata.jar
    a7271000-a7274000 r-xs 00000000 08:06 600241 /usr/local/oracle/db10g/jdk/jre/lib/ext/dnsns.jar
    a7274000-a7281000 r-xs 00000000 08:06 600242 /usr/local/oracle/db10g/jdk/jre/lib/ext/ldapsec.jar
    a7281000-a7284000 r-xs 00000000 08:06 600152 /usr/local/oracle/db10g/jdk/jre/lib/ext/smtp.jar
    a7284000-a72c9000 r-xs 00000000 08:06 600150 /usr/local/oracle/db10g/jdk/jre/lib/ext/mail.jar
    a72c9000-a72e5000 r-xs 00000000 08:06 600244 /usr/local/oracle/db10g/jdk/jre/lib/ext/sunjce_provider.jar
    a72e5000-a730b000 r-xs 00000000 08:06 600151 /usr/local/oracle/db10g/jdk/jre/lib/ext/mailapi.jar
    a750f000-a770f000 r-xp 00000000 08:06 9813461 /usr/lib/locale/locale-archive
    b3951000-b395f000 r-xs 00000000 08:06 600153 /usr/local/oracle/db10g/jdk/jre/lib/ext/activation.jar
    b5a07000-b5fa7000 r-xs 00000000 08:06 600193 /usr/local/oracle/db10g/jdk/jre/lib/charsets.jar
    b5fa7000-b5fb8000 r-xs 00000000 08:06 600231 /usr/local/oracle/db10g/jdk/jre/lib/jce.jar
    b5fb8000-b6095000 r-xs 00000000 08:06 600232 /usr/local/oracle/db10g/jdk/jre/lib/jsse.jar
    b6095000-b60ab000 r-xs 00000000 08:06 600240 /usr/local/oracle/db10g/jdk/jre/lib/sunrsasign.jar
    b60f5000-b7aa0000 r-xs 00000000 08:06 600239 /usr/local/oracle/db10g/jdk/jre/lib/rt.jar
    b7aa0000-b7ab4000 r-xp 00000000 08:06 883546 /usr/local/oracle/db10g/jdk/jre/lib/i386/libzip.so
    b7ab4000-b7ab7000 rwxp 00013000 08:06 883546 /usr/local/oracle/db10g/jdk/jre/lib/i386/libzip.so
    b7ab7000-b7ad7000 r-xp 00000000 08:06 883531 /usr/local/oracle/db10g/jdk/jre/lib/i386/libjava.so
    b7ad7000-b7ad9000 rwxp 0001f000 08:06 883531 /usr/local/oracle/db10g/jdk/jre/lib/i386/libjava.so
    b7ad9000-b7ae2000 r-xp 00000000 08:01 491561 /lib/libnss_files-2.5.so
    b7ae2000-b7ae3000 r-xp 00008000 08:01 491561 /lib/libnss_files-2.5.so
    b7ae3000-b7ae4000 rwxp 00009000 08:01 491561 /lib/libnss_files-2.5.so
    b7ae7000-b7af7000 r-xp 00000000 08:06 883545 /usr/local/oracle/db10g/jdk/jre/lib/i386/libverify.so
    b7af7000-b7af9000 rwxp 0000f000 08:06 883545 /usr/local/oracle/db10g/jdk/jre/lib/i386/libverify.so
    b7af9000-b7eff000 r-xp 00000000 08:06 883554 /usr/local/oracle/db10g/jdk/jre/lib/i386/client/libjvm.so
    b7eff000-b7f1a000 rwxp 00405000 08:06 883554 /usr/local/oracle/db10g/jdk/jre/lib/i386/client/libjvm.so
    b7f31000-b7f33000 r-xp 00000000 08:06 593842 /usr/local/oracle/db10g/lib/libOsUtils.so
    b7f33000-b7f34000 rwxp 00001000 08:06 593842 /usr/local/oracle/db10g/lib/libOsUtils.so
    b7f34000-b7f37000 r-xs 00000000 08:06 600149 /usr/local/oracle/db10g/jdk/jre/lib/ext/jta.jar
    b7f37000-b7f3b000 rwxs 00000000 08:01 458852 /tmp/hsperfdata_ora/2961
    b7f3b000-b7f43000 r-xp 00000000 08:06 883556 /usr/local/oracle/db10g/jdk/jre/lib/i386/native_threads/libhpi.so
    b7f43000-b7f44000 rwxp 00007000 08:06 883556 /usr/local/oracle/db10g/jdk/jre/lib/i386/native_threads/libhpi.so
    b7f45000-b7f46000 r-xp b7f45000 00:00 0 [vdso]
    bfbf0000-bfc06000 rwxp bfbf0000 00:00 0 [stack]
    Heap at VM Abort:
    Heap
    def new generation total 832K, used 640K [0xa7950000, 0xa7a30000, 0xa8320000)
    eden space 768K, 75% used [0xa7950000, 0xa79e02c0, 0xa7a10000)
    from space 64K, 99% used [0xa7a10000, 0xa7a1fff8, 0xa7a20000)
    to space 64K, 0% used [0xa7a20000, 0xa7a20000, 0xa7a30000)
    tenured generation total 10388K, used 7952K [0xa8320000, 0xa8d45000, 0xaf950000)
    the space 10388K, 76% used [0xa8320000, 0xa8ae4240, 0xa8ae4400, 0xa8d45000)
    compacting perm gen total 18176K, used 18137K [0xaf950000, 0xb0b10000, 0xb3950000)
    the space 18176K, 99% used [0xaf950000, 0xb0b066a0, 0xb0b06800, 0xb0b10000)
    Local Time = Fri Apr 6 09:24:01 2007
    Elapsed Time = 326
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    # An error report file has been saved as hs_err_pid2961.log.
    # Please refer to the file for further information.
    bin/dbca: line 158: 2961 Aborted $JRE_DIR/bin/java -Dsun.java2d.font.DisableAlgorithmicStyles=true -DORACLE_HOME=$OH -DDISPLAY=$DISPLAY -DJDBC_PROTOCOL=thin -mx128m -classpath $CLASSPATH oracle.sysman.assistants.dbca.Dbca $ARGUMENTS
    Thanks!

  • ActiveSync With csv ,Exception thrown in log file

    I did active Sync with csv with the mapping IDM User target attribute
    acountId to email field in the csv
    email to email
    We are able to get the accounts in to IDM properly but in the log file I see the following exception
    com.waveset.util.WavesetException: Unable to diff file because some records do not have a value key: accountId,
    the account Id attribute is named as "login" in the csv I tried by changing the 'login' to accountId in the csv file and removed the calready created accounts in IDM,still it says the same Exception in the log and accounts are created.
    am I missing anything to be done
    Regards
    Soori

    You can try this simple fix -
    Quit DW.
    Find this file -
    C:\Documents and Settings\<username>\Application
    Data\Macromedia\Dreamweaver
    8\Configuration\WinFileCache-*.dat
    (these folders are normally hidden - you may have to use
    Explorer > Tools >
    Folder Options to unhide them)
    and delete it.
    Restart DW. Works better?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "lotuseducation" <[email protected]> wrote
    in message
    news:e3a6up$ckl$[email protected]..
    > hi
    >
    > i am facing a strange error in my DW 8,
    > the error message is :
    >
    > while executing onLoad, the following Javascript
    error(s) occurred:
    > at line 36 of file "E:\Program
    files\Macromedia\Dreamweaver
    > 8\Configuration\Commands\_afterSave.htm":
    > Exception thrown in native function.
    >
    > what to do now? any idea
    >
    > i did not find any solution in google search for this
    >
    > thanks in advance
    > ashok sharma
    >

  • Exception thrown : java.lang.IllegalStateException: No AdfRenderingContext

    I have an adf application which was built in RAD 6.0.1, I migrated it to RAD 7.5.3, and I still use run time 6.0, but when loading first page, I got error:
    SRVE0068E: Uncaught exception thrown in one of the service methods of the servlet: /loginSelect.jspx. Exception thrown : java.lang.IllegalStateException: No AdfRenderingContext
         at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeBegin(CoreRenderer.java:136)
         at com.ibm.faces.renderkit.DefaultAjaxRenderer.encodeBegin(DefaultAjaxRenderer.java:64)
         at oracle.adf.view.faces.component.UIXComponentBase.encodeBegin(UIXComponentBase.java:593)
         at javax.faces.webapp.UIComponentTag.encodeBegin(UIComponentTag.java:591)
         at oracle.adf.view.faces.webapp.UIXComponentTag.encodeBegin(UIXComponentTag.java:108)
         at javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:478)
         at oracle.adf.view.faces.webapp.UIXComponentTag.doStartTag(UIXComponentTag.java:85)
         at com.ibm._jsp._loginSelect_5F_jspx._jspx_meth_afh_html_0(_loginSelect_5F_jspx.java:485)
         at com.ibm._jsp._loginSelect_5F_jspx._jspx_meth_f_view_0(_loginSelect_5F_jspx.java:518)
         at com.ibm._jsp._loginSelect_5F_jspx._jspService(_loginSelect_5F_jspx.java:66)
         at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:87)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1101)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1036)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at ca.on.gov.csc.ahp.web.filters.SessionCheckFilter.doFilter(SessionCheckFilter.java:96)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:832)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:679)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:565)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
         at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:122)
         at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.handleRequest(AbstractJSPExtensionServletWrapper.java:226)
         at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionProcessor.handleRequest(AbstractJSPExtensionProcessor.java:285)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:321)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
         at oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1101)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1036)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at ca.on.gov.csc.ahp.web.filters.SessionCheckFilter.doFilter(SessionCheckFilter.java:96)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:832)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:679)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:565)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:90)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:748)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1461)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:118)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:458)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:387)
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
         at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:195)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:743)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:873)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1473)
    The adf version is 10.1.3.
    Any idea to fix the error? Thanks in advance.

    i figured out the issue. Actually there was a method called findMaxId in one of my DAO and in the query i was using the actual column name instead of the id name.
    any how thanks

  • JDBC ODBC bridge (JDK 1.4) exception in native code

    I am using jdk 1.4 on windows 98. I have written this simple java program which uses jdbc odbc bridge to connect to an MS Access 2000 db.
    An exception in native code is thrown only when I use createStatement with scrollable resultset. If I use createStatement() with default forward only resultset type, then program works.
    import java.sql.*;
    public class Select
         public static void main(String[] args)
              try
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   Connection con = DriverManager.getConnection("jdbc:odbc:shopping");
                   Statement stmt = con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
                   String query = "SELECT * from products";
                   ResultSet rs = stmt.executeQuery(query);
                   while (rs.next())
                        String s = rs.getString("name");
                        float n = rs.getFloat("price");
                        System.out.println(s + " " + n);
              catch (ClassNotFoundException e)
                   System.out.println("Class Not Found: " + e.getMessage());
              catch (SQLException e)
                   System.out.println("SQL Exception: " + e.getMessage());
    The program produces this error with scrollable resultset:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D366658
    Function=[Unknown.]
    Library=(N/A)
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
         at sun.jdbc.odbc.JdbcOdbc.setStmtAttrPtr(Native Method)
         at sun.jdbc.odbc.JdbcOdbc.SQLSetStmtAttrPtr(JdbcOdbc.java:4676)
         at sun.jdbc.odbc.JdbcOdbcResultSet.setRowStatusPtr(JdbcOdbcResultSet.java:4473)
         at sun.jdbc.odbc.JdbcOdbcResultSet.initialize(JdbcOdbcResultSet.java:171)
         at sun.jdbc.odbc.JdbcOdbcStatement.getResultSet(JdbcOdbcStatement.java:423)
         - locked <02C74480> (a sun.jdbc.odbc.JdbcOdbcStatement)
         at sun.jdbc.odbc.JdbcOdbcStatement.executeQuery(JdbcOdbcStatement.java:253)
         at Select.main(Select.java:13)
    Dynamic libraries:
    0x7CC00000 - 0x7CC1D000      D:\WINDOWS\SYSTEM\IMAGEHLP.DLL
    Local Time = Mon Jan 20 00:16:15 2003
    Elapsed Time = 7
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.0_01-b03 mixed mode)
    # An error report file has been saved as hs_err_pid4294751525.log.
    # Please refer to the file for further information.
    Is there any problem with jdbc odbc bridge driver?

    No. This is not a bug. Not all databases support (or have to support) all types of resultsets. It is your responsibility to ensure that a particular resultset is supported before you use it. That said, one would definitely expect a more descriptive error message in case of inadvertant use.

  • EXCEPTION_ACCESS_VIOLATION exception has been detected in native code outs

    Here is my error :
    # An EXCEPTION_ACCESS_VIOLATION exception has been detected in native code outside the VM.
    # Program counter=0x502032cf
    Problem I have though is the app will run fine on 1 PC, but the same installation on another causes this. OS == NT ( i don't know too much about NT)
    Not really sure what to do about this one, really grateful for any advice.
    Thx

    It most windows JNI code an ACCESS_VIOLATION indicates a memory problem: buffer overwrite, underwrite, dereference a null pointer, etc.
    I would suggest going through the JNI code and put in more error checking: return values from methods, check for non-null input params, etc.

  • An unexpected exception has been detected in native code outside the VM.

    I thought that my problem had been solved yesterday when I managed to run my application with out getting "An unexpected exception has been detected in native code outside the VM."
    I was told to uninstall "j2sdk1.4.1_02" and install my old version of 1.3.1 and then completely remove that (as i do not think i removed it correctly in the first place), then reinstall my new version again (j2sdk1.4.1_02). This appeared to work, and my application ran. However, today i planned to do more work on it and it errored again. I am getting the following error:
    C:\Documents and Settings\Mike Costen\Desktop\Mar27d>java ImageViewerFrame
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D1C369C
    Function=Java_sun_awt_font_NativeFontWrapper_registerFonts+0x14BC
    Library=C:\j2sdk1.4.1_02\jre\bin\fontmanager.dll
    Current Java thread:
    at sun.awt.font.NativeFontWrapper.registerFonts(Native Method)
    - locked <06C15D48> (a java.lang.Class)
    at sun.java2d.SunGraphicsEnvironment.addPathFonts(SunGraphicsEnvironment.java:736)
    at sun.java2d.SunGraphicsEnvironment.registerFonts(SunGraphicsEnvironment.java:587)
    at sun.java2d.SunGraphicsEnvironment.access$100(SunGraphicsEnvironment.java:49)
    at sun.java2d.SunGraphicsEnvironment$2.run(SunGraphicsEnvironment.java:209)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.java2d.SunGraphicsEnvironment.loadFonts(SunGraphicsEnvironment.java:203)
    - locked <02F948A0> (a sun.awt.Win32GraphicsEnvironment)
    at sun.java2d.SunGraphicsEnvironment.mapFontName(SunGraphicsEnvironment.java:451)
    at java.awt.Font.initializeFont(Font.java:313)
    at java.awt.Font.<init>(Font.java:345)
    at sun.awt.windows.WDesktopProperties.setFontProperty(WDesktopProperties.java:148)
    - locked <02AE0000> (a sun.awt.windows.WDesktopProperties)
    at sun.awt.windows.WDesktopProperties.getWindowsParameters(Native Method)
    at sun.awt.windows.WDesktopProperties.<init>(WDesktopProperties.java:56)
    at sun.awt.windows.WToolkit.initializeDesktopProperties(WToolkit.java:865)
    at java.awt.Toolkit.getDesktopProperty(Toolkit.java:1533)
    - locked <02F92380> (a sun.awt.windows.WToolkit)
    at sun.awt.shell.ShellFolder.<clinit>(ShellFolder.java:171)
    at javax.swing.filechooser.FileSystemView.getRoots(FileSystemView.java:324)
    at javax.swing.filechooser.WindowsFileSystemView.getHomeDirectory(FileSystemView.java:625)
    at javax.swing.plaf.metal.MetalFileChooserUI.installComponents(MetalFileChooserUI.java:213)
    at javax.swing.plaf.basic.BasicFileChooserUI.installUI(BasicFileChooserUI.java:130)
    at javax.swing.plaf.metal.MetalFileChooserUI.installUI(MetalFileChooserUI.java:152)
    at javax.swing.JComponent.setUI(JComponent.java:449)
    at javax.swing.JFileChooser.updateUI(JFileChooser.java:1700)
    at javax.swing.JFileChooser.setup(JFileChooser.java:345)
    at javax.swing.JFileChooser.<init>(JFileChooser.java:320)
    at javax.swing.JFileChooser.<init>(JFileChooser.java:273)
    at ImageViewerFrame.<init>(ImageViewerFrame.java:30)
    at ImageViewerFrame.main(ImageViewerFrame.java:227)
    Dynamic libraries:
    0x00400000 - 0x00406000 C:\j2sdk1.4.1_02\bin\java.exe
    0x77F50000 - 0x77FF7000 C:\WINDOWS\System32\ntdll.dll
    0x77E60000 - 0x77F46000 C:\WINDOWS\system32\kernel32.dll
    0x77DD0000 - 0x77E5D000 C:\WINDOWS\system32\ADVAPI32.dll
    0x78000000 - 0x7807F000 C:\WINDOWS\system32\RPCRT4.dll
    0x77C10000 - 0x77C63000 C:\WINDOWS\system32\MSVCRT.dll
    0x6D340000 - 0x6D46A000 C:\j2sdk1.4.1_02\jre\bin\client\jvm.dll
    0x77D40000 - 0x77DC6000 C:\WINDOWS\system32\USER32.dll
    0x77C70000 - 0x77CB0000 C:\WINDOWS\system32\GDI32.dll
    0x76B40000 - 0x76B6C000 C:\WINDOWS\System32\WINMM.dll
    0x6D1E0000 - 0x6D1E7000 C:\j2sdk1.4.1_02\jre\bin\hpi.dll
    0x6D310000 - 0x6D31E000 C:\j2sdk1.4.1_02\jre\bin\verify.dll
    0x6D220000 - 0x6D239000 C:\j2sdk1.4.1_02\jre\bin\java.dll
    0x6D330000 - 0x6D33D000 C:\j2sdk1.4.1_02\jre\bin\zip.dll
    0x6D000000 - 0x6D105000 C:\j2sdk1.4.1_02\jre\bin\awt.dll
    0x73000000 - 0x73023000 C:\WINDOWS\System32\WINSPOOL.DRV
    0x76390000 - 0x763AC000 C:\WINDOWS\System32\IMM32.dll
    0x771B0000 - 0x772D1000 C:\WINDOWS\system32\ole32.dll
    0x6D190000 - 0x6D1E0000 C:\j2sdk1.4.1_02\jre\bin\fontmanager.dll
    0x73760000 - 0x737A4000 C:\WINDOWS\System32\ddraw.dll
    0x73BC0000 - 0x73BC6000 C:\WINDOWS\System32\DCIMAN32.dll
    0x73940000 - 0x73A07000 C:\WINDOWS\System32\D3DIM700.DLL
    0x76C90000 - 0x76CB2000 C:\WINDOWS\system32\imagehlp.dll
    0x6D510000 - 0x6D58D000 C:\WINDOWS\system32\DBGHELP.dll
    0x77C00000 - 0x77C07000 C:\WINDOWS\system32\VERSION.dll
    0x76BF0000 - 0x76BFB000 C:\WINDOWS\System32\PSAPI.DLL
    Local Time = Mon Mar 31 08:59:02 2003
    Elapsed Time = 6
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.1_02-b06 mixed mode)
    # An error report file has been saved as hs_err_pid584.log.
    # Please refer to the file for further information.
    C:\Documents and Settings\Mike Costen\Desktop\Mar27d>
    I am now not sure at all why my computer is doing this, as it worked yesterday...
    Any light shed on this matter is much appreciated.
    Thanks, Mike

    Welcome to native code hell! The reason we all use Java is because
    native code sucks. It is to be isolated and quarantined to the smallest
    area possible.
    File a TAR/SR. Maybe you just need a newer vesion of the OCI client
    libraries on your machine. Maybe they are out of sync with the native
    portion of the type-2 driver.
    Say why you went from type-4 to type-2. In my opinion, unless you have
    a very good reason, you should go back to the reliable java driver. Java
    can't kill a JVM.
    Good luck,
    Joe Weinstein at BEA Systems

Maybe you are looking for

  • Dual boot , windows 7 keep restart after select from grub section

    Hello everyone, i am new here. I want to make a dual boot in my computer. I am using a same hardisk to install both OS. 1st, I install arch linux , after install working well from grub. 2nd, I install windows 7, after install , it skip the grub secti

  • Can't import from DB using Admin tool

    Hello I have a problem that I'd like to get some help on. I have installed OBIEE 11.1.1.7 on Linux as well as the OBIEE Client Tool on Windows. I have modified the user.cmd file so that now the file has the following content: @echo off REM This file

  • Changing Matrix column title?

    Hi all, Is it possible to change a matrix column title using the ColumnTitle.Caption property? I have tried using the following code but it does not work: 'Sales order form - Add mode. If pVal.FormType = 139 And pVal.FormMode = 3 Then 'After form loa

  • HT4906 is photo stream on lion

    ihave down loaded lion but dont know how to down my photos from the cloud using photo stream

  • Convert DVD HD Project to DVD SP (clarification)

    I am aware that the subject of this post has been addressed elsewhere in the various forums numerous times; for those who are searching for the answer and come upon this post first, here is a summary of my understanding of things to avoid further sea