Client Drops - No Exception Thrown

Hi All,
I have a client server application which has been tested extensively and works fine. I have recently migrated the server to a linux environment (it was on windows) and now am experiencing a problem.
Any exception thrown in the client is programmed to be caught and displayed, as well as emailed to me. I am experiencing problems with one of the clients, they are being dropped after sending and receiving a couple of objects to the server - no exception is thown and no error log is created. It is at the same point every time - about 2 seconds after they connect. On the server side a java.net.SocketException: Broken pipe is thrown when it tries to send the second object to the client (the first data transfer always goes through fine). This is the only client experiencing this issue, it happens at the same spot everytime for them and it works for them when the server is hosted on a windows machine. It's frustrating because even when I run this client from the command line no exception is thrown (even though the part where it fails is in a try catch block), and no error log is created - it simply stops running therefore I don't know how to debug it.

Presumably you are catching throwable.
It is quite possible that one end is closing down correctly (so no exception) while the other end is expecting something else to happen and thus an exception occurs.
If you are sending messages, not data, and there are no message errors then this is not a problem. Simply catch the exception, note in the code that it not a problem, and eat it.

Similar Messages

  • Client side handling of exceptions thrown by a webservice

    I have a webservice that is deployed in Tomcat 5.5 running on Windows XP, Java version is 1.5, using jwsdp 1.5. My client, when run as an applet in a browser (have tried IE 6 and FireFox 1), seems to be unable to parse any exception thrown from the webservice. Instead the following exception is caught by the client:
    ==========================================================
    Checking the security service exception that occurred [Runtime exception; nested exception is:
    XML parsing error: com.sun.xml.rpc.sp.ParseException:1: Document root element is missing]
    com.irista.security.services.data.SecurityServiceException: Runtime exception; nested exception is:
    XML parsing error: com.sun.xml.rpc.sp.ParseException:1: Document root element is missing
    at com.irista.security.services.webclient.SecurityServiceProxy.removeAuthenticatio nProfile(SecurityServiceProxy.java:1276)
    at com.irista.security.ui.applet.AuthenticationProfilesListPanel.deleteAction(Auth enticationProfilesListPanel.java:131)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.irista.ui.webapp.framework.WebAppletPane.performAction(WebAppletPane.java:1 80)
    at com.irista.ui.webapp.framework.WebAppletPane.performAction(WebAppletPane.java:1 51)
    at com.irista.ui.webapp.framework.WebAppToolbar$ButtonActionListener.actionPerform ed(WebAppToolbar.java:368)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
    at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    ==========================================================
    If I run the client outside of a browser it catches the exception that is actually thrown by the webservice.
    Is there possibly a problem with the java 5 plugin handling exceptions thrown by webservices?
    I have not found any bug reports or forumn posts regarding this so any assistance would be greatly appreciated.
    thanks,
    scott

    Thanks for the reply, here is what the printStackTrace() output:
    java.rmi.RemoteException: Runtime exception; nested exception is:
         XML parsing error: com.sun.xml.rpc.sp.ParseException:1: Document root element is missing
         at com.sun.xml.rpc.client.StreamingSender._handleRuntimeExceptionInSend(StreamingSender.java:318)
         at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:300)
         at com.irista.security.services.webservice.SecurityServiceIF_Stub.removeAuthenticationProfile(SecurityServiceIF_Stub.java:1963)
         at com.irista.security.services.webclient.SecurityServiceProxy.removeAuthenticationProfile(SecurityServiceProxy.java:1266)
         at com.irista.security.ui.applet.AuthenticationProfilesListPanel.deleteAction(AuthenticationProfilesListPanel.java:131)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.irista.ui.webapp.framework.WebAppletPane.performAction(WebAppletPane.java:180)
         at com.irista.ui.webapp.framework.WebAppletPane.performAction(WebAppletPane.java:151)
         at com.irista.ui.webapp.framework.WebAppToolbar$ButtonActionListener.actionPerformed(WebAppToolbar.java:368)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: XML parsing error: com.sun.xml.rpc.sp.ParseException:1: Document root element is missing
         at com.sun.xml.rpc.streaming.XMLReaderImpl.next(XMLReaderImpl.java:120)
         at com.sun.xml.rpc.streaming.XMLReaderBase.nextContent(XMLReaderBase.java:23)
         at com.sun.xml.rpc.streaming.XMLReaderBase.nextElementContent(XMLReaderBase.java:41)
         at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:123)
         ... 34 more

  • Strange exception thrown from Client (Scanner has tokens)

    Hi,
    I am getting a really strange exception thrown from my client. It seems to be
    about a class that the wsgen generated. Has anyone ever seen something like that
    before? Maybe it is because I am using JBuilder(5.1)? I am operating on a WL6.1
    server. It is only a test webservice. So there are only standard return types,
    etc.
    Any comments/suggestions are appreciated
    cheers Stephan
    Scanner has tokens:
         [OPENTAGBEGIN]
         [NAME]     (META)
         [NAME]     (NAME)
         [CHARDATA]     (GENERATOR)
         [NAME]     (CONTENT)
         [CHARDATA]     (WebLogic htmlKona WebLogic Server 6.1 SP2 12/18/2001 11:13:46 #154529
         [TAGEND]
         [SPACE]     (
         [CLOSETAGBEGIN]
         [NAME]     (HEAD)
         [TAGEND]
         [SPACE]     (
         [OPENTAGBEGIN]
         [NAME]     (BODY)
         [NAME]     (bgcolor)
         [CHARDATA]     (white)
         [NAME]     (alink)
         [CHARDATA]     (#397F70)
         [NAME]     (link)
         [CHARDATA]     (#640078)
         [NAME]     (vlink)
         [CHARDATA]     (#DE7E00)
         [TAGEND]
         [SPACE]     (
         [OPENTAGBEGIN]
         [NAME]     (FONT)
         [NAME]     (FACE)
    E7E00">
    <FONT FACE=e <-- bad character
    java.lang.reflect.UndeclaredThrowableException: Error at line:8 col:13 Line:8
    ''' expected, got char[72]
         at weblogic.xml.babel.baseparser.SAXElementFactory.createSAXParseException(SAXElementFactory.java:60)
         at weblogic.xml.babel.parsers.StreamParser.streamParseSome(StreamParser.java:130)
         at weblogic.xml.babel.parsers.BabelXMLEventStream.parseSome(BabelXMLEventStream.java:46)
         at weblogicx.xml.stream.XMLEventStreamBase.hasNext(XMLEventStreamBase.java:135)
         at weblogicx.xml.stream.XMLEventStreamBase.hasStartElement(XMLEventStreamBase.java:258)
         at weblogicx.xml.stream.XMLEventStreamBase.hasStartElement(XMLEventStreamBase.java:171)
         at weblogicx.xml.stream.XMLEventStreamBase.startElement(XMLEventStreamBase.java:164)
         at weblogic.soap.codec.SoapMessage.read(SoapMessage.java:86)
         at weblogic.soap.WebServiceProxy.receive(WebServiceProxy.java:464)
         at weblogic.soap.WebServiceProxy.invoke(WebServiceProxy.java:430)
         at weblogic.soap.SoapMethod.invoke(SoapMethod.java:186)
         at weblogic.soap.wsdl.WebServiceInvocationHandler.invoke(WebServiceInvocationHandler.java:31)
         at $Proxy0.getAusgabe(Unknown Source)
         at webclient.Client.main(Client.java:36)
    Exception in thread "main"

    Hi, thanks, manoj!
    The problem was that eventhough I had the correct login, the server had another
    security layer, that prevented me from doing the lookup. So I guess I was supposed
    to get an error html page and so the SAX-Parser got messed up.
    Stupid mistake, but thank you very much.
    "manoj cheenath" <[email protected]> wrote:
    It looks like the server is sending back a html page instead
    of the soap response (text/xml). Can you check the URL
    you are trying?
    If you are using a WSDL file, then the URL will be inside
    the service->port->soap:address-location element.
    regards,
    -manoj
    "Stephan" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I am getting a really strange exception thrown from my client. It seemsto
    be
    about a class that the wsgen generated. Has anyone ever seen somethinglike that
    before? Maybe it is because I am using JBuilder(5.1)? I am operatingon a
    WL6.1
    server. It is only a test webservice. So there are only standard returntypes,
    etc.
    Any comments/suggestions are appreciated
    cheers Stephan
    Scanner has tokens:
    [OPENTAGBEGIN]
    [NAME] (META)
    [NAME] (NAME)
    [CHARDATA] (GENERATOR)
    [NAME] (CONTENT)
    [CHARDATA] (WebLogic htmlKona WebLogic Server 6.1 SP2 12/18/2001 11:13:46#154529
    [TAGEND]
    [SPACE] (
    [CLOSETAGBEGIN]
    [NAME] (HEAD)
    [TAGEND]
    [SPACE] (
    [OPENTAGBEGIN]
    [NAME] (BODY)
    [NAME] (bgcolor)
    [CHARDATA] (white)
    [NAME] (alink)
    [CHARDATA] (#397F70)
    [NAME] (link)
    [CHARDATA] (#640078)
    [NAME] (vlink)
    [CHARDATA] (#DE7E00)
    [TAGEND]
    [SPACE] (
    [OPENTAGBEGIN]
    [NAME] (FONT)
    [NAME] (FACE)
    E7E00">
    <FONT FACE=e <-- bad character
    java.lang.reflect.UndeclaredThrowableException: Error at line:8 col:13Line:8
    ''' expected, got char[72]
    atweblogic.xml.babel.baseparser.SAXElementFactory.createSAXParseException(SAXE
    lementFactory.java:60)
    atweblogic.xml.babel.parsers.StreamParser.streamParseSome(StreamParser.java:13
    0)
    atweblogic.xml.babel.parsers.BabelXMLEventStream.parseSome(BabelXMLEventStream
    ..java:46)
    atweblogicx.xml.stream.XMLEventStreamBase.hasNext(XMLEventStreamBase.java:135)
    atweblogicx.xml.stream.XMLEventStreamBase.hasStartElement(XMLEventStreamBase.j
    ava:258)
    atweblogicx.xml.stream.XMLEventStreamBase.hasStartElement(XMLEventStreamBase.j
    ava:171)
    atweblogicx.xml.stream.XMLEventStreamBase.startElement(XMLEventStreamBase.java
    :164)
    at weblogic.soap.codec.SoapMessage.read(SoapMessage.java:86)
    at weblogic.soap.WebServiceProxy.receive(WebServiceProxy.java:464)
    at weblogic.soap.WebServiceProxy.invoke(WebServiceProxy.java:430)
    at weblogic.soap.SoapMethod.invoke(SoapMethod.java:186)
    atweblogic.soap.wsdl.WebServiceInvocationHandler.invoke(WebServiceInvocationHa
    ndler.java:31)
    at $Proxy0.getAusgabe(Unknown Source)
    at webclient.Client.main(Client.java:36)
    Exception in thread "main"

  • Error upon starting Weblogic server : Exception thrown while loading uddi

    Hi,
    I am getting $Proxy41.getDefaultWebApp(Unknown Source) error while starting the weblogic. Any one has clue? Below is the stack from myserv.log file.
    Environment:
    OS : Windows 2000 server
    WLS: Weblogic 7.0SP2
    Oracle client : Oracle 9i RC2
    IIS : IIS 5.0
    <Exception thrown while loading uddi: java.lang.ClassCastException: weblogic.management.configuration.ApplicationManagerMBean_CachingStub>
    java.lang.ClassCastException: weblogic.management.configuration.ApplicationManagerMBean_CachingStub
         at $Proxy41.getDefaultWebApp(Unknown Source)
         at weblogic.management.configuration.WebServerMBean_CachingStub.getDefaultWebApp(WebServerMBean_CachingStub.java:226)
         at weblogic.servlet.internal.WebAppServletContext.initFromMBean(WebAppServletContext.java:1312)
         at weblogic.servlet.internal.WebAppServletContext.init(WebAppServletContext.java:1054)
         at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:1009)
         at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:502)
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:371)
         at weblogic.j2ee.J2EEApplicationContainer.prepareWebModule(J2EEApplicationContainer.java:1598)
         at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:735)
         at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:555)
         at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:458)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareAllStagedApplications(SlaveDeployer.java:490)
         at weblogic.management.deploy.slave.SlaveDeployer.initialize(SlaveDeployer.java:253)
         at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.initialize(DeploymentManagerServerLifeCycleImpl.java:150)
         at weblogic.t3.srvr.ServerLifeCycleList.initialize(ServerLifeCycleList.java:54)
         at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:782)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
         at weblogic.Server.main(Server.java:32)
    ####<Dec 14, 2005 11:19:54 AM PST> <Error> <Deployer> <rsecav-webenam> <myserver> <main> <kernel identity> <> <149205> <The Slave Deployer failed to initialize the application uddi due to error weblogic.management.ApplicationException: Prepare failed. Task Id = null
    Module Name: uddi, Error: Could not load uddi: java.lang.ClassCastException: weblogic.management.configuration.ApplicationManagerMBean_CachingStub
    }.>
    weblogic.management.ApplicationException: Prepare failed. Task Id = null
    Module Name: uddi, Error: Could not load uddi: java.lang.ClassCastException: weblogic.management.configuration.ApplicationManagerMBean_CachingStub
         at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:744)
         at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:555)
         at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:458)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareAllStagedApplications(SlaveDeployer.java:490)
         at weblogic.management.deploy.slave.SlaveDeployer.initialize(SlaveDeployer.java:253)
         at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.initialize(DeploymentManagerServerLifeCycleImpl.java:150)
         at weblogic.t3.srvr.ServerLifeCycleList.initialize(ServerLifeCycleList.java:54)
         at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:782)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
         at weblogic.Server.main(Server.java:32)
    Thanks in advance,
    Manu

    Hi Manu,
    can I know how you over come this problem? I am using Weblogic 7 with Service Pack 4. I will be thankful to u if you can mail ur response to me on my mail [email protected]
    Thanks and Regards,
    Suresh Vemulapalli

  • Jco exception thrown while executing function "BICS_PROV_OPEN" against syst

    Hi,
         Am implementing SAP EP, BI Integration. The BI Querys are running fine, but when i try to run a BEx Application Query am thrown with this exception in portal.
    Exception caught: com.sap.ip.bi.base.exception.BIBaseRuntimeException: Jco exception thrown while executing function "BICS_PROV_OPEN" against system "SAP_BW" com.sap.ip.bi.base.exception.BIBaseRuntimeException: Jco exception thrown while executing function "BICS_PROV_OPEN" against system "SAP_BW" at
    I've done all the configuration for the integration and the BI Diagnostic tool is showing all the configurations to GREEN.
    Please help me on this...
    Regards,
    mcsekar

    Exception caught: com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: The current application triggered a termination with a short dump. com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: The current application triggered a termination with a short dump. at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:516) at com.sap.mw.jco.MiddlewareJRfc$Client.execute(MiddlewareJRfc.java:1514) at com.sap.mw.jco.JCO$Client.execute(JCO.java:3980) at com.sap.mw.jco.JCO$Client.execute(JCO.java:3417) at com.sap.ip.bi.base.application.service.rfcproxy.impl.jco640.Jco640Proxy.executeFunction(Jco640Proxy.java:362) at com.sap.ip.bi.base.application.service.rfcproxy.impl.jco640.Jco640Function.executeRfc(Jco640Function.java:75) at com.sap.ip.bi.base.application.service.rfcproxy.base.RfcFunction.execute(RfcFunction.java:46) at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.variableprocessor.RfcServiceWithVariables.executeCreationFunctionForVariableHandling(RfcServiceWithVariables.java:64) at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderSelectionObject.isApplicable(ProviderSelectionObject.java:339) at com.sap.ip.bi.base.application.impl.Application.checkAndCreateService(Application.java:709) at com.sap.ip.bi.base.application.impl.Application.createService(Application.java:634) at
    Exception caught: com.sap.ip.bi.base.exception.BIBaseRuntimeException: Jco exception thrown while executing function "BICS_PROV_OPEN" against system "SAP_BW" com.sap.ip.bi.base.exception.BIBaseRuntimeException: Jco exception thrown while executing function "BICS_PROV_OPEN" against system "SAP_BW" at com.sap.ip.bi.base.application.service.rfcproxy.base.RfcFunction.execute(RfcFunction.java:48) at com

  • Catching an exception thrown from another thread

    I have a SocketServer that creates new threads to handle incoming clients. If one of the threads throw a SQLException is it possible to catch that exception in the SocketServer that created that thread.
    I tried implementing this code and I cannot get the server to catch an exception thrown in the thread. Are my assumptions correct?
    I was reading something about Thread Groups and implementing an uncoughtException() method, but this looked like overkill.
    Thanks for your time!
    Some Example code would be the following where the ClientThread will do a database query which could cause an SQLException. I'd like to catch that exception in my Socket Server
          try
                 new ClientThread( socketServer.accept() , host, connection ).start();
          catch( SQLException e )
                 System.out.println( "DataSource Connection Problem" );
                  e.printStackTrace();
          }

    hehe, why?
    The server's job is to listen for an incoming message from a client and pass it off to a thread to handle the client. Otherwise the server will have to block on that incoming port untill it has finished handling the client and usually there are many incoming clients continuously.
    The reason I would want to catch an exception in the server based on the SQLException thrown in the thread is because the SQLException is usually going to be due to the fact the datasource connection has become unavalable, or needs to be refreshed. This datasource connection is a private variable stored in the socket server. The SocketServer now needs to know that it has to refresh that datasource connection. I would normally try to use somesort of flag to set the variable but to throw another wrench into my dilemma, the SocketServer is actually its own thread. So I can't make any of these variables static, which means I can't have the thread call a method on teh socket server to change the status flag. :)
    I guess I need implement some sort of Listener that the thread can notify when a datasource connection goes down?
    Thanks for the help so far, I figured java would not want one thread to catch another thread's exceptions, but I just wanted to make sure.

  • Data Quality vendor-specific error: An error occurred when calling function 'sdq_init_connector ()' in connector ": "(-8) Exception!." Detailed error message: Exception thrown by Java: java.lang.UnsatisfiedLinkError: nio (Not found in com.ibm.oti.vm.boots

    When attempting to create a new Account in siebel integrated with OEDQ the following error occurs.
    ERROR
    Data Quality vendor-specific error: An error occurred when calling function 'sdq_init_connector ()' in connector ": "(-8) Exception!." Detailed error message: Exception thrown by Java: java.lang.UnsatisfiedLinkError: nio (Not found in com.ibm.oti.vm.bootstrap.library.path)(SBL-APS-00118)
    STEPS
    The issue can be reproduced at will with the following steps:
    1) from EDQ director we have imported the EDQ_CDS,EDQ-REFERENCE DATA & EDQ_HISTORICAl DATA packages sucessfully.
    2) Created dnd.param file in SIebel server SDQCOnnector folder.
    3) Copied the libdnd.so file to siebsrvr lib directory(32 bit)
    3) In dnd.param file we have mentioned the javalib file and instllation directory path(<Siebsrvr roo>/dnd/install)
    4) Unzipped the EDQ-Siebel Connector files in dnd/install folder
    5) Copied the dnd.properties file in dnd/install directory and modified it accordingly to point to installed EDQ instance.
    6) Configured the Siebel components for EDQ integration.
    7) Realtime EDQ jobs are running.
    8) Create a new Account
    Env details are
    On : 8.2.2.14 [IP2014] version, Client Functionality
    EDQ 11.1.1.7.4
    IBM JDK 1.7 32 bit
    Using Open UI
    Any Champ have faced this issue and overcame it please let me know the resolution steps. your help is
    Regards
    Monoj Dey
    9007554589

    Hi Monoj,
    A few questions:
    - What OS is Siebel running on?
    - What version of the Siebel connector are you using?
    - Which libdnd.so file are you using?
    - What's the contents of your dnd.parms file?
    thanks,
    Nick

  • 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.

  • Exception thrown from action: createLink

    Hi,
    I am trying to install Application server on Red Hat Enterprise Linux 4.
    I got the folowing error
    Starting install Install Phase 2 of component Oracle Client Required Support Files
    Calling Action unixActions10.1.0.4.0 createLink
    source = /u01/app/oracle/product/10.1.3.1/OracleAS_1/lib/libclntsh.so.10.1
    destination = /u01/app/oracle/product/10.1.3.1/OracleAS_1/lib/libclntsh.so
    overwriteExistingLink = true
    Exception thrown from action: createLink
    Exception Name: FileNotFoundException
    Exception String: File not found: %fileName%
    Kinldy let me know how to proceed.
    Regards,
    Anu

    This is a documented bug : 5029782.
    Take a look at this metalink note:
    Install of Oracle Database 10g Companion Products Fails With : File Not Found: %Filename%
         Doc ID:      Note:566889.1
    ~ Madrid
    http://hrivera99.blogspot.com

  • Exception thrown when CRM Extensibility code calls BC4JRuntimeDataControl

    While uptaking CRM Extensibility for Sales Forecasting, we see the following exception thrown from a call to BC4JRuntimeDataControl(am). The method and the parameters passed (as seen in the remote debugger) are as follows:
    public static DataControl getDTDataControl(ApplicationModule am) throws ContentGenerationException {
    DataControl dtDataControl = null;
    dtDataControl =
    (DataControl)CommonUtils.getDataControlSessionCache().get(am);
    if (dtDataControl == null) {
    Logger.time("Creating BC4JRuntimeDataControl for am %s",
    am.getDefFullName());
    dtDataControl = new BC4JRuntimeDataControl(am);
    Logger.time("Finish Creating BC4JRuntimeDataControl for am %s",
    am.getDefFullName());
    CommonUtils.cacheDataControl(am, dtDataControl);
    return dtDataControl;
    The AM passed as parameter is ForecastAMImpl (/oracle/apps/sales/salesForecasting/forecasts/forecastService/applicationModule/ForecastAM.xml)
    The line dtDataControl = new BC4JRuntimeDataControl(am); above throws the exception below (full log file attached):
    [FINER] [contentProvider:BindingUtils:getDTDataControl] 1328162162474 : Creating BC4JRuntimeDataControl for am oracle.apps.sales.salesForecasting.forecasts.forecastService.applicationModule.ForecastAM
    [INFO] [plan:PlanInterpreter:compensate] Wed Feb 01 21:56:02 PST 2012 : Start running compensations
    [INFO] [plan:PlanInterpreter:compensate] Wed Feb 01 21:56:02 PST 2012 : Start running compensations
    [SEVERE] [client:Configuration:initializeFromConnectionName] oracle.jbo.ConfigException: JBO-33003: Connection name ApplicationDB is not defined.
    Request assistance in resolving this issue.
    Thanks

    Looks like your AM configuration relies on a database connection called ApplicationDB which is not defined in the server you are deployed on.

  • Error Occurred: Exception thrown is NOT a DSCException : UnExpected From DSC

    Hey Everybody ,
    In the context of my project. I was bring to use LiveCycle ES API  to identify with the server . so when i try to connect using the EJB proposed by livecycle i get this error :
    com.adobe.idp.um.api.UMException| [com.adobe.livecycle.usermanager.client.AuthenticationManagerServiceClient] errorCode:16385 errorCodeHEX:0x4001 message:Exception thrown is NOT a DSCException : UnExpected From DSC chainedException:ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal error.chainedExceptionMessage:Internal error. chainedException trace:ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal error.
    at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.doSend(EjbMessageDispatcher.java :175)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
    at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
    at com.adobe.livecycle.usermanager.client.AuthenticationManagerServiceClient.authenticate(Au thenticationManagerServiceClient.java:109)
    at com.gaselys.test.PurgeProcess.main(PurgeProcess.java:71)
    Caused by: java.rmi.RemoteException: Remote EJBObject lookup failed for 'ejb/Invocation'; nested exception is:
    org.jboss.remoting.CannotConnectException: Can not get connection to server. Problem establishing socket connection for InvokerLocator [socket://127.0.0.1:4446/?dataType=invocation&enableTcpNoDelay=true&marshaller=org.jboss. invocation.unified.marshall.InvocationMarshaller&socketTimeout=600000&unmarshaller=org.jbo ss.invocation.unified.marshall.InvocationUnMarshaller]
    at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.initialise(EjbMessageDispatcher. java:105)
    at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.doSend(EjbMessageDispatcher.java :141)
    ... 4 more
    Caused by: org.jboss.remoting.CannotConnectException: Can not get connection to server. Problem establishing socket connection for InvokerLocator [socket://127.0.0.1:4446/?dataType=invocation&enableTcpNoDelay=true&marshaller=org.jboss.invocation.unified.marshall .InvocationMarshaller&socketTimeout=600000&unmarshaller=org.jboss.invocation.unified.marsh all.InvocationUnMarshaller]
    at org.jboss.remoting.transport.socket.MicroSocketClientInvoker.transport(MicroSocketClientI nvoker.java:530)
    at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
    at org.jboss.remoting.Client.invoke(Client.java:1550)
    at org.jboss.remoting.Client.invoke(Client.java:530)
    at org.jboss.invocation.unified.interfaces.UnifiedInvokerProxy.invoke(UnifiedInvokerProxy.ja va:183)
    at org.jboss.invocation.InvokerInterceptor.invokeInvoker(InvokerInterceptor.java:365)
    at org.jboss.invocation.MarshallingInvokerInterceptor.invoke(MarshallingInvokerInterceptor.j ava:63)
    at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
    at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
    at org.jboss.proxy.ejb.HomeInterceptor.invoke(HomeInterceptor.java:184)
    at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
    at $Proxy0.create(Unknown Source)
    at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.initialise(EjbMessageDispatcher. java:95)
    ... 5 more
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at org.jboss.remoting.transport.socket.SocketClientInvoker.createSocket(SocketClientInvoker. java:187)
    at org.jboss.remoting.transport.socket.MicroSocketClientInvoker.getConnection(MicroSocketCli entInvoker.java:801)
    at org.jboss.remoting.transport.socket.MicroSocketClientInvoker.transport(MicroSocketClientI nvoker.java:526)
    ... 17 more
    NB:  The ejb is working well on my first environment <Dev>
    I'm using Livecycle ES 2 9.0
    JBoss_4_2_1_GA
    Oracle 10g
    Any proposal or suggestion will be useful
    Naoufal FAHEM

    Awsome I have no more error
    i had to make change on my  jboss-service.xml .
    change
    <attribute name="serverBindAddress">${jboss.bind.address}</attribute>
    i changed the ${jboss.bind.address} with my server ip adress.
    now everything is working fine

  • 'exception thrown but not caught' error on the url iview

    Hi,
    EP6, we have url iview that is working fine for displaying a web application. but the problem is some of the link on the web application throws 'exception thrown but not caught' error. it happens to some of the users though.

    Hi Mokone
    I agree with Raghvendranath statement.
    This is not portal side problem.U just using URL of that application
    Also do this
    Open the URLiView editor and check the Fetch Mode property value.
        Launch the same URL in a new browser window (not in the portal).
        Change the URLiView Fetch Mode property from Server-Side to Client-Side.
        The iView is using the Server-side fetching mode but no proxy is defined for the portal
    Hope this info help you
    Regards
    Ruturaj

  • LiveConnect crashes browser????  External exception thrown.

    Hey,
    Im using an applet that sometimes calls liveconnect, specifically when the applet JFrame is closed, it has the browser navigate to another page.
    This part works great. Then maybe 5 minutes later, and sporadically, IE will crash and put a file on my desktop (winXP).
    Please let me know if you have any ideas, here's some code and the error file from the desktop:
    try {           
    //gets the applet reference
    JSObject win = JSObject.getWindow(
    (Applet)MainMenu.getCurrentMenu().getParent());
    //calls a javascript function, this part works great
    Object answer = win.eval("appletGlue('" + theFunction
    + "', " + questionID + ",'" + param3 + "');");
    //even checks the javascript return value...
    if (answer.toString().equals(ResourceFactory.JAVASCRIPT_SUCCESS)) {
    //done, this works fine too
    return;
    //response = "Success";
    } else {
    response = "ERROR: could not " + errorMessage + " , "
    + answer.toString();
    } catch (Exception e) {
    response = "ERROR: could not properly access the \n" +
    "browser to " + errorMessage + " , exception thrown";
    e.printStackTrace();
    JSObject is the liveconnect class
    com.ar.testbank are my classes
    =======================================================================
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : unknown exception code occurred at PC=0x77E6D756
    Function=RaiseException+0x50
    Library=F:\WINDOWS\system32\kernel32.dll
    Current Java thread:
         at sun.plugin.javascript.ocx.JSObject.nativeInvoke(Native Method)
         at sun.plugin.javascript.ocx.JSObject.invoke(JSObject.java:93)
         - locked <10F00B48> (a sun.plugin.javascript.ocx.JSObject)
         at sun.plugin.javascript.ocx.JSObject.getMember(JSObject.java:201)
         at sun.plugin.javascript.ocx.JSObject.eval(JSObject.java:183)
         at com.ar.testbank.ui.resources.RemoteResourceFactory.doJavascriptCall(Unknown Source)
         at com.ar.testbank.ui.resources.RemoteResourceFactory.doMainMenu(Unknown Source)
         at com.ar.testbank.ui.gui.StatusBottomPanel$5.actionPerformed(Unknown Source)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1767)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1820)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:419)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:257)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:258)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:227)
         at java.awt.Component.processMouseEvent(Component.java:5021)
         at java.awt.Component.processEvent(Component.java:4818)
         at java.awt.Container.processEvent(Container.java:1525)
         at java.awt.Component.dispatchEventImpl(Component.java:3526)
         at java.awt.Container.dispatchEventImpl(Container.java:1582)
         at java.awt.Component.dispatchEvent(Component.java:3367)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3359)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3074)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3004)
         at java.awt.Container.dispatchEventImpl(Container.java:1568)
         at java.awt.Window.dispatchEventImpl(Window.java:1581)
         at java.awt.Component.dispatchEvent(Component.java:3367)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:445)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:191)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:130)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:98)
    Dynamic libraries:
    0x00400000 - 0x00419000      F:\Program Files\Internet Explorer\IEXPLORE.EXE
    0x77F50000 - 0x77FF9000      F:\WINDOWS\System32\ntdll.dll
    0x77E60000 - 0x77F45000      F:\WINDOWS\system32\kernel32.dll
    0x77C10000 - 0x77C63000      F:\WINDOWS\system32\msvcrt.dll
    0x77D40000 - 0x77DCD000      F:\WINDOWS\system32\USER32.dll
    0x77C70000 - 0x77CB0000      F:\WINDOWS\system32\GDI32.dll
    0x77DD0000 - 0x77E5B000      F:\WINDOWS\system32\ADVAPI32.dll
    0x77CC0000 - 0x77D35000      F:\WINDOWS\system32\RPCRT4.dll
    0x772D0000 - 0x77333000      F:\WINDOWS\system32\SHLWAPI.dll
    0x769C0000 - 0x76B09000      F:\WINDOWS\System32\SHDOCVW.dll
    0x71950000 - 0x71A34000      F:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.0.0_x-ww_1382d70a\comctl32.dll
    0x773D0000 - 0x77BC4000      F:\WINDOWS\system32\SHELL32.dll
    0x77340000 - 0x773CB000      F:\WINDOWS\system32\comctl32.dll
    0x771B0000 - 0x772CA000      F:\WINDOWS\system32\ole32.dll
    0x5AD70000 - 0x5ADA4000      F:\WINDOWS\system32\uxtheme.dll
    0x74720000 - 0x7476B000      F:\WINDOWS\System32\MSCTF.dll
    0x75F80000 - 0x7607C000      F:\WINDOWS\System32\BROWSEUI.dll
    0x72430000 - 0x72442000      F:\WINDOWS\System32\browselc.dll
    0x75F40000 - 0x75F5D000      F:\WINDOWS\system32\appHelp.dll
    0x76FD0000 - 0x77048000      F:\WINDOWS\System32\CLBCATQ.DLL
    0x77120000 - 0x771AB000      F:\WINDOWS\system32\OLEAUT32.dll
    0x77050000 - 0x77115000      F:\WINDOWS\System32\COMRes.dll
    0x77C00000 - 0x77C07000      F:\WINDOWS\system32\VERSION.dll
    0x76200000 - 0x76297000      F:\WINDOWS\system32\WININET.dll
    0x762C0000 - 0x7634A000      F:\WINDOWS\system32\CRYPT32.dll
    0x762A0000 - 0x762AF000      F:\WINDOWS\system32\MSASN1.dll
    0x76F90000 - 0x76FA0000      F:\WINDOWS\System32\Secur32.dll
    0x76620000 - 0x7666E000      F:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661B000      F:\WINDOWS\System32\CSCDLL.dll
    0x76670000 - 0x76754000      F:\WINDOWS\System32\SETUPAPI.dll
    0x760F0000 - 0x76168000      F:\WINDOWS\system32\urlmon.dll
    0x76170000 - 0x761F8000      F:\WINDOWS\System32\shdoclc.dll
    0x74770000 - 0x747FF000      F:\WINDOWS\System32\mlang.dll
    0x71AD0000 - 0x71AD8000      F:\WINDOWS\System32\wsock32.dll
    0x71AB0000 - 0x71AC5000      F:\WINDOWS\System32\WS2_32.dll
    0x71AA0000 - 0x71AA8000      F:\WINDOWS\System32\WS2HELP.dll
    0x71A50000 - 0x71A8B000      F:\WINDOWS\system32\mswsock.dll
    0x71A90000 - 0x71A98000      F:\WINDOWS\System32\wshtcpip.dll
    0x76EE0000 - 0x76F17000      F:\WINDOWS\System32\RASAPI32.DLL
    0x76E90000 - 0x76EA1000      F:\WINDOWS\System32\rasman.dll
    0x71C20000 - 0x71C6F000      F:\WINDOWS\System32\NETAPI32.dll
    0x76EB0000 - 0x76EDA000      F:\WINDOWS\System32\TAPI32.dll
    0x76E80000 - 0x76E8D000      F:\WINDOWS\System32\rtutils.dll
    0x76B40000 - 0x76B6C000      F:\WINDOWS\System32\WINMM.dll
    0x5CD70000 - 0x5CD77000      F:\WINDOWS\System32\serwvdrv.dll
    0x5B0A0000 - 0x5B0A7000      F:\WINDOWS\System32\umdmxfrm.dll
    0x722B0000 - 0x722B5000      F:\WINDOWS\System32\sensapi.dll
    0x75A70000 - 0x75B13000      F:\WINDOWS\system32\USERENV.dll
    0x75E90000 - 0x75F31000      F:\WINDOWS\System32\SXS.DLL
    0x76F20000 - 0x76F45000      F:\WINDOWS\System32\DNSAPI.dll
    0x76FB0000 - 0x76FB7000      F:\WINDOWS\System32\winrnr.dll
    0x76F60000 - 0x76F8C000      F:\WINDOWS\system32\WLDAP32.dll
    0x605D0000 - 0x605DF000      F:\WINDOWS\System32\mslbui.dll
    0x76FC0000 - 0x76FC5000      F:\WINDOWS\System32\rasadhlp.dll
    0x76D60000 - 0x76D75000      F:\WINDOWS\System32\iphlpapi.dll
    0x76DE0000 - 0x76E06000      F:\WINDOWS\System32\netman.dll
    0x76D40000 - 0x76D56000      F:\WINDOWS\System32\MPRAPI.dll
    0x76E40000 - 0x76E6F000      F:\WINDOWS\System32\ACTIVEDS.dll
    0x76E10000 - 0x76E34000      F:\WINDOWS\System32\adsldpc.dll
    0x76B20000 - 0x76B35000      F:\WINDOWS\System32\ATL.DLL
    0x71BF0000 - 0x71C01000      F:\WINDOWS\System32\SAMLIB.dll
    0x76DA0000 - 0x76DD0000      F:\WINDOWS\System32\WZCSvc.DLL
    0x76D30000 - 0x76D34000      F:\WINDOWS\System32\WMI.dll
    0x76D80000 - 0x76D9A000      F:\WINDOWS\System32\DHCPCSVC.DLL
    0x76F50000 - 0x76F58000      F:\WINDOWS\System32\WTSAPI32.dll
    0x76360000 - 0x7636F000      F:\WINDOWS\System32\WINSTA.dll
    0x74810000 - 0x74ABD000      F:\WINDOWS\System32\mshtml.dll
    0x513E0000 - 0x5140D000      F:\Program Files\Common Files\Microsoft Shared\VS7Debug\pdm.dll
    0x51300000 - 0x51328000      F:\Program Files\Common Files\Microsoft Shared\VS7Debug\msdbg2.dll
    0x746F0000 - 0x74719000      F:\WINDOWS\System32\msimtf.dll
    0x5C2C0000 - 0x5C303000      F:\WINDOWS\ime\sptip.dll
    0x76400000 - 0x765FB000      F:\WINDOWS\System32\msi.dll
    0x10000000 - 0x1005B000      F:\Program Files\Common Files\Microsoft Shared\Ink\SKCHUI.DLL
    0x32520000 - 0x32532000      F:\Program Files\Microsoft Office\Office10\msohev.dll
    0x75C50000 - 0x75CE1000      F:\WINDOWS\System32\jscript.dll
    0x746C0000 - 0x746E7000      F:\WINDOWS\System32\MSLS31.DLL
    0x74CB0000 - 0x74D1F000      F:\WINDOWS\System32\mshtmled.dll
    0x72D20000 - 0x72D29000      F:\WINDOWS\System32\wdmaud.drv
    0x72D10000 - 0x72D18000      F:\WINDOWS\System32\msacm32.drv
    0x77BE0000 - 0x77BF4000      F:\WINDOWS\System32\MSACM32.dll
    0x77BD0000 - 0x77BD7000      F:\WINDOWS\System32\midimap.dll
    0x73300000 - 0x73375000      F:\WINDOWS\System32\vbscript.dll
    0x58510000 - 0x58575000      F:\WINDOWS\System32\macromed\flash\swflash.ocx
    0x763B0000 - 0x763F5000      F:\WINDOWS\system32\comdlg32.dll
    0x6D430000 - 0x6D439000      F:\WINDOWS\System32\ddrawex.dll
    0x73760000 - 0x737A5000      F:\WINDOWS\System32\DDRAW.dll
    0x73BC0000 - 0x73BC6000      F:\WINDOWS\System32\DCIMAN32.dll
    0x71D40000 - 0x71D5B000      F:\WINDOWS\System32\actxprxy.dll
    0x6CC60000 - 0x6CC6B000      F:\WINDOWS\System32\dispex.dll
    0x72B20000 - 0x72B38000      F:\WINDOWS\System32\plugin.ocx
    0x72E00000 - 0x72F14000      F:\WINDOWS\System32\msxml3.dll
    0x5FE20000 - 0x5FE9E000      F:\WINDOWS\System32\mstime.dll
    0x66880000 - 0x6688A000      F:\WINDOWS\System32\imgutil.dll
    0x66E50000 - 0x66E8B000      F:\WINDOWS\System32\iepeers.dll
    0x73000000 - 0x73023000      F:\WINDOWS\System32\WINSPOOL.DRV
    0x05B50000 - 0x05B65000      F:\Program Files\Java\j2re1.4.0_01\bin\npjpi140_01.dll
    0x05B70000 - 0x05B8C000      F:\Program Files\Java\j2re1.4.0_01\bin\beans.ocx
    0x05B90000 - 0x05BA5000      F:\Program Files\Java\j2re1.4.0_01\bin\jpishare.dll
    0x07B00000 - 0x07C15000      F:\PROGRA~1\Java\J2RE14~1.0_0\bin\client\jvm.dll
    0x6D1D0000 - 0x6D1D7000      F:\PROGRA~1\Java\J2RE14~1.0_0\bin\hpi.dll
    0x6D300000 - 0x6D30D000      F:\PROGRA~1\Java\J2RE14~1.0_0\bin\verify.dll
    0x6D210000 - 0x6D228000      F:\PROGRA~1\Java\J2RE14~1.0_0\bin\java.dll
    0x6D320000 - 0x6D32D000      F:\PROGRA~1\Java\J2RE14~1.0_0\bin\zip.dll
    0x6D000000 - 0x6D0F6000      F:\Program Files\Java\j2re1.4.0_01\bin\awt.dll
    0x76390000 - 0x763AA000      F:\WINDOWS\System32\IMM32.dll
    0x6D180000 - 0x6D1D0000      F:\Program Files\Java\j2re1.4.0_01\bin\fontmanager.dll
    0x6D2D0000 - 0x6D2DD000      F:\Program Files\Java\j2re1.4.0_01\bin\net.dll
    0x6D130000 - 0x6D152000      F:\Program Files\Java\j2re1.4.0_01\bin\dcpr.dll
    0x05BB0000 - 0x05BBA000      F:\Program Files\Java\j2re1.4.0_01\bin\packager.dll
    0x5FF50000 - 0x5FF61000      F:\WINDOWS\System32\msratelc.dll
    0x0EE30000 - 0x0EE63000      F:\WINDOWS\System32\spool\DRIVERS\W32X86\3\UNIDRVUI.DLL
    0x07450000 - 0x0747B000      F:\WINDOWS\System32\spool\DRIVERS\W32X86\3\UNIDRV.DLL
    0x71B20000 - 0x71B31000      F:\WINDOWS\system32\MPR.dll
    0x75F60000 - 0x75F66000      F:\WINDOWS\System32\drprov.dll
    0x71C10000 - 0x71C1D000      F:\WINDOWS\System32\ntlanman.dll
    0x71CD0000 - 0x71CE6000      F:\WINDOWS\System32\NETUI0.dll
    0x71C90000 - 0x71CCC000      F:\WINDOWS\System32\NETUI1.dll
    0x71C80000 - 0x71C86000      F:\WINDOWS\System32\NETRAP.dll
    0x75F70000 - 0x75F79000      F:\WINDOWS\System32\davclnt.dll
    0x75970000 - 0x75A61000      F:\WINDOWS\System32\MSGINA.dll
    0x1F7B0000 - 0x1F7E1000      F:\WINDOWS\System32\ODBC32.dll
    0x1F850000 - 0x1F866000      F:\WINDOWS\System32\odbcint.dll
    0x76C30000 - 0x76C5B000      F:\WINDOWS\System32\wintrust.dll
    0x76C90000 - 0x76CB2000      F:\WINDOWS\system32\IMAGEHLP.dll
    0x767F0000 - 0x76814000      F:\WINDOWS\System32\schannel.dll
    0x0FFD0000 - 0x0FFF2000      F:\WINDOWS\System32\rsaenh.dll
    0x0FFA0000 - 0x0FFC1000      F:\WINDOWS\System32\dssenh.dll
    0x73D50000 - 0x73D60000      F:\WINDOWS\System32\cryptnet.dll
    0x75150000 - 0x75163000      F:\WINDOWS\System32\Cabinet.dll
    0x76C00000 - 0x76C2D000      F:\WINDOWS\System32\credui.dll
    0x5E0C0000 - 0x5E0CC000      F:\WINDOWS\System32\pstorec.dll
    0x76990000 - 0x769B4000      F:\WINDOWS\System32\ntshrui.dll
    0x61580000 - 0x615B0000      F:\WINDOWS\System32\rmoc3260.dll
    0x78000000 - 0x78048000      F:\WINDOWS\System32\PNCRT.dll
    0x5FF20000 - 0x5FF43000      F:\WINDOWS\System32\MSRATING.DLL
    0x60850000 - 0x6088D000      F:\WINDOWS\System32\msieftp.dll
    0x6BDD0000 - 0x6BE03000      F:\WINDOWS\System32\dxtrans.dll
    0x732E0000 - 0x732E5000      F:\WINDOWS\System32\RICHED32.DLL
    0x74E30000 - 0x74E9B000      F:\WINDOWS\System32\RICHED20.dll
    0x6D510000 - 0x6D58C000      F:\WINDOWS\system32\DBGHELP.dll
    0x76BF0000 - 0x76BFB000      F:\WINDOWS\System32\PSAPI.DLL
    Local Time = Tue Jul 30 03:00:10 2002
    Elapsed Time = 16075
    # 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)

    im getting similar:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : unknown exception code occurred at PC=0x77E6D756
    Function=RaiseException+0x50
    Library=C:\WINDOWS\system32\kernel32.dll
    Current Java thread:
         at sun.plugin.javascript.ocx.JSObject.nativeInvoke(Native Method)
         at sun.plugin.javascript.ocx.JSObject.invoke(Unknown Source)
         - locked <072CC118> (a sun.plugin.javascript.ocx.JSObject)
         at sun.plugin.javascript.ocx.JSObject.getMember(Unknown Source)
         at sun.plugin.javascript.ocx.JSObject.eval(Unknown Source)
         at ServerConnectionTimer.jsCall(ServerConnectionTimer.java:61)
         at ServerConnectionTimer.run(ServerConnectionTimer.java:46)
         at java.lang.Thread.run(Unknown Source)
    Dynamic libraries:
    0x00400000 - 0x00419000      C:\Program Files\Internet Explorer\IEXPLORE.EXE
    0x77F50000 - 0x77FF9000      C:\WINDOWS\System32\ntdll.dll
    0x77E60000 - 0x77F45000      C:\WINDOWS\system32\kernel32.dll
    0x77C10000 - 0x77C63000      C:\WINDOWS\system32\msvcrt.dll
    0x77D40000 - 0x77DCD000      C:\WINDOWS\system32\USER32.dll
    0x77C70000 - 0x77CB0000      C:\WINDOWS\system32\GDI32.dll
    0x77DD0000 - 0x77E5B000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77CC0000 - 0x77D35000      C:\WINDOWS\system32\RPCRT4.dll
    0x772D0000 - 0x77333000      C:\WINDOWS\system32\SHLWAPI.dll
    0x71700000 - 0x71848000      C:\WINDOWS\System32\SHDOCVW.dll
    0x629C0000 - 0x629C8000      C:\WINDOWS\System32\LPK.DLL
    0x72FA0000 - 0x72FFA000      C:\WINDOWS\System32\USP10.dll
    0x71950000 - 0x71A34000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.0.0_x-ww_1382d70a\comctl32.dll
    0x773D0000 - 0x77BC4000      C:\WINDOWS\system32\SHELL32.dll
    0x77340000 - 0x773CB000      C:\WINDOWS\system32\comctl32.dll
    0x771B0000 - 0x772CA000      C:\WINDOWS\system32\ole32.dll
    0x5AD70000 - 0x5ADA4000      C:\WINDOWS\system32\uxtheme.dll
    0x10000000 - 0x10006000      C:\DOCUME~1\MONTED~1\LOCALS~1\Temp\IadHide3.dll
    0x75F80000 - 0x7607C000      C:\WINDOWS\System32\BROWSEUI.dll
    0x72430000 - 0x72442000      C:\WINDOWS\System32\browselc.dll
    0x75F40000 - 0x75F5D000      C:\WINDOWS\system32\appHelp.dll
    0x76FD0000 - 0x77048000      C:\WINDOWS\System32\CLBCATQ.DLL
    0x77120000 - 0x771AB000      C:\WINDOWS\system32\OLEAUT32.dll
    0x77050000 - 0x77115000      C:\WINDOWS\System32\COMRes.dll
    0x77C00000 - 0x77C07000      C:\WINDOWS\system32\VERSION.dll
    0x63000000 - 0x63094000      C:\WINDOWS\system32\WININET.dll
    0x762C0000 - 0x7634A000      C:\WINDOWS\system32\CRYPT32.dll
    0x762A0000 - 0x762AF000      C:\WINDOWS\system32\MSASN1.dll
    0x76F90000 - 0x76FA0000      C:\WINDOWS\System32\Secur32.dll
    0x76620000 - 0x7666E000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661B000      C:\WINDOWS\System32\CSCDLL.dll
    0x76670000 - 0x76754000      C:\WINDOWS\System32\SETUPAPI.dll
    0x1A400000 - 0x1A479000      C:\WINDOWS\system32\urlmon.dll
    0x00E50000 - 0x00ED8000      C:\WINDOWS\System32\shdoclc.dll
    0x74770000 - 0x747FF000      C:\WINDOWS\System32\mlang.dll
    0x71AD0000 - 0x71AD8000      C:\WINDOWS\System32\wsock32.dll
    0x71AB0000 - 0x71AC5000      C:\WINDOWS\System32\WS2_32.dll
    0x71AA0000 - 0x71AA8000      C:\WINDOWS\System32\WS2HELP.dll
    0x71A50000 - 0x71A8B000      C:\WINDOWS\system32\mswsock.dll
    0x71A90000 - 0x71A98000      C:\WINDOWS\System32\wshtcpip.dll
    0x00DE0000 - 0x00E19000      C:\WINDOWS\System32\RASAPI32.DLL
    0x76E90000 - 0x76EA1000      C:\WINDOWS\System32\rasman.dll
    0x71C20000 - 0x71C6F000      C:\WINDOWS\System32\NETAPI32.dll
    0x76EB0000 - 0x76EDA000      C:\WINDOWS\System32\TAPI32.dll
    0x76E80000 - 0x76E8D000      C:\WINDOWS\System32\rtutils.dll
    0x76B40000 - 0x76B6C000      C:\WINDOWS\System32\WINMM.dll
    0x76400000 - 0x765FB000      C:\WINDOWS\System32\msi.dll
    0x75A70000 - 0x75B13000      C:\WINDOWS\system32\USERENV.dll
    0x75E90000 - 0x75F31000      C:\WINDOWS\System32\SXS.DLL
    0x0FFD0000 - 0x0FFF2000      C:\WINDOWS\System32\rsaenh.dll
    0x76F20000 - 0x76F45000      C:\WINDOWS\System32\DNSAPI.dll
    0x76FB0000 - 0x76FB7000      C:\WINDOWS\System32\winrnr.dll
    0x76F60000 - 0x76F8C000      C:\WINDOWS\system32\WLDAP32.dll
    0x722B0000 - 0x722B5000      C:\WINDOWS\System32\sensapi.dll
    0x76FC0000 - 0x76FC5000      C:\WINDOWS\System32\rasadhlp.dll
    0x63580000 - 0x63825000      C:\WINDOWS\System32\mshtml.dll
    0x746F0000 - 0x74719000      C:\WINDOWS\System32\msimtf.dll
    0x60000000 - 0x6004C000      C:\WINDOWS\System32\MSCTF.dll
    0x76390000 - 0x763AA000      C:\WINDOWS\System32\IMM32.DLL
    0x75C50000 - 0x75CE1000      C:\WINDOWS\System32\jscript.dll
    0x66E50000 - 0x66E8B000      C:\WINDOWS\System32\iepeers.dll
    0x73000000 - 0x73023000      C:\WINDOWS\System32\WINSPOOL.DRV
    0x746C0000 - 0x746E7000      C:\WINDOWS\System32\MSLS31.DLL
    0x74CB0000 - 0x74D1F000      C:\WINDOWS\System32\mshtmled.dll
    0x72D20000 - 0x72D29000      C:\WINDOWS\System32\wdmaud.drv
    0x72D10000 - 0x72D18000      C:\WINDOWS\System32\msacm32.drv
    0x77BE0000 - 0x77BF4000      C:\WINDOWS\System32\MSACM32.dll
    0x77BD0000 - 0x77BD7000      C:\WINDOWS\System32\midimap.dll
    0x71D40000 - 0x71D5B000      C:\WINDOWS\System32\ACTXPRXY.DLL
    0x66880000 - 0x6688A000      C:\WINDOWS\System32\imgutil.dll
    0x6B600000 - 0x6B671000      C:\WINDOWS\System32\vbscript.dll
    0x58510000 - 0x58575000      C:\WINDOWS\System32\macromed\flash\swflash.ocx
    0x763B0000 - 0x763F5000      C:\WINDOWS\system32\comdlg32.dll
    0x6D430000 - 0x6D439000      C:\WINDOWS\System32\ddrawex.dll
    0x73760000 - 0x737A5000      C:\WINDOWS\System32\DDRAW.dll
    0x73BC0000 - 0x73BC6000      C:\WINDOWS\System32\DCIMAN32.dll
    0x01E90000 - 0x01EA5000      C:\Program Files\Java\j2re1.4.0\bin\npjpi140.dll
    0x033E0000 - 0x033FC000      C:\Program Files\Java\j2re1.4.0\bin\beans.ocx
    0x036D0000 - 0x036E5000      C:\Program Files\Java\j2re1.4.0\bin\jpishare.dll
    0x03CD0000 - 0x03DE2000      C:\PROGRA~1\Java\J2RE14~1.0\bin\client\jvm.dll
    0x6D1D0000 - 0x6D1D7000      C:\PROGRA~1\Java\J2RE14~1.0\bin\hpi.dll
    0x6D300000 - 0x6D30D000      C:\PROGRA~1\Java\J2RE14~1.0\bin\verify.dll
    0x6D210000 - 0x6D228000      C:\PROGRA~1\Java\J2RE14~1.0\bin\java.dll
    0x6D320000 - 0x6D32D000      C:\PROGRA~1\Java\J2RE14~1.0\bin\zip.dll
    0x6D000000 - 0x6D0F6000      C:\Program Files\Java\j2re1.4.0\bin\awt.dll
    0x6D180000 - 0x6D1D0000      C:\Program Files\Java\j2re1.4.0\bin\fontmanager.dll
    0x69500000 - 0x6981E000      C:\WINDOWS\System32\nvoglnt.dll
    0x6D2D0000 - 0x6D2DD000      C:\Program Files\Java\j2re1.4.0\bin\net.dll
    0x6D130000 - 0x6D152000      C:\Program Files\Java\j2re1.4.0\bin\dcpr.dll
    0x03F60000 - 0x03F6A000      C:\Program Files\Java\j2re1.4.0\bin\packager.dll
    0x6D280000 - 0x6D29E000      C:\Program Files\Java\j2re1.4.0\bin\jpeg.dll
    0x732E0000 - 0x732E5000      C:\WINDOWS\System32\RICHED32.DLL
    0x74E30000 - 0x74E9B000      C:\WINDOWS\System32\RICHED20.dll
    0x6D2A0000 - 0x6D2C1000      C:\Program Files\Java\j2re1.4.0\bin\jsound.dll
    0x76C90000 - 0x76CB2000      C:\WINDOWS\system32\imagehlp.dll
    0x6D510000 - 0x6D58C000      C:\WINDOWS\system32\DBGHELP.dll
    0x76BF0000 - 0x76BFB000      C:\WINDOWS\System32\PSAPI.DLL
    Local Time = Thu Aug 29 22:41:50 2002
    Elapsed Time = 727
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.0-b92 mixed mode)

  • Exception thrown by servlet Faces Servlet in WAS ND 6.1.0.13

    Hi,<br>
    I'm using WebSphere Application Server Network Deployment (WAS ND) v. 6.1.0.13.<br><br>
    I'm getting this error when I try to launch my application:<br><br>
    [1/24/08 11:41:44:100 WET] 0000003c ServletWrappe E SRVE0100E: Did not realize init() exception thrown by servlet Faces Servlet: java.lang.NullPointerException<br>
    at javax.faces.webapp.FacesServlet.init(FacesServlet.java:144)<br>
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.init(ServletWrapper.java:190)<br>
    at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.init(ServletWrapper.java:317)<br>
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:346)<br>
    at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:464)<br>
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3276)<br>
    at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:267)<br>
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:811)<br>
    at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1455)<br>
    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:113)<br>
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:454)<br>
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:383)<br>
    at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)<br>
    at com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCallback.complete(SSLReadServiceContext.java:1818)<br>
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:556)<br>
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:606)<br>
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:979)<br>
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1064)<br>
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1469)<br>
    <br><br><br>
    After doing a search I tried this following steps:<br>
    � Delete the entry in web.xml:<br>
    <listener><br>
    <listener-class><br>
    com.sun.faces.config.ConfigureListener<br>
    </listener-class><br>
    </listener><br><br>
    � Update my log4j version<br><br>
    � Delete the commons-logging.jar from WEB-INF directory<br>
    These are the jar files included in WEB-INF directory:<br>
    commons-beanutils.jar<br>
    commons-collections.jar<br>
    commons-digester.jar<br>
    commons-javaflow-20060411.jar<br>
    commons-logging.jar<br>
    FglConnectorClient.jar<br>
    itext-1.4.2.jar<br>
    jasperreports-1.2.3.jar<br>
    jcommon-1.0.0.jar<br>
    jfreechart-1.0.1.jar<br>
    jsf-api.jar<br>
    jsf-ibm.jar<br>
    jsf-impl.jar<br>
    jstl.jar<br>
    log4j-1.2.14.jar<br>
    standard.jar<br>
    struts.jar<br>
    <br><br>
    <br>
    None of the suggestions worked.<br><br>
    Then I tried to deploy my application in another WAS ND 6.1.0.13 and it worked!!! <br>
    What can I do so solve this problem in my WAS ND 6.1.0.13? What could be the problem?<br><br>
    Thanks,<br>
    Nuno

    Did you find a solution to this problem
    please help
    Thanks & Regards
    Nasir

  • 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.

Maybe you are looking for

  • Communication problem with printer when using Parallels

    OK, apologies if this has been asked elsewhere but I've been trawling the forum for an hour and have yet to find the exact problem that I'm having! First of all, I'm a recent convert to Mac (hurrah I hear you all cry), secondly, I've set up Parallels

  • PISUPER not able to create business systems

    Dear All, I am trying to create business systems in ID using PISUPER by importing from SLD. However, I keep getting a warning message saying 'Insufficient authorisation to create communication component'. I check for all the required roles for PISUPE

  • Mail not saving IAMP preferences for Gmail

    Dear All, I'm using iMail to access my Gmail account through IMAP. The settings should be very particular to get IMAP to function transparently. When I set those settings in iMail preference it is working until ... the next time I launch iMail ... as

  • What SCSI card with DELL PV110T 200GB LTO2 LC External tape and XServe G5?

    XServe G5 - Upgrading tape station... As is I'm using a DAT station but it is starting to misbehave so I would like to replace it with the DELL PV110T 200GB LTO2 LC External station. As is I´m using the ATTO, ExpressPCIProUL4D card. Can I continue to

  • Storage location extenstion

    Is it possible that the storage location is automatically extended as soon as we create the material code. Else, is it possible that will creating stock transfer order using me27. system should not allow users to create the STO unless the storage loc