JDBC connection fails with "java.rmi.NoSuchObjectException" message

When connecting a JDBC client to a FireSIGHT Management Center, the following error message appears:
SEVERE: java.rmi.NoSuchObjectException
        at java.net.PlainSocketImpl.socketConnect(Native Method)
        at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339)
        at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200)
        at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182)
        at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391)
        at java.net.Socket.connect(Socket.java:579)
        at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:618)
        at sun.security.ssl.SSLSocketImpl.<init>(SSLSocketImpl.java:407)
        at sun.security.ssl.SSLSocketFactoryImpl.createSocket(SSLSocketFactoryImpl.java:88)
        at InstallCert.main(InstallCert.java:81)

Cause
Without the Server Hostname field filled in, a FireSIGHT Management Center (also known as Defense Center) tells the JDBC client that it has an address of localhost, or 127.0.0.1, which causes the connection to fail.
Solution
Step 1: Log in to your FireSIGHT Management Center where the JDBC is trying to connect to.
Step 2: Navigate to System > Local > Configuration.
Step 3: When the page loads, select Database on the left pane.
Step 4: Ensure that the Server Hostname field is filled out with the Fully Qualified Domain Name, or the IP address of the FireSIGHT Management Center.

Similar Messages

  • Connecting to remote server failed with the following error message : Access is denied. For more information, see the about_Remote_Troubleshooting Help topic. It was running the command 'Discover-ExchangeServer -UseWIA $true -SuppressError $true -CurrentV

    I installed Exchange Server 2010 inside my VMWare Windows Server 2008 Ent R2. And After successful installation  when I try to open my Exchange Server Console, I am getting the following error message. I am very new to Exchange server please help me
    to solve this problem.
    Initialization Failed
    The following error occurred while searching for the on-premises Exchange server:
    [win-.local] Connecting to remote server failed with the following error message : Access is denied. For more information, see the about_Remote_Troubleshooting Help topic. It was running the command 'Discover-ExchangeServer -UseWIA $true -SuppressError
    $true -CurrentVersion 'Version 14.1 (Build 218.15)''.
    Thanks Vivek
    SharePoint Foundation 2010 Book
    http://www.redpipit.com

    Hi,
    Please have a look at the article below:
    Troubleshooting Exchange 2010 Management Tools startup issues
    http://blogs.technet.com/b/exchange/archive/2010/02/04/3409289.aspx
    Resolving WinRM errors and Exchange 2010 Management tools startup failures
    http://blogs.technet.com/b/exchange/archive/2010/12/07/3411644.aspx
    Besides, please run the cmdlet below:
     set-user alias -remotepowershellenabled$true
    Xiu Zhang
    TechNet Community Support

  • Java.rmi.NoSuchObjectException problems

    Hello,
    After calling home.create() in my code, passing in primary key and
    additional column data, when I call home.findByPrimaryKey (primkey)
    followed by a call to one of the methods in the bean, I immediately get
    a a java.rmi.NoSuchObjectException.
    An exception is not thrown when calling home.findByPrimaryKey (primkey)
    so it is safe to assume that a reference has been obtained to the bean
    with the data I am looking for, correct? If so, why am I getting this
    exception:
    java.rmi.NoSuchObjectException: Bean with primary key: 'Pat Hardy' not
    found in
    home: 'Student'
    at
    weblogic.ejb.internal.EntityEJBContext.load(EntityEJBContext.java:153
    at
    weblogic.ejb.internal.EntityEJBContext.afterBegin(EntityEJBContext.ja
    va:212)
    at
    weblogic.ejb.internal.StatefulEJBObject.getContextForInvoke(StatefulE
    JBObject.java:162)
    etc.
    etc.
    etc.
    Any ideas of what I might be doing wrong?
    Thanks for your help in advance.

    We had a similar problem, although I don't know if it was the same
    thing. We are using WL 5.1, sp5, with Oracle 8.1.6.
    I have a stateless session bean, which had a transactional attribute
    of 'Supports'. It would call an entity bean with transactional attribute
    of 'RequiresNew' for all methods. The session bean would do a finder
    on the entity bean, and if it got an ObjectNotFoundException, it would
    then create the entity bean with a call to home.create(id). Then, it would
    call a business method on the entity bean.
    For some reason, in the case where the session bean is called from within
    a thread that already had a transaction started, the call to the entity
    bean business method would hang, if an only if it had to create a new
    bean first. If the finder of the bean succeeded, there would be no hang.
    Sometimes, instead of hanging, it would return a NoSuchObjectException.
    If the stateless bean were called outside of a transaction, would always
    succeed, regardless.
    So, my fix, was to set the transactional attribute for the stateless bean to
    'NotSupported' for all methods. It now seems to work in all cases,
    no more hangs or NoSuchObjectExceptions....
    Is this expected behavior? Is this related to the same problem?
    The BEA recomendations to use READ-COMMITTED are useless for
    the case where you are running a clustered environment, and where you
    need to have the bean deployed on all servers in the cluster for
    fail-over reliability.....
    Jason
    "Korey Shronts" <[email protected]> wrote in message
    news:[email protected]...
    I dont' know about the mapping to CHAR but we've managed to fix our nosuch
    object problem.
    BEA sent me this snippet:
    The bug is as follows
    In Oracle (8.0.5), if there is a primary key constraint AND you use an
    isolation
    level of SERIALIZABLE, an insert followed by an update in the same
    transaction
    fails. Specifically, the insert succeeds (to all outward indications),
    but the update fails (the returned count is 0) after some number of
    iterations.
    What's the workaround? If the customer is not sharing the database with
    any
    other app or running it under a cluster, tell them to set the isolation
    level to
    read_committed. Serializable only slows them down without any added
    benefit.
    If clustering is on, and serializable behavior is deemed essential for
    this
    particular bean, maybe they can deploy the bean on only one of the
    servers
    to reduce it to the case above.
    I set the isolation level on our beans to read_commited. Fixed theproblem
    although we're using Oracle 8i not 8.0.5.
    <[email protected]> wrote in message
    news:[email protected]...
    Well, it appears, that you cannot map a java.lang.String to a CHAR inOracle.
    A java.lang.String can be mapped to a VARCHAR2.
    Is this a bug?
    [email protected] wrote:
    I just install WebLogic server 5.1.0 and SP5 on a new machine.
    Still have the same problems.
    Will keep you posted.
    Korey Shronts wrote:
    We're having the same problem. I've opened a case with BEA but
    haven't
    heard anything yet. If you find the solution let me know!
    [email protected]
    <[email protected]> wrote in message
    news:[email protected]...
    I accidently omitted the first line in the exception. Sorry aboutthat.
    Here it is again from the beginning:
    Thu Sep 21 08:52:12 EDT 2000:<I> <EJB JAR deploymentC:/wlogic/lib/S.jar>
    Transa
    ction: '969540638993_1' rolled back due to EJB exception:
    java.rmi.NoSuchObjectException: Bean with primary key: 'Pat Hardy'not
    found in
    home: 'Student'
    at
    weblogic.ejb.internal.EntityEJBContext.load(EntityEJBContext.java:153
    at
    weblogic.ejb.internal.EntityEJBContext.afterBegin(EntityEJBContext.ja
    va:212)
    at
    weblogic.ejb.internal.StatefulEJBObject.getContextForInvoke(StatefulE
    JBObject.java:162)
    etc.
    etc.
    etc.
    Any ideas of what I might be doing wrong?
    Thanks for your help in advance.
    [email protected] wrote:
    Hello,
    After calling home.create() in my code, passing in primary key
    and
    additional column data, when I call home.findByPrimaryKey(primkey)
    followed by a call to one of the methods in the bean, Iimmediately get
    a a java.rmi.NoSuchObjectException.
    An exception is not thrown when calling home.findByPrimaryKey(primkey)
    so it is safe to assume that a reference has been obtained to
    the
    bean
    with the data I am looking for, correct? If so, why am I gettingthis
    exception:
    java.rmi.NoSuchObjectException: Bean with primary key: 'Pat
    Hardy'
    not
    found in
    home: 'Student'
    at
    weblogic.ejb.internal.EntityEJBContext.load(EntityEJBContext.java:153
    at
    weblogic.ejb.internal.EntityEJBContext.afterBegin(EntityEJBContext.ja
    va:212)
    at
    weblogic.ejb.internal.StatefulEJBObject.getContextForInvoke(StatefulE
    JBObject.java:162)
    etc.
    etc.
    etc.
    Any ideas of what I might be doing wrong?
    Thanks for your help in advance.

  • Java.rmi.NoSuchObjectException: RemoteInvokable

    What's the deal on this error... is it related to
              <Server
              DGCIdlePeriodsUntilTimeout=10
              />
              or is it something else ?
              Start server side stack trace:
              java.rmi.NoSuchObjectException: RemoteInvokable - id: '744'
              at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java:609)
              at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:581)
              at weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerServer.java:164)
              at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:640)
              at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:454)
              at weblogic.socket.PosixSocketMuxer.deliverGoodNews(PosixSocketMuxer.java:456)
              at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:385)
              at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              End server side stack trace
              <<no stack trace available>>
              

    Hi ,
              I use Weblogic 8.1 with SP5 as the server. But I have a java client which is on Weblogic 6.1 and JDK131 .This happens intermittently when there is a callback to Java client.
              The complete message.
              2006-05-19 15:29:46,860 | ExecuteThread: '49' for queue: 'default' | [FATAL] | com.onstar.vehcomm.legacy.notification.LegacyResponse
              Notifier | - Client callback failed RemoteInvokable - id: '257'
              Start server side stack trace:
              java.rmi.NoSuchObjectException: RemoteInvokable - id: '257'^M
              at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java:698)^M
              at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:666)^M
              at weblogic.rjvm.ConnectionManagerClient.handleRJVM(ConnectionManagerClient.java:42)^M
              at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:738)^M
              at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:453)^M
              at weblogic.socket.JavaSocketMuxer.processSockets2(JavaSocketMuxer.java:319)^M
              at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:233)^M
              at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)^M
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)^M
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)^M
              End server side stack trace
              java.rmi.NoSuchObjectException: RemoteInvokable - id: '257'
              Start server side stack trace:
              java.rmi.NoSuchObjectException: RemoteInvokable - id: '257'^M
              at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java:698)^M
              at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:666)^M
              at weblogic.rjvm.ConnectionManagerClient.handleRJVM(ConnectionManagerClient.java:42)^M
              at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:738)^M
              at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:453)^M
              at weblogic.socket.JavaSocketMuxer.processSockets2(JavaSocketMuxer.java:319)^M
              at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:233)^M
              at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)^M
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)^M
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)^M
              End server side stack trace
              at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
              at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:164)
              at com.onstar.vehcomm.vehcommservices.IVehCommProxyReference_WLStub.handleResponse(Unknown Source)
              at com.onstar.vehcomm.legacy.notification.LegacyResponseNotifier.handleResponse(LegacyResponseNotifier.java:202)
              at com.onstar.vehcomm.enterprise.response.ResponseManager.handleResponse(ResponseManager.java:124)
              at com.onstar.vehcomm.workloadmgmt.VehicleWorkloadManagerBean.submitCallbackRequest(VehicleWorkloadManagerBean.java:1145)
              at com.onstar.vehcomm.workloadmgmt.VehicleWorkloadManagerBean.checkForCallbackReady(VehicleWorkloadManagerBean.java:1055)
              at com.onstar.vehcomm.workloadmgmt.VehicleWorkloadManagerBean.handleResponse(VehicleWorkloadManagerBean.java:775)
              at com.onstar.vehcomm.workloadmgmt.VehicleWorkloadManagerEJB_sya9l9_ELOImpl.handleResponse(VehicleWorkloadManagerEJB_sya9l9_
              ELOImpl.java:341)
              at com.onstar.vehcomm.commserverresponse.ServiceResponseMessageHandlerBean.onMessage(ServiceResponseMessageHandlerBean.java:
              52)
              at weblogic.ejb20.internal.MDListener.execute(MDListener.java:400)
              at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:333)
              at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:298)
              at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2686)
              at weblogic.jms.client.JMSSession.execute(JMSSession.java:2598)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
              at weblogic.kernel.Kernel.execute(Kernel.java:343)
              at weblogic.kernel.Kernel.execute(Kernel.java:367)
              at weblogic.kernel.Kernel.execute(Kernel.java:355)
              at weblogic.jms.client.JMSSession.pushMessage(JMSSession.java:2474)
              at weblogic.jms.client.JMSSession.invoke(JMSSession.java:3017)
              at weblogic.jms.dispatcher.Request.wrappedFiniteStateMachine(Request.java:643)
              at weblogic.jms.dispatcher.DispatcherImpl.dispatchAsyncInternal(DispatcherImpl.java:132)
              at weblogic.jms.dispatcher.DispatcherImpl.dispatchOneWay(DispatcherImpl.java:341)
              at weblogic.jms.dispatcher.DispatcherImpl_WLSkel.invoke(Unknown Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:492)
              at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:435)
              at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
              at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:430)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:35)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
              2006-05-19 15:29:46,861 | ExecuteThread: '49' for queue: 'default' | [ERROR] | com.onstar.vehcomm.legacy.notification.LegacyResponse
              Notifier | - AVAILABILITY EXCEPTION: null is not registered yet.
              com.onstar.vehcomm.availability.CommServerUnavailableException: AVAILABILITY EXCEPTION: null is not registered yet.
              at com.onstar.vehcomm.availability.AvailabilityProcessor.findCommServer(AvailabilityProcessor.java:243)
              at com.onstar.vehcomm.availability.AvailabilityManager.getInfoByCommServer(AvailabilityManager.java:139)
              at com.onstar.vehcomm.legacy.notification.LegacyResponseNotifier.handleResponse(LegacyResponseNotifier.java:225)
              at com.onstar.vehcomm.enterprise.response.ResponseManager.handleResponse(ResponseManager.java:124)
              at com.onstar.vehcomm.workloadmgmt.VehicleWorkloadManagerBean.submitCallbackRequest(VehicleWorkloadManagerBean.java:1145)
              at com.onstar.vehcomm.workloadmgmt.VehicleWorkloadManagerBean.checkForCallbackReady(VehicleWorkloadManagerBean.java:1055)
              at com.onstar.vehcomm.workloadmgmt.VehicleWorkloadManagerBean.handleResponse(VehicleWorkloadManagerBean.java:775)
              at com.onstar.vehcomm.workloadmgmt.VehicleWorkloadManagerEJB_sya9l9_ELOImpl.handleResponse(VehicleWorkloadManagerEJB_sya9l9_
              ELOImpl.java:341)
              at com.onstar.vehcomm.commserverresponse.ServiceResponseMessageHandlerBean.onMessage(ServiceResponseMessageHandlerBean.java:
              52)
              at weblogic.ejb20.internal.MDListener.execute(MDListener.java:400)
              at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:333)
              at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:298)
              at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2686)
              at weblogic.jms.client.JMSSession.execute(JMSSession.java:2598)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
              at weblogic.kernel.Kernel.execute(Kernel.java:343)
              at weblogic.kernel.Kernel.execute(Kernel.java:367)
              at weblogic.kernel.Kernel.execute(Kernel.java:355)
              at weblogic.jms.client.JMSSession.pushMessage(JMSSession.java:2474)
              at weblogic.jms.client.JMSSession.invoke(JMSSession.java:3017)
              at weblogic.jms.dispatcher.Request.wrappedFiniteStateMachine(Request.java:643)
              at weblogic.jms.dispatcher.DispatcherImpl.dispatchAsyncInternal(DispatcherImpl.java:132)
              at weblogic.jms.dispatcher.DispatcherImpl.dispatchOneWay(DispatcherImpl.java:341)
              at weblogic.jms.dispatcher.DispatcherImpl_WLSkel.invoke(Unknown Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:492)
              at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:435)
              at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
              at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:430)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:35)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
              I would appreciate any help on this.
              Thanks,
              Alok

  • File processing failed with java.lang.StringIndexOutOfBoundsException:

    Hi
    I´m reading and sending files to an FTP server using SAP PI. I use file content conversion.
    Everything has been working fine for months - but now the server was changes to a new host. The only thing changed was the host/user and pass.
    But sending too the server fails with this error:
    File processing failed with java.lang.StringIndexOutOfBoundsException: String index out of range: -27
    Any body who has a clue??
    Reading files works ok. And i can transfer files to the FTP server with FileZilla without problems.

    In the file transfer by ftp:
    2011-10-03 17:27:08     Information     Transfer: "BIN" mode, size 737 bytes, encoding -.
    2011-10-03 17:27:08     Error     File processing failed with java.lang.StringIndexOutOfBoundsException: String index out of range: -27
    2011-10-03 17:27:08     Error     Adapter Framework caught exception: String index out of range: -27
    2011-10-03 17:27:08     Error     Delivering the message to the application using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Error occurred while connecting to the FTP server "nnn.nn.nnn.nnn:21": java.lang.StringIndexOutOfBoundsException: String index out of range: -27.
    Its on the adapter level. All mappings etc are fine. And as i write has been for months. The only thing changed are the FTP server

  • Attempt to process file failed with java.io.IOException

    Hi,
    The scenario is from Idoc to flat file and messages are getting processed successfully in XI. but in receiver communication channel error is coming:
    Attempt to process file failed with java.io.IOException: Error during STOR/APPE epilogue: com.sap.aii.adapter.file.ftp.FTPEx: 426 Connection closed; transfer aborted.
    MP: exception caught with cause com.sap.aii.af.ra.ms.api.RecoverableException: Error during STOR/APPE epilogue: com.sap.aii.adapter.file.ftp.FTPEx: 426 Connection closed; transfer aborted.: java.io.IOException: Error during STOR/APPE epilogue: com.sap.aii.adapter.file.ftp.FTPEx: 426 Connection closed; transfer aborted.

    Hi,
    If you are using FTP then,
    1. Make sure that the FTP sever does not have issues with Firewall or a Proxy server access.
    2. Also verify that the specified FTP user ID has the necessary WRITE or overwrite authorization?
    Regards,
    Sarvesh
    ***Reward points, if it helped you.

  • Java.rmi.NoSuchObjectException: RemoteInvokable - id: '268'

              Hi,
              we keep getting the following error and the log grew by 100 MB in a day.
              What does this signify
              java.rmi.NoSuchObjectException: RemoteInvokable - id: '268'
              at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java(Compiled
              Code))
              at
              weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerServer.jav
              a(Compiled Code))
              at
              weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerServer.jav
              a(Compiled Code))
              at
              weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java(Compiled
              Code))
              at
              weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java(Compiled
              Code))
              at
              weblogic.socket.PosixSocketMuxer.deliverGoodNews(PosixSocketMuxer.java(Compi
              led Code))
              at
              weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:385)
              at
              weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              Application: A simple jsp page accesing servlets and getting data from Oracle
              using connection pooling.
              Env: Weblogic 6.1 with SP1 on AIX 4.3.3
              DB: Oracle 9i - using thin client
              Thanks in advance,
              Ramkumar
              

    Ramkumar,
              Here is a short explanation about the errors - the RJVM received requests for a
              remote invokable which had the internal ID 268. As this object was not available
              any longer, the RJVM threw the NoSuchObjectExceptions. In theory this could be
              any RemoteInvocable Object. For further analsis on what could be causing your
              problem I suggest you open a support case.
              Regards,
              Velvet
              Developer Relations Engineer
              BEA Systems
              Ramkumar wrote:
              > Hi,
              > we keep getting the following error and the log grew by 100 MB in a day.
              > What does this signify
              >
              > java.rmi.NoSuchObjectException: RemoteInvokable - id: '268'
              > at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java(Compiled
              > Code))
              > at
              > weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerServer.jav
              > a(Compiled Code))
              > at
              > weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerServer.jav
              > a(Compiled Code))
              > at
              > weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java(Compiled
              > Code))
              > at
              > weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java(Compiled
              > Code))
              > at
              > weblogic.socket.PosixSocketMuxer.deliverGoodNews(PosixSocketMuxer.java(Compi
              > led Code))
              > at
              > weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:385)
              > at
              > weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              > Application: A simple jsp page accesing servlets and getting data from Oracle
              > using connection pooling.
              > Env: Weblogic 6.1 with SP1 on AIX 4.3.3
              > DB: Oracle 9i - using thin client
              >
              > Thanks in advance,
              > Ramkumar
              

  • Java.rmi.NoSuchObjectException: RemoteInvokable - id: '272'

    We are getting the following error message repeatedly in the app server log file.
    java.rmi.NoSuchObjectException: RemoteInvokable - id: '272'
    Ultimately, it eats up all space bringing down the server. We have two WLS load balanced in the environment. Any ideas?

    Hi,
    you probably run into CR071626. Please contact support along with some more from your logfile
    and the version you are using.
    Regards,
    Christian Buchegger
    Developer Relations Engineer
    BEA Support
    Krishna schrieb:
    We are getting the following error message repeatedly in the app server log file.
    java.rmi.NoSuchObjectException: RemoteInvokable - id: '272'
    Ultimately, it eats up all space bringing down the server. We have two WLS load balanced in the environment. Any ideas?

  • Connect failed with DBLI_RC_LOAD_LIB_FAILED

    Hi,
    Server details: Win 2003 X64,  CE 7.1,  Oracle 10g
    due to some OS level problem the server got stopped (SAP Instances). When i checked the log files
    dev_icm log file
    trc file: "F:\usr\sap\<SID>\J10\work\dev_icm", trc level: 1, release: "710"
    sysno      10
    <SID>        <SID>
    systemid   562 (PC with Windows NT)
    relno      7100
    patchlevel 0
    patchno    84
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    F:\usr\sap\<SID>\SYS\profile\<SID>_J10_HOSTNAME
    pid        4168
    [Thr 4328] Thu Feb 12 17:53:45 2009
    [Thr 4328] started security log to file dev_icm_sec
    [Thr 4328] ICM running on: HOSTNAME
    [Thr 4328] MtxInit: 30001 0 2
    [Thr 4328] IcmInit: listening to admin port: 65000
    [Thr 4328] MPI: dynamic quotas disabled.
    [Thr 4328] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    [Thr 5336] IcmProxyWatchDog: proxy watchdog started
    [Thr 4328] CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    [Thr 4328] CCMS: Initalized shared memory of size 60000000 for monitoring segment.
    [Thr 4328] CCMS: Checking Downtime Configuration of Monitoring Segment.
    [Thr 4328] IcmInit: icm running without ABAP stack
    [Thr 5340] IcmJSessCommThread started
    [Thr 5344] IcmMplxThread started
    [Thr 4328] IcmJsfAttach: attached to Java Startup Framework
    [Thr 4328] IcmCreateWorkerThreads: created worker thread 0
    [Thr 4328] IcmCreateWorkerThreads: created worker thread 1
    [Thr 4328] IcmCreateWorkerThreads: created worker thread 2
    [Thr 4328] IcmCreateWorkerThreads: created worker thread 3
    [Thr 4328] IcmCreateWorkerThreads: created worker thread 4
    [Thr 4328] IcmCreateWorkerThreads: created worker thread 5
    [Thr 4328] IcmCreateWorkerThreads: created worker thread 6
    [Thr 4328] IcmCreateWorkerThreads: created worker thread 7
    [Thr 4328] IcmCreateWorkerThreads: created worker thread 8
    [Thr 4328] IcmCreateWorkerThreads: created worker thread 9
    [Thr 5400] IcmWatchDogThread: watchdog started
    [Thr 5344] JNCMIHttpMsPutLogon: http port information not available
    [Thr 5344] JNCMIP4MsPutLogon: p4 port information not available
    [Thr 5344] JNCMIIIOPMsPutLogon: iiop port information not available
    [Thr 5344] JNCMIHttpMsPutLogon: http port information not available
    [Thr 5344] JNCMIP4MsPutLogon: p4 port information not available
    [Thr 5344] JNCMIIIOPMsPutLogon: iiop port information not available
    [Thr 5404] Thu Feb 12 17:53:48 2009
    [Thr 5404] ISC: created 400 MB disk cache.
    [Thr 5404] ISC: created 50 MB memory cache.
    [Thr 5404] HttpSubHandlerAdd: Added handler HttpCacheHandler(slot=0, flags=12293) for /, active: 1
    [Thr 5404] HttpExtractArchive: files from archive F:\usr\sap\<SID>\J10\exe/icmadmin.SAR in directory F:/usr/sap/<SID>/J10/data/icmandir are up to date
    [Thr 5404] HttpSubHandlerAdd: Added handler HttpAdminHandler(slot=1, flags=4101) for /sap/admin, active: 1
    [Thr 5404] HttpSubHandlerAdd: Added handler HttpModHandler(slot=2, flags=12293) for /, active: 1
    [Thr 5404] CsiInit(): Initializing the Content Scan Interface
    [Thr 5404]            PC with Windows NT (mt,unicode,SAP_CHAR/size_t/void* = 16/64/64)
    [Thr 5404] CsiInit(): CSA_LIB = "F:\usr\sap\<SID>\J10\exe\sapcsa.dll"
    [Thr 5404] HttpSubHandlerAdd: Added handler HttpAuthHandler(slot=3, flags=12293) for /, active: 1
    [Thr 5404] ICM running without ABAP
    [Thr 5404] HttpSubHandlerAdd: Added handler HttpJ2EE2Handler(slot=4, flags=1060869) for /, active: 1
    [Thr 5404] Started service 51000 for protocol HTTP on host "HOSTNAME"(on all adapters) (processing timeout=600, keep_alive_timeout=60)
    [Thr 5404] Started service 51004 for protocol P4 on host "HOSTNAME"(on all adapters) (processing timeout=60, keep_alive_timeout=30)
    [Thr 5404] Started service 51007 for protocol IIOP on host "HOSTNAME"(on all adapters) (processing timeout=60, keep_alive_timeout=30)
    [Thr 5404] Started service 51008 for protocol TELNET on host "localhost"(only on this adapter) (processing timeout=60, keep_alive_timeout=30)
    [Thr 5344] JNCMIHttpMsPutLogon: delete http logon information
    [Thr 5344] JNCMIP4MsPutLogon: reset p4 logon information
    [Thr 5344] JNCMIIIOPMsPutLogon: reset iiop logon information
    [Thr 5344] JNCMITelnetMsPutLogon: reset telnet logon information
    [Thr 5344] JNCMIHttpMsPutLogon: delete http logon information
    [Thr 5344] JNCMIP4MsPutLogon: reset p4 logon information
    [Thr 5344] JNCMIIIOPMsPutLogon: reset iiop logon information
    [Thr 5344] JNCMITelnetMsPutLogon: reset telnet logon information
    [Thr 5404] Thu Feb 12 17:53:59 2009
    [Thr 5404] *** WARNING => IcmNetCheck: NiHostToAddr(www.doesnotexist.qqq.nxst) took 11 seconds [icxxman.c    5640]
    [Thr 5404] Thu Feb 12 17:54:16 2009
    [Thr 5404] *** WARNING => IcmNetCheck: NiAddrToHost(10.0.0.1) took 17 seconds [icxxman.c    5660]
    [Thr 5404] *** WARNING => IcmNetCheck: 2 possible network problems detected - please check the network/DNS settings [icxxman.c    5716]
    [Thr 5344] Thu Feb 12 17:56:02 2009
    [Thr 5344] JNCMIP4NodeAdd: node 109769750 joins the load balancing list
    [Thr 5344] IcmJSessCommServiceJoin: server 109769750 started protocol P4 (active services: 1)
    [Thr 5344] JNCMIIIOPNodeAdd: node 109769750 joins the load balancing list
    [Thr 5344] IcmJSessCommServiceJoin: server 109769750 started protocol IIOP (active services: 3)
    [Thr 5344] JNCMITelnetNodeAdd: node 109769750 joins the load balancing list
    [Thr 5340] IcmJSessCommAttach: Attached to J2EE request queue <SID>_10_109769750_P4
    [Thr 5344] IcmJSessCommServiceJoin: server 109769750 started protocol TELNET (active services: 7)
    [Thr 5344] JNCMIP4MsPutLogon: set p4 logon port (port:51004) (lbcount: 1)
    [Thr 5344] JNCMIIIOPMsPutLogon: set iiop logon port (port:51007) (lbcount: 1)
    [Thr 5344] JNCMITelnetMsPutLogon: set telnet logon port (port:51008) (lbcount: 1)
    [Thr 5344] Thu Feb 12 17:59:20 2009
    [Thr 5344] JNCMIHttpNodeAdd: node 109769750 joins the load balancing list
    [Thr 5344] HttpJ2EELbPut: server 109769750 started protocol HTTP, attached to request queue <SID>_10_109769750_HTTP
    [Thr 5344] JNCMIHttpMsPutLogon: set http logon port (port:51000) (lbcount: 1)
    [Thr 5344] Tue Feb 24 18:21:03 2009
    [Thr 5344] *** ERROR => NiBufISetError: ErrGetAttr failed (rc=-2) for hdl 49 [nibuf.cpp    1243]
    [Thr 5344] *** ERROR => MsINiRead: NiBufReceive failed (NIEINTERN) [msxxi.c      2811]
    [Thr 5344]
    [Thr 5344] *****************************************************************************
    [Thr 5344] *
    [Thr 5344] *  ERROR       The message received isn't from a message server.
    [Thr 5344] *              Are you really connected to the message server?
    [Thr 5344] *              Please check your connection parameters.
    [Thr 5344] *              (HOSTNAME / 3911)
    [Thr 5344] *
    [Thr 5344] *  TIME        Tue Feb 24 18:21:03 2009
    [Thr 5344] *  RELEASE     710
    [Thr 5344] *  COMPONENT   MS (message handling interface, multithreaded)
    [Thr 5344] *  VERSION     4
    [Thr 5344] *  RC          -29
    [Thr 5344] *  MODULE      msxxi.c
    [Thr 5344] *  LINE        2819
    [Thr 5344] *  COUNTER     3
    [Thr 5344] *
    [Thr 5344] *****************************************************************************
    [Thr 5344]
    [Thr 5344] *** ERROR => MsIReadFromHdl: NiRead (rc=NIEINTERN) [msxxi.c      1966]
    [Thr 5344] JNCMIMsConnBrokenCallback: Message server connection broken
    [Thr 5344] IcmJncmConnBrokenCallback called
    [Thr 45932] JNCMIReconnectFunc: Wait 3600 sec for message server reconnect
    [Thr 45932] JNCMIReconnectFunc: Wait 30 sec for consistent cluster reconnect
    [Thr 45932] Tue Feb 24 18:21:04 2009
    [Thr 45932] *** ERROR => MsIAttachEx: NiBufConnect to HOSTNAME/3911 failed (rc=NIECONN_REFUSED) [msxxi.c      773]
    [Thr 45932] Tue Feb 24 18:21:06 2009
    [Thr 45932] *** ERROR => MsIAttachEx: NiBufConnect to HOSTNAME/3911 failed (rc=NIECONN_REFUSED) [msxxi.c      773]
    [Thr 45932] Tue Feb 24 18:21:09 2009
    [Thr 45932] *** ERROR => MsIAttachEx: NiBufConnect to HOSTNAME/3911 failed (rc=NIECONN_REFUSED) [msxxi.c      773]
    [Thr 45932] Tue Feb 24 18:21:13 2009
    [Thr 45932] *** ERROR => MsIAttachEx: NiBufConnect to HOSTNAME/3911 failed (rc=NIECONN_REFUSED) [msxxi.c      773]
    [Thr 4328] Tue Feb 24 18:21:15 2009
    [Thr 4328] Deactivated service 51000 for protocol HTTP on host: "HOSTNAME"(on all adapters) (timeout=60)
    [Thr 4328] Deactivated service 51004 for protocol P4 on host: "HOSTNAME"(on all adapters) (timeout=30)
    [Thr 4328] Deactivated service 51007 for protocol IIOP on host: "HOSTNAME"(on all adapters) (timeout=30)
    [Thr 4328] Deactivated service 51008 for protocol TELNET on host: "localhost"(only on this adapter) (timeout=30)
    [Thr 5400] IcmWatchDogThread: Shutdown request received
    [Thr 5400] IcmConnCancel: Connection (id=7/38910) canceled manually
    [Thr 5400] *** IcmWatchDogThread: exit thread ***
    [Thr 5340] *** IcmJSessCommThread: exit thread ***
    [Thr 4328] IcmConnCancel: Connection (id=7/38910) canceled manually
    [Thr 4328] IcmConnCancel: Connection (id=2/5856) canceled manually
    [Thr 4328] Tue Feb 24 18:21:16 2009
    [Thr 4328] Removed service 51000 for protocol HTTP on host: "HOSTNAME"(on all adapters) (timeout=60)
    [Thr 4328] Removed service 51004 for protocol P4 on host: "HOSTNAME"(on all adapters) (timeout=30)
    [Thr 4328] Removed service 51007 for protocol IIOP on host: "HOSTNAME"(on all adapters) (timeout=30)
    [Thr 4328] Removed service 51008 for protocol TELNET on host: "localhost"(only on this adapter) (timeout=30)
    [Thr 4328] IcmJsfDetach: detach from Java Startup Framework
    [Thr 4328] *** ICM shutdown completed (pid: 4168) ***
    R4trans -d log file
    4 ETW000 date&time   : 27.02.2009 - 11:33:19
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: R3trans -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [dev trc     ,00000]  Fri Feb 27 11:33:22 2009                               0  0.000000
    4 ETW000  [dev trc     ,00000]  db_con_init called                                     0  0.000000
    4 ETW000  [dev trc     ,00000]  create_con (con_name=R/3)                              0  0.000000
    4 ETW000  [dev trc     ,00000]  Loading DB library 'dboraslib.dll' ...                 0  0.000000
    4 ETW000  [dev trc     ,00000]  load shared library (dboraslib.dll), hdl 0          2597  0.002597
    4 ETW000  [dev trc     ,00000]      using "F:\usr\sap\SID\SYS\exe\uc\NTAMD64\dboraslib.dll"
    4 ETW000                                                                              16  0.002613
    4 ETW000  [dev trc     ,00000]  Library 'dboraslib.dll' loaded                         8  0.002621
    4 ETW000  [dev trc     ,00000]  function DbSlExpFuns loaded from library dboraslib.dll
    4 ETW000                                                                              12  0.002633
    4 ETW000  [dbcon.c     ,00000]  *** ERROR => Codepage mismatch between kernel (ASCII) and DBSL shared library 'dboraslib.dll' (UNICODE)
    4 ETW000                                                                              42  0.002675
    2EETW169 no connect possible: "connect failed with DBLI_RC_LOAD_LIB_FAILED."
    Please Guide me
    Mahesh

    Hi Mahesh,
    There are 2 dates one is 12 and  other 24th. I think this is a network failure issue.
    >
    Mahesh Chedde wrote:
    > [Thr 5344] Thu Feb 12 17:59:20 2009
    > [Thr 5344] JNCMIHttpNodeAdd: node 109769750 joins the load balancing list
    > [Thr 5344] HttpJ2EELbPut: server 109769750 started protocol HTTP, attached to request queue <SID>_10_109769750_HTTP
    > [Thr 5344] JNCMIHttpMsPutLogon: set http logon port (port:51000) (lbcount: 1)
    >
    > [Thr 5344] Tue Feb 24 18:21:03 2009
    > [Thr 5344] *** ERROR => NiBufISetError: ErrGetAttr failed (rc=-2) for hdl 49 [nibuf.cpp    1243]
    > [Thr 5344] *** ERROR => MsINiRead: NiBufReceive failed (NIEINTERN) [msxxi.c      2811]
    > [Thr 5344]
    >
    Regards,
    Kalyan

  • New @ RMI need help with  java.rmi.UnmarshalException: error unmarshalling

    Hi @ all out there,
    I'm new with Java RMI and have to write a EventSystem for an college project where clients can subscribe to a topic and get notified when someone publishes a message to the subscribed topic.
    At server-side I have a class called EventSystem that provides methods for subscribing and unsubscribing from topics, and also for posting messages (for publishers).
    To subscribe i thought that the client must specify the topic and also itself ( means that a client calls in this way: obj.subscribe("mytopic", this).
    The EventSystem handles a list of all clients, and whenever a new message is posted it goes trough all clients and invokes the handleMessage(String msg) method that all Clients have to provide.
    On my local machine without RMi this concept works just great.
    I now tried to get it working using RMI , but I get the following Exception when starting the client (the server starts fine) :
    Looking up for rmiregistry at 138.232.248.22:1099
    Subscriber exception:
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
            java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
            java.io.InvalidClassException: SubscriberImpl; SubscriberImpl; class invalid for deserialization
            at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:336)
            at sun.rmi.transport.Transport$1.run(Transport.java:159)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
            at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
            at java.lang.Thread.run(Thread.java:619)
            at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:255)
            at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:233)
            at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:142)
            at java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:178)
            at java.rmi.server.RemoteObjectInvocationHandler.invoke(RemoteObjectInvocationHandler.java:132)
            at $Proxy0.subscribe(Unknown Source)
            at SubscriberImpl.main(SubscriberImpl.java:48)
    Caused by: java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
            java.io.InvalidClassException: SubscriberImpl; SubscriberImpl; class invalid for deserialization
            at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:293)
            at sun.rmi.transport.Transport$1.run(Transport.java:159)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
            at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
            at java.lang.Thread.run(Thread.java:619)
    Caused by: java.io.InvalidClassException: SubscriberImpl; SubscriberImpl; class invalid for deserialization
            at java.io.ObjectStreamClass.checkDeserialize(ObjectStreamClass.java:713)
            at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1733)
            at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
            at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
            at sun.rmi.server.UnicastRef.unmarshalValue(UnicastRef.java:306)
            at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:290)
            ... 9 more
    Caused by: java.io.InvalidClassException: SubscriberImpl; class invalid for deserialization
            at java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:587)
            at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1583)
            at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1496)
            at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1732)
            ... 13 moreI googled now for 2 hours but can't resolve the problem alone. As far as I can understand I have to serialize Objects that I want to send to the server, right?
    So how can i do this? I've never used serialization till now.
    any ideas how to solve this problem?
    greets from italy and sorry for my very weak english
    bd_italy

    A class has been modified after deployment. Stop the Registry, clean, recompile, and redeploy.

  • Java.rmi.NoSuchObjectException: no such object in table

    When I try to connect to my server from an external network, I get this error: java.rmi.NoSuchObjectException: no such object in table
    What is happening is I am connecting to my RMI server through a client, and the RMI server connects to a database, gets the results, and then transfers the results back to the client. It works before in an internal network, even if I'm on a different subnet. But I get that error in an external network. What does that error even mean?

    I turned this to static
    public class PRFromDBServer implements PRFromDatabaseInterface {
       private int      port;
        private String   ipAddress;
        private Registry registry;   
        //This was recently turned static
        private static PRFromDatabaseInterface stub
        public PRFromDBServer() {
             super();
              port=1099;
              try {
                  //get the address of this host.
                  ipAddress= (InetAddress.getLocalHost()).toString();
                  //PRFromDBServer engine=new PRFromDBServer();
                  stub=(PRFromDatabaseInterface)UnicastRemoteObject.exportObject(this, 1081);
                  // create the registry and bind the name and object.
                  registry = LocateRegistry.createRegistry(port);
                  registry.rebind("prFromDBServer", stub);
                  System.out.println("IP:"+ipAddress+" Port:"+port);
              } catch (UnknownHostException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (RemoteException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    }//end Server ClassAre you saying I should turn the how class static when I insantiate it?
    private static PRFromDBServer = new PRFromDBServer();

  • Attempt to process file failed with java.lang.StringIndexOutOfBoundsExcep..

    Hello All,
       I am implementing file2file with file going from shared folder to FTPS server.
    I am using TLS and X.509 certificate in file receiver communication channel.
    when I implemented my scenario, this is the error its throwing :
    Success : Connect to FTP server "my ftp address", directory "/TEST/"
    Error : Attempt to process file failed with java.lang.StringIndexOutOfBoundsException: String index out of range: 3
    I know this error is caused when java expects the 3 character length string and if its getting more than that... Does any faced this kindaa problem before...Any help is greatly appreciated....Obviously even points....
    Thanks,
    Ravi

    There is no custom code at all? No mappings, no custom modules, no pre/post processing commands?
    Also, check if you get this error when sending to ftps server without certificate (or with another certificate). It may be an incompatibility issue with certificate.
    Did you import the .pfx (or .p12) file in KeyStorage Service?
    Regards,
    Henrique.

  • CONNECT failed with sql error '1017'

    Hello,
    nus650pa:dv8adm 23% more trans.log
    4 ETW000 R3trans version 6.05 (release 46D - 12.07.06 - 16:40:00).
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: R3trans -d
    4 ETW000 date&time   : 14.08.2014 - 16:58:18
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [developertra,00000]  Thu Aug 14 16:58:19 2014                          170924  0.170924
    4 ETW000  [developertra,00000]  db_con_init called                                  1225  0.172149
    4 ETW000  [developertra,00000]  create_con (con_name=R/3)                          22426  0.194575
    4 ETW000  [developertra,00000]  Loading DB library '/usr/sap/DV8/SYS/exe/run/dboraslib.so' ...
    4 ETW000                                                                             136  0.194711
    4 ETW000  [developertra,00000]  load shared library (/usr/sap/DV8/SYS/exe/run/dboraslib.so), hdl 0
    4 ETW000                                                                          369207  0.563918
    4 ETW000  [developertra,00000]  Library '/usr/sap/DV8/SYS/exe/run/dboraslib.so' loaded
    4 ETW000                                                                             174  0.564092
    4 ETW000  [developertra,00000]  function DbSlExpFuns loaded from library /usr/sap/DV8/SYS/exe/run/dboraslib.so
    4 ETW000                                                                             694  0.564786
    4 ETW000  [developertra,00000]  Version of library '/usr/sap/DV8/SYS/exe/run/dboraslib.so' is "46D.00", patchlevel (0.2186)
    4 ETW000                                                                           15725  0.580511
    4 ETW000  [developertra,00000]  function dsql_db_init loaded from library /usr/sap/DV8/SYS/exe/run/dboraslib.so
    4 ETW000                                                                              60  0.580571
    4 ETW000  [developertra,00000]  function dbdd_exp_funs loaded from library /usr/sap/DV8/SYS/exe/run/dboraslib.so
    4 ETW000                                                                             121  0.580692
    4 ETW000  [developertra,00000]  New connection 0 created                              96  0.580788
    4 ETW000  [developertra,00000]  db_con_connect (con_name=R/3)                      14511  0.595299
    4 ETW000  [developertra,00000]  find_con found the following connection for reuse:
    4 ETW000                                                                              53  0.595352
    4 ETW000  [developertra,00000]  Got ORACLE_HOME=/oracle/DV8/920_64 from environment
    4 ETW000                                                                           73038  0.668390
    4 ETW000  [developertra,00000]  -->oci_initialize                                    589  0.668979
    4 ETW000  [developertra,00000]  Got ORACLE_SID=DV8 from environment                   56  0.669035
    4 ETW000  [developertra,00000]  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    4 ETW000                                                                              52  0.669087
    4 ETW000  [developertra,00000]  Logon as OPS$-user to get SAPR3's password            33  0.669120
    4 ETW000  [developertra,00000]  Connecting as /@DV8 on connection 0 ...               91  0.669211
    4 ETW000  [developertra,00000]  -->oci_logon(con_hdl=0, user='', dbname='DV8')       999  0.670210
    4 ETW000  [developertra,00000]  Thu Aug 14 16:58:20 2014                          245280  0.915490
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'olog' failed: rc = 1017       263  0.915753
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '1017'
    4 ETW000                                                                             858  0.916611
    4 ETW000  [developertra,00000]  Try to connect with default password                  38  0.916649
    4 ETW000  [developertra,00000]  Connecting as SAPR3/<pwd>@DV8 on connection 0 ...
    4 ETW000                                                                              53  0.916702
    4 ETW000  [developertra,00000]  -->oci_logon(con_hdl=0, user='SAPR3', dbname='DV8')
    4 ETW000                                                                              46  0.916748
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'olog' failed: rc = 1017    118256  1.035004
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '1017'
    4 ETW000                                                                              86  1.035090
    4 ETW000  [developertra,00000]  Got ORACLE_SID=DV8 from environment                  716  1.035806
    4 ETW000  [developertra,00000]  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    4 ETW000                                                                              55  1.035861
    4 ETW000  [developertra,00000]  Logon as OPS$-user to get SAPR3's password            33  1.035894
    4 ETW000  [developertra,00000]  Connecting as /@DV8 on connection 0 ...               29  1.035923
    4 ETW000  [developertra,00000]  -->oci_logon(con_hdl=0, user='', dbname='DV8')        28  1.035951
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'olog' failed: rc = 1017    126719  1.162670
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '1017'
    4 ETW000                                                                             165  1.162835
    4 ETW000  [developertra,00000]  Try to connect with default password                  36  1.162871
    4 ETW000  [developertra,00000]  Connecting as SAPR3/<pwd>@DV8 on connection 0 ...
    4 ETW000                                                                              47  1.162918
    4 ETW000  [developertra,00000]  -->oci_logon(con_hdl=0, user='SAPR3', dbname='DV8')
    4 ETW000                                                                              42  1.162960
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'olog' failed: rc = 1017    123784  1.286744
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '1017'
    4 ETW000                                                                              70  1.286814
    4 ETW000  [dblink      ,00627]  ***LOG BY2=>sql error 1017   performing CON         1140  1.287954
    4 ETW000  [dblink      ,00627]  ***LOG BY0=>                                          42  1.287996
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'DV8'"
    Please help.
    Thanks
    Priyanshu Srivastava

    Hi
    Could you check this SAP Notes Error message
    "ORA-01017: invalid username/password; logon denied
    BR310E Connect to database instance DV8 failed"
    1576837 - ORA-01017: invalid username/password;
    1860519 - SAP fails to connect to the database
    BR
    SS

  • DbSl Trace: CONNECT failed with sql error '12518'  at IMPORT ABAP

    Hi
    We are trying to install ECC 6.0 on windows 2008 SP2 and oracle 10.2.0.4. We get an error at IMPORT ABAP phase.
    content of import_monitor.java :
    java version "1.4.2_26"
    Java(TM) Platform, Standard Edition for Business (build 1.4.2_26-b03)
    Java HotSpot(TM) 64-Bit Server VM (build 1.4.2_26-b03, mixed mode)
    Import Monitor jobs: running 1, waiting 1, completed 26, failed 0, total 28.
    Loading of 'SAPSLOAD' import package: ERROR
    Import Monitor jobs: running 0, waiting 1, completed 26, failed 1, total 28.
    content of SAPSLOAD.log:
    E:\usr\sap\UED\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20100705173108
    E:\usr\sap\UED\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/701_REL/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    E:\usr\sap\UED\SYS\exe\uc\NTAMD64\R3load.exe: version R7.01/V1.4 [UNICODE]
    Compiled Feb 24 2009 23:41:07
    E:\usr\sap\UED\SYS\exe\uc\NTAMD64\R3load.exe -i SAPSLOAD.cmd -dbcodepage 4103 -l SAPSLOAD.log -stop_on_error
    DbSl Trace: OCI-call 'OCIServerAttach' failed with rc=12518
    DbSl Trace: CONNECT failed with sql error '12518'
    DbSl Trace: OCI-call 'OCIServerAttach' failed with rc=12518
    DbSl Trace: CONNECT failed with sql error '12518'
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: OCI-call 'OCIServerAttach' failed with rc=12518
    DbSl Trace: CONNECT failed with sql error '12518'
    DbSl Trace: OCI-call 'OCIServerAttach' failed with rc=12518
    DbSl Trace: CONNECT failed with sql error '12518'
    (DB) ERROR: DbSlErrorMsg rc = 99
    E:\usr\sap\UED\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error(s)
    E:\usr\sap\UED\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20100705173108
    content of sqlnet.log file:
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleUED)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=UED)(CID=(PROGRAM=E:\oracle\UED\102\bin\sqlplus.exe)(HOST=U34SSAPUED)(USER=uedadm))))
      VERSION INFORMATION:
         TNS for 64-bit Windows: Version 10.2.0.4.0 - Production
         Oracle Bequeath NT Protocol Adapter for 64-bit Windows: Version 10.2.0.4.0 - Production
      Time: 05-JUL-2010 16:19:39
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12560
        TNS-12560: TNS:protocol adapter error
        ns secondary err code: 0
        nt main err code: 530
        TNS-00530: Protocol adapter error
        nt secondary err code: 2
        nt OS err code: 0
    Fatal NI connect error 12518, connecting to:
    (DESCRIPTION=(ADDRESS=(COMMUNITY=SAP.WORLD)(PROTOCOL=TCP)(HOST=u34ssapued)(PORT=1527))(CONNECT_DATA=(SID=UED)(GLOBAL_NAME=UED.WORLD)(CID=(PROGRAM=E:\usr\sap\UED\SYS\exe\uc\NTAMD64\R3load.exe)(HOST=U34SSAPUED)(USER=uedadm))))
      VERSION INFORMATION:
         TNS for 64-bit Windows: Version 10.2.0.2.0 - Production
         Windows NT TCP/IP NT Protocol Adapter for 64-bit Windows: Version 10.2.0.2.0 - Production
      Time: 05-JUL-2010 17:28:38
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12564
        TNS-12564: TNS:connection refused
        ns secondary err code: 0
        nt main err code: 0
        nt secondary err code: 0
        nt OS err code: 0
    Best Regards...,

    Hi,
    TNS-12560: TNS:protocol adapter error
    Probably your listener or database is down...
    If both are running, just stop the installation and reboot the server.
    Then again start listener and database and continue SAP installation with "Continue old installation" option..
    Also make sure that below environment variables are set properly...
    ORACLE_HOME
    ORACLE_SID
    DBSID
    Regards.
    Rajesh Narkhede

  • ERROR = CONNECT failed with sql error '12518'

    Hi All,
    OS Win 2003 - 32 Bit, Database - Oracle 10.2.0.2 , I am facing this from yesterday, suddenly SAP was done and when i am checking the logs it is not able to connect to the database.
    I have checked the services for oracle - service was down, i have started the oracleService<SID> and also i have restarted the listener.. after this when i am trying to start the SAP through MMC again the problem is face.. and also the oracle service is stopped. when i tried starting the database from OS level it was giving me error like
    ORA-24324: service handle not initialized
    ORA-24323: value not allowed
    ORA-03113: end-of-file on communication channel
    again the Oracle service is stopped i am not getting why the oracle service is stopping..
    dev_w*.log
    Thu Apr 09 10:33:50 2009
    M  calling db_connect ...
    C  Prepending D:\usr\sap\SID\DVEBMGS01\exe to Path.
    C  Oracle Client Version: '10.2.0.1.0'
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@SID on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C84528   05C89AC4   05C8934C
    C  Attaching to DB Server SID (con_hdl=0,svchp=05C89298,svrhp=05C9AB64)

    C Thu Apr 09 10:33:51 2009
    C  *** ERROR => OCI-call 'OCIServerAttach' failed: rc = 12518
    [dboci.c      4172]
    C  *** ERROR => CONNECT failed with sql error '12518'
    [dbsloci.c    10933]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@SM3 on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05C84528   05C89AC4   05C8934C
    C  Detaching from DB Server (con_hdl=0,svchp=05C89298,srvhp=05C9AB64)
    C  Attaching to DB Server SID (con_hdl=0,svchp=05C89298,svrhp=05C9AB64)
    C  *** ERROR => OCI-call 'OCIServerAttach' failed: rc = 12518
    [dboci.c      4172]
    C  *** ERROR => CONNECT failed with sql error '12518'
    [dbsloci.c    10933]
    B  ***LOG BY2=> sql error 12518  performing CON [dbsh#2 @ 1204] [dbsh    1204 ]
    B  ***LOG BY0=> ORA-12518: TNS:listener could not hand off client connection [dbsh#2 @ 1204] [dbsh    1204 ]
    B  ***LOG BY2=> sql error 12518  performing CON [dblink#3 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> ORA-12518: TNS:listener could not hand off client connection [dblink#3 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1411]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10156]

    M  Info for wp 16

    M    stat = 4
    M    reqtype = 6
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = V-1

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server hostname_SM3_01 on host tcs042619 (wp 16)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Thu Apr 09 10:33:51 2009
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10354
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc16 7988) [dpnttool.c   327]
    Any suggestions pls
    Mahesh

    Hi Rohit,
    when i check in the sqlnet.log
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleSID)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=SID)(CID=(PROGRAM=E:\oracle\SM2\102\bin\sqlplus.exe)(HOST=hostname)(USER=SIDadm))))
      VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
      Time: 04-SEP-2007 15:09:30
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12560
        TNS-12560: Message 12560 not found; No message file for product=NETWORK, facility=TNS
        ns secondary err code: 0
        nt main err code: 530
        TNS-00530: Message 530 not found; No message file for product=NETWORK, facility=TNS
        nt secondary err code: 2
        nt OS err code: 0
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleSID)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=SID)(CID=(PROGRAM=E:\oracle\SID\102\bin\sqlplus.exe)(HOST=hostname)(USER=SIDadm))))
      VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
      Time: 08-APR-2009 19:16:32
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12560
        TNS-12560: TNS:protocol adapter error
        ns secondary err code: 0
        nt main err code: 530
        TNS-00530: Protocol adapter error
        nt secondary err code: 2
        nt OS err code: 0
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleSID)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=SID)(CID=(PROGRAM=E:\oracle\SID\102\bin\sqlplus.exe)(HOST=hostname)(USER=SIDadm))))
      VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
      Time: 08-APR-2009 19:16:46
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12560
        TNS-12560: TNS:protocol adapter error
        ns secondary err code: 0
        nt main err code: 530
        TNS-00530: Protocol adapter error
        nt secondary err code: 2
        nt OS err code: 0
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleSID)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=SID)(CID=(PROGRAM=E:\oracle\SID\102\bin\sqlplus.exe)(HOST=hostname)(USER=SIDadm))))
      VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
      Time: 08-APR-2009 19:19:27
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12560
        TNS-12560: TNS:protocol adapter error
        ns secondary err code: 0
        nt main err code: 530
        TNS-00530: Protocol adapter error
        nt secondary err code: 2
        nt OS err code: 0
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleSID)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=SID)(CID=(PROGRAM=E:\oracle\SID\102\bin\sqlplus.exe)(HOST=hostname)(USER=SIDadm))))
      VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
      Time: 08-APR-2009 19:19:28
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12560
        TNS-12560: TNS:protocol adapter error
        ns secondary err code: 0
        nt main err code: 530
        TNS-00530: Protocol adapter error
        nt secondary err code: 2
        nt OS err code: 0
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleSID)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=SID)(CID=(PROGRAM=E:\oracle\SID\102\bin\sqlplus.exe)(HOST=hostname)(USER=SIDadm))))
      VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
      Time: 08-APR-2009 19:19:29
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12560
        TNS-12560: TNS:protocol adapter error
        ns secondary err code: 0
        nt main err code: 530
        TNS-00530: Protocol adapter error
        nt secondary err code: 2
        nt OS err code: 0
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleSID)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=SID)(CID=(PROGRAM=E:\oracle\SID\102\bin\sqlplus.exe)(HOST=hostname)(USER=SIDadm))))
      VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
      Time: 08-APR-2009 19:26:38
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12560
        TNS-12560: TNS:protocol adapter error
        ns secondary err code: 0
        nt main err code: 530
        TNS-00530: Protocol adapter error
        nt secondary err code: 2
        nt OS err code: 0
    Fatal NI connect error 12518, connecting to:
    (DESCRIPTION=(ADDRESS=(COMMUNITY=SAP.WORLD)(PROTOCOL=TCP)(HOST=hostname)(PORT=1527))(CONNECT_DATA=(SID=SID)(GLOBAL_NAME=SID.WORLD)(CID=(PROGRAM=D:\usr\sap\SID\SYS\exe\uc\NTI386\R3trans.exe)(HOST=hostname)(USER=SIDadm))))
      VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
      Time: 08-APR-2009 20:35:23
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12564
        TNS-12564: TNS:connection refused
        ns secondary err code: 0
        nt main err code: 0
        nt secondary err code: 0
        nt OS err code: 0
    Fatal NI connect error 12518, connecting to:
    (DESCRIPTION=(ADDRESS=(COMMUNITY=SAP.WORLD)(PROTOCOL=TCP)(HOST=hostname)(PORT=1527))(CONNECT_DATA=(SID=SID)(GLOBAL_NAME=SID.WORLD)(CID=(PROGRAM=D:\usr\sap\SID\SYS\exe\uc\NTI386\R3trans.exe)(HOST=hostname)(USER=SIDadm))))
      VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
      Time: 08-APR-2009 20:35:23
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12564
        TNS-12564: TNS:connection refused
        ns secondary err code: 0
        nt main err code: 0
        nt secondary err code: 0
        nt OS err code: 0
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleSID)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=SID)(CID=(PROGRAM=E:\oracle\SID\102\bin\sqlplus.exe)(HOST=hostname)(USER=SIDadm))))
      VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
      Time: 09-APR-2009 09:15:43
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12560
        TNS-12560: TNS:protocol adapter error
        ns secondary err code: 0
        nt main err code: 530
        TNS-00530: Protocol adapter error
        nt secondary err code: 2
        nt OS err code: 0
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleSID)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=SID)(CID=(PROGRAM=E:\oracle\SID\102\bin\sqlplus.exe)(HOST=hostname)(USER=SIDadm))))
      VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
      Time: 09-APR-2009 09:17:28
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12560
        TNS-12560: TNS:protocol adapter error
        ns secondary err code: 0
        nt main err code: 530
        TNS-00530: Protocol adapter error
        nt secondary err code: 2
        nt OS err code: 0
    This error occured when the oracle service was  not started..
    Mahesh..

Maybe you are looking for