CommunicationException

We are running WLS 6.1 and we are trying to access CMP EJBs and it fails it this line:
Context ctx = new InitialContext(properties);
Can someone please tell us what we need to do? We are running on a UNIX machine.
Here is our code.
String url = "t3://tsdwwi4.sbms.sbc.com:11903/";
     Properties properties = null;
     CatalogRatePlanDetailsHome ratePlanDetailsHome= null;
     CatalogRatePlanDetails ratePlanDetails = null;
     Enumeration enRatePlanDetails = null;
try {
//get naming context
System.out.println("Getting Initial Context");
System.out.println("create Properties");
     properties = new Properties();
     System.out.println("put Initial Context Factory");
     properties.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
     System.out.println("put Provider URL");
     properties.put(Context.PROVIDER_URL, url);
     System.out.println("construct Initial Context");
Context ctx = new InitialContext(properties);

Hi,
I would check if
o you can traceroute tsdwwi4.sbms.sbc.com
o communications are allowed to and from port 11903. It could be a firewall
issue.
Regards,
Slava Imeshev
"GP" <[email protected]> wrote in message
news:3d011b28$[email protected]..
We are running WLS 6.1 and we are trying to access CMP EJBs and it failsit this line:
Context ctx = new InitialContext(properties);
Can someone please tell us what we need to do? We are running on a UNIXmachine.
Here is our code.
String url = "t3://tsdwwi4.sbms.sbc.com:11903/";
Properties properties = null;
CatalogRatePlanDetailsHome ratePlanDetailsHome= null;
CatalogRatePlanDetails ratePlanDetails = null;
Enumeration enRatePlanDetails = null;
try {
//get naming context
System.out.println("Getting Initial Context");
System.out.println("create Properties");
properties = new Properties();
System.out.println("put Initial Context Factory");
properties.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
System.out.println("put Provider URL");
properties.put(Context.PROVIDER_URL, url);
System.out.println("construct Initial Context");
Context ctx = new InitialContext(properties);

Similar Messages

  • Report Engine SDK: CommunicationException when accessing IReportEngine members

    Hello,
    I have installed BOXI 3.1 SP3, including the .NET SDK, and I am trying to use the Report Engine SDK part to navigate through a WebIntelligence document (analyse its structure, etc.), via a Console App.
    I built my console app targeting .NET framework 3.5, and compiled it in 32 bits mode (x86 platform). I can access the standard SDK without any problem and log in to the CMS then retrieve any InfoObject instances from my enterprise server.
    My problem occurs when I try to access my BusinessObjects.ReportEngine.IReportEngine instance's members. Sample lines of code:
    SessionMgr sessionManager = new SessionMgr();
    EnterpriseSession session = sessionManager.Logon(login, password, cmsName, authType);
    InfoStore infoStore = (InfoStore)session.GetService("InfoStore");
    UserInfo userInfos = session.UserInfo;
    string logonToken = session.LogonTokenMgr.CreateWCAToken("", 1, -1);
    ReportEngines reportEngines = new ReportEngines(logonToken);
    IReportEngine reportEngine = (IReportEngine)reportEngines.getService(ReportEngineType.WI_ReportEngine);
    bool test = reportEngine.IsReady; // or any other member of reportEngine, like reportEngine.OpenDocument(...)
    An exception of type 'BusinessObjects.ReportEngine.CommunicationException' occured.
    Message:
    The Web Intelligence server could not be reached. Contact your Business Objects administrator. (Error: RWI 00236), Session Init Failure,
    Stacktrace:
       à BusinessObjects.ReportEngine.WI.Internal.Server.OCCA.OCCAServerStub.Connect(Boolean forceNewInstance)
       à BusinessObjects.ReportEngine.WI.Internal.Server.OCCA.OCCAServerStub..ctor(OCCAServerConnection connection, Boolean forceNewInstance)
       à BusinessObjects.ReportEngine.WI.Internal.Server.OCCA.OCCAServerConnection.get_Stub()
       à BusinessObjects.ReportEngine.WI.Internal.Server.ServerCaller.SetupStub()
       à BusinessObjects.ReportEngine.WI.Internal.Server.ServerCaller..ctor(IServerSession session, IServerProtocol protocol, IServerConnectionInfo info)
       à BusinessObjects.ReportEngine.WI.Internal.WIDocumentInstance..ctor(WIReportEngine engine, Int32 documentId, OpenDocumentParameters parameters)
       à BusinessObjects.ReportEngine.WI.Internal.WIDocumentInstance..ctor(WIReportEngine engine, Int32 documentId)
       à BusinessObjects.ReportEngine.WI.Internal.WIReportEngine.GetAnyServerInstance()
       à BusinessObjects.ReportEngine.WI.Internal.WIReportEngine.get_IsReady()
    What do you suggest?

    Hi,
    Enterprise / ReportEngine SDK is not supported / tested / compatible with desktop / console apps.
    Could you try the same logic with a web services sdk, as WebServices SDk is the only SDK which could be used to develop thick client apps.
    - Bhushan
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Getting started and moving ahead with Crystal Reports .NET applications.

  • CommunicationException thrown when creating Context

    i am trying to connect to ourLDAP server (ldap://poseidon), yet when i go "environ.put(Context.PROVIDER_URL, "ldap://poseidon:389");, i get this exception message:
    javax.naming.CommunicationException: poseidon:389 [Root exception is java.security.AccessControlException: access denied (java.net.SocketPermission poseidon resolve)]
    i am able to access the server via Outlook's Directory Service and using Window's Address Book. the port's correct'n'all. suggestions around the office was that i was hitting the firewall, but i tried accessing an internal server that's behind the firewall and i get the same exception thrown.
    any ideas?

    It looks like you don't have proper socket permissions. Try changing your java.policy file to provide socket permissions like,
         // allows anyone to listen on un-privileged ports
         permission java.net.SocketPermission "*:389-", "connect,resolve,listen";

  • CommunicationException(NullPointerException) in InitialDirContext

    When creating a new InitialDirContext to connect to my LDAP server (with an ldaps connection), I keep getting
    javax.naming.CommunicationException: <MyLdapServer>:636 [Root exception is java.lang.NullPointerException]
    I debugged into the code, and found that the exception is thrown from
    LDAPCtxFactory.getUsingURLs.java:198, but unfortunately the JDK source code package does not include the source of this class.
    I'm running 1.4.2_04, the env HashMap that I pass to InitialDirContext contains
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, ldapURL);
    env.put(Context.SECURITY_PROTOCOL, "ssl");
    env.put("java.naming.ldap.factory.socket", LDAPSSLSocketFactory.class.getName());
    Has anyone observed the same problem and found a solution for it?

    Hello!
    I'm getting same (almost) exception:
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
         at javax.swing.BufferStrategyPaintManager.flushAccumulatedRegion(Unknown Source)
         at javax.swing.BufferStrategyPaintManager.endPaint(Unknown Source)
         at javax.swing.RepaintManager.endPaint(Unknown Source)
         at javax.swing.JComponent._paintImmediately(Unknown Source)
         at javax.swing.JComponent.paintImmediately(Unknown Source)
         at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
         at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
         at javax.swing.RepaintManager.seqPaintDirtyRegions(Unknown Source)
         at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(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)
    Has anybody found solution (No panalty threads, no custom repaint manager, no idea what is going on) Exception is being thrown from time to time, don't know when. I can't even catch it. Thanks ahaed!

  • CommunicationException installing Infrastructure

    Hi
    We're trying to install OAS 10.1.2.0.2 Infrastructure in a cluster enviroment with a 10g R2 Database for the metadata repository. We already installed the metadata repository without any problems. When we install the infrastructure I get the following error in the Infrastructure Schema Configuration Assistant:
    javax.naming.CommunicationException: ldap.myhost.com:636
    The OID process are up. They are bind to the 636 and 389 ports. If I do a ldapbind it will bind without problems but if I do a ldapsearch I get a time out error.
    Regards,
    Néstor Boscán

    You can install 9ias infrastructure on the same machine in a seperate oracle home. just make sure that you have enough memory and hard disk space.

  • CommunicationException - Incompatible versions

    I have a situation where it is necessary to invoke a method on a stateless SessionBean that resides in WLS 6.1.2 from a client application class that resides externally on WLS 5.1.0. Everytime I try to establish a context from the 5.1 server (whether to try and access an MDB or use RMI and/or JMS) , it throws a Communication Exception - IncompatibleVersion.
    javax.naming.CommunicationException. Root exception is weblogic.socket.UnrecoverableConnectException: [Login failed: 'Incompatible version:Incompatible versions - this server:6.1.2.0 client:5.1.0]
    I can't be the first one that has run into this issue - if anyone has any ideas/input, I would really appreciate it.
    Many thanks!
    ~ RomT

    Hi,
    Since they are talk to each other in two different languages, how do you expect that they can
    know each other ? your environment could be complicated, but I suggest that you contact
    the vendor for your question. Perhaps you need to upgrade your environment ? Perhaps you
    could develop your solution out of the box of AP server ?
    I have ever met a error that jsp container just prompt that internal error with lots of exception
    messages. Finally , I know the reason why . Because my database server and the driver running
    by the jsp applications are the different version. as yours. But my question is siimple, because
    my environment is simple.
    good luck,
    Alfred Wu

  • CommunicationException in NT

    Hello,
    I'm using sun jdk1.2 on an NT and I'm trying to connect to an Oracle 8.1.7 jvm. Even though I have gotten it to work fine with the client on a sun (running 1.2.2) when I put the client on NT 4.0 and try connecting to the same Oracle 8.1.7 ejbs, I get:
    javax.naming.CommunicationException: unknown service (ip address, port ,and instance)
    null

    Before re-install verify this error:
    Passwordjavax.naming.CommunicationException: amilsys.ansun-nt.com:4032.
    The installer couldn't connect to the OID, is it running?.
    If you thing it is running then try the following in the repository iasdb.
    select * from ods.ods_process
    You should se the info about the oidserver. Look for a
    -p parameter that indicates the port, you should see 4032, otherwise that is the problem, some times it is started on port 389.
    If it's not installed then verify if port 4032 is free or is used by some other process.
    If it was installed byt not working then try to start oidserver.
    Carlos

  • CommunicationException - Unknown host

    I can successfully initialize a new context/context to an Active Directory that is in a test domain, outside my work Domain. To do this I specify the servers IP address/port in the PROVIDER_URL environment property.
    When I subsequently attempt to search the AD using the established context I see a CommunicationException with a rootException of UnknownHost - the message detail contains the text 'testdomain.com:389'.
    Looks like the JNDI LDAP provider is trying to resolve the IP address to a server name, but it is failing.
    Anyone else seen this behaviour - any environment property I can set to inhibit it so that the IP address is used.
    TIA
    GK

    seems like your system is unable to resolve the hostname testdomain.com. use the IP address instead.
    Or you can add the hostname-IP mapping in the /etc/hosts file (in unix).
    For windows i think its the system32\drivers\etc\hosts file.
    127.0.0.1 localhost
    xx.xxx.xx.xxx testdomain.com

  • "CommunicationException: Unknown service" - CORBA helloworld

    I have installed 8i on NT (meanwhile praying for the linux port),
    and was able to get the CORBA helloworld example to compile and
    "loadjava" into Aurora. I can run it locally using the supplied
    "runit.bat" file, but when trying to connect to it from a remote
    client I consistently get the following exception at the point of
    "lookup" with the JNDI context -
    the ic.lookup(serviceURL+objectName) line:
    >>
    System Error: javax.naming.CommunicationException: Unknown
    service: 10.1.3.233:2481:TORVOLDS
    System Error: at
    oracle.aurora.jndi.sess_iiop.SessionCtx.initialContext(SessionCtx
    .java:507)
    System Error: at
    oracle.aurora.jndi.sess_iiop.SessionCtx.<init>(SessionCtx.java:35
    System Error: at
    oracle.aurora.jndi.sess_iiop.ServiceCtx.createSession(ServiceCtx.
    java:130)
    System Error: at
    oracle.aurora.jndi.sess_iiop.ServiceCtx.login(ServiceCtx.java:295
    System Error: at
    oracle.aurora.jndi.sess_iiop.ServiceCtx.defaultSession(ServiceCtx
    .java:185)
    System Error: at
    oracle.aurora.jndi.sess_iiop.ServiceCtx.lookup(ServiceCtx.java:32
    0)
    System Error: at
    oracle.aurora.jndi.sess_iiop.sess_iiopURLContext.lookup(sess_iiop
    URLContext.java:215)
    System Error: at
    oracle.aurora.jndi.sess_iiop.sess_iiopURLContext.lookup(sess_iiop
    URLContext.java:201)
    System Error: at
    javax.naming.InitialContext.lookup(InitialContext.java:288)
    System Error: at
    fmg.client.corba.Client.main(Client.java:43)
    <<
    The listener log shows me successfully connecting:
    >>
    19-JUL-99 19:49:32 * SUCCESS *
    (ADDRESS=(PROTOCOL=tcp)(HOST=10.1.3.233)(PORT=2481)) * establish
    * giop * 0
    <<
    There have been a couple newsgroup posting about this problem on
    the net but no answers. Hoping one of you all out there might
    have a clue.
    This exception occurs with jdk1.1.7 on linux, and under JBuilder2
    on Win98. The helloworld example itself was compiled with
    jdk1.1.8 on NT.
    TIA...
    Scott Fraser
    FMG Technologies, Inc.
    null

    ok, i've moved to 8.1.7.
    I'm using linux version but my problem now is when i try to connect to ejb [in code:
    CustomerHome ch = (CustomerHome)ic.lookup ("sess_iiop://myhost:2481:db1/test/customer");]NamingException caught:javax.naming.NameNotFoundException: Nothing bound for specified name [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound]
    I've inserted in my classpath reference to aurora_client.jar (in which org.omg.CosNaming.NamingContextPackage.NotFound is present).
    Please help me.
    Thanks in advance.

  • How to catch CommunicationException when lookup

    Hi,
    I'm developing an EJB application under glassfish server. I use InitialContext to get remote EJB's.
    there is any way that I could catch an exception if a certain EJB is unreachable?
    the only exception I can catch right now when lookup is NamingException but the ConnectException is caught internally with a looping thread and I can not control it.
    thanks a lot

    Hi Andre,
    I’m writing to just check
    in to see if the suggestions were helpful. If you need further help, please feel free to reply this post directly so we will be notified to follow it up.
    If
    you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    TechNet Community
    Support

  • Error while creating a application server connection in jdeveloper 10.1.3.2

    When I am trying to create a connection using the wizard with the following inputs
    hostname as :- localhost
    RMI Por as 22667
    When I use the test conection receive the following error
    racle.oc4j.admin.jmx.shared.exceptions.JMXRuntimeException: Error while getting remote MBeanServer for url: ormi://localhost:22667/default
         at oracle.oc4j.admin.jmx.client.CoreRemoteMBeanServer.fetchMBeanServerEjbRemote(CoreRemoteMBeanServer.java:502)
         at oracle.oc4j.admin.jmx.client.CoreRemoteMBeanServer.<init>(CoreRemoteMBeanServer.java:161)
         at oracle.oc4j.admin.jmx.client.RemoteMBeanServer.<init>(RemoteMBeanServer.java:128)
         at oracle.oc4j.admin.jmx.client.RemoteMBeanServer.getMBeanServer(RemoteMBeanServer.java:158)
         at oracle.oc4j.admin.jmx.client.ClientMBeanServerProxyFactory.getMBeanServer(ClientMBeanServerProxyFactory.java:68)
         at oracle.oc4j.admin.jmx.remote.rmi.RMIJMXConnectorImpl.getConnector(RMIJMXConnectorImpl.java:190)
         at oracle.oc4j.admin.jmx.remote.JMXConnectorImpl.connect(JMXConnectorImpl.java:400)
         at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:248)
         at oracle.jdevimpl.cm.dt.J2EEConnectionWrapper._getJMXConnector(J2EEConnectionWrapper.java:269)
         at oracle.jdevimpl.cm.dt.J2EEConnectionWrapper.getPresentation(J2EEConnectionWrapper.java:76)
         at oracle.jdevimpl.cm.dt.browser.j2ee.J2EEBrowser.openConnectionBrowser(J2EEBrowser.java:75)
         at oracle.jdeveloper.cm.dt.ConnectionNode$NodeOpen.doWork(ConnectionNode.java:423)
         at oracle.ide.dialogs.ProgressRunnable.run(ProgressRunnable.java:159)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:551)
         at java.lang.Thread.run(Thread.java:613)
    Caused by: javax.naming.NamingException: Error reading application-client descriptor: Error communicating with server: Connection refused; nested exception is:
         javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused] [Root exception is java.lang.InstantiationException: Error communicating with server: Connection refused; nested exception is:
         javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused]]
         at oracle.j2ee.naming.ApplicationClientInitialContextFactory.getApplicationContext(ApplicationClientInitialContextFactory.java:127)
         at oracle.j2ee.naming.ApplicationClientInitialContextFactory.getInitialContext(ApplicationClientInitialContextFactory.java:117)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at oracle.oc4j.admin.jmx.client.CoreRemoteMBeanServer.fetchMBeanServerEjbRemote(CoreRemoteMBeanServer.java:468)
         ... 14 more
    Caused by: java.lang.InstantiationException: Error communicating with server: Connection refused; nested exception is:
         javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused]
         at com.oracle.naming.J2EEContext.create(J2EEContext.java:104)
         at oracle.j2ee.naming.ApplicationClientInitialContextFactory.getApplicationContext(ApplicationClientInitialContextFactory.java:124)
         ... 20 more
    Caused by: oracle.oc4j.rmi.OracleRemoteException: Connection refused; nested exception is:
         javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused]
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.lookupResourceFinder(ApplicationClientResourceFinder.java:110)
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.getFinder(ApplicationClientResourceFinder.java:123)
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.getLocation(ApplicationClientResourceFinder.java:75)
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.getEjbBinding(ApplicationClientResourceFinder.java:38)
         at com.oracle.naming.J2EEContext.addEJBReferenceEntries(J2EEContext.java:515)
         at com.oracle.naming.J2EEContext.create(J2EEContext.java:97)
         ... 21 more
    Caused by: javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused]
         at com.evermind.server.rmi.RMIClient.lookup(RMIClient.java:292)
         at com.evermind.server.rmi.RMIClientContext.lookup(RMIClientContext.java:51)
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.lookupResourceFinder(ApplicationClientResourceFinder.java:101)
         ... 26 more
    Caused by: java.net.ConnectException: Connection refused
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:428)
         at java.net.Socket.connect(Socket.java:507)
         at java.net.Socket.connect(Socket.java:457)
         at java.net.Socket.<init>(Socket.java:365)
         at java.net.Socket.<init>(Socket.java:207)
         at com.evermind.server.rmi.RMIClientConnection.createSocket(RMIClientConnection.java:682)
         at oracle.oc4j.rmi.ClientSocketRmiTransport.createNetworkConnection(ClientSocketRmiTransport.java:58)
         at oracle.oc4j.rmi.ClientRmiTransport.connectToServer(ClientRmiTransport.java:78)
         at oracle.oc4j.rmi.ClientSocketRmiTransport.connectToServer(ClientSocketRmiTransport.java:68)
         at com.evermind.server.rmi.RMIClientConnection.connect(RMIClientConnection.java:646)
         at com.evermind.server.rmi.RMIClientConnection.sendLookupRequest(RMIClientConnection.java:190)
         at com.evermind.server.rmi.RMIClientConnection.lookup(RMIClientConnection.java:174)
         at com.evermind.server.rmi.RMIClient.lookup(RMIClient.java:283)
         ... 28 more
    ---- Embedded exception
    javax.naming.NamingException: Error reading application-client descriptor: Error communicating with server: Connection refused; nested exception is:
         javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused] [Root exception is java.lang.InstantiationException: Error communicating with server: Connection refused; nested exception is:
         javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused]]
         at oracle.j2ee.naming.ApplicationClientInitialContextFactory.getApplicationContext(ApplicationClientInitialContextFactory.java:127)
         at oracle.j2ee.naming.ApplicationClientInitialContextFactory.getInitialContext(ApplicationClientInitialContextFactory.java:117)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at oracle.oc4j.admin.jmx.client.CoreRemoteMBeanServer.fetchMBeanServerEjbRemote(CoreRemoteMBeanServer.java:468)
         at oracle.oc4j.admin.jmx.client.CoreRemoteMBeanServer.<init>(CoreRemoteMBeanServer.java:161)
         at oracle.oc4j.admin.jmx.client.RemoteMBeanServer.<init>(RemoteMBeanServer.java:128)
         at oracle.oc4j.admin.jmx.client.RemoteMBeanServer.getMBeanServer(RemoteMBeanServer.java:158)
         at oracle.oc4j.admin.jmx.client.ClientMBeanServerProxyFactory.getMBeanServer(ClientMBeanServerProxyFactory.java:68)
         at oracle.oc4j.admin.jmx.remote.rmi.RMIJMXConnectorImpl.getConnector(RMIJMXConnectorImpl.java:190)
         at oracle.oc4j.admin.jmx.remote.JMXConnectorImpl.connect(JMXConnectorImpl.java:400)
         at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:248)
         at oracle.jdevimpl.cm.dt.J2EEConnectionWrapper._getJMXConnector(J2EEConnectionWrapper.java:269)
         at oracle.jdevimpl.cm.dt.J2EEConnectionWrapper.getPresentation(J2EEConnectionWrapper.java:76)
         at oracle.jdevimpl.cm.dt.browser.j2ee.J2EEBrowser.openConnectionBrowser(J2EEBrowser.java:75)
         at oracle.jdeveloper.cm.dt.ConnectionNode$NodeOpen.doWork(ConnectionNode.java:423)
         at oracle.ide.dialogs.ProgressRunnable.run(ProgressRunnable.java:159)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:551)
         at java.lang.Thread.run(Thread.java:613)
    Caused by: java.lang.InstantiationException: Error communicating with server: Connection refused; nested exception is:
         javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused]
         at com.oracle.naming.J2EEContext.create(J2EEContext.java:104)
         at oracle.j2ee.naming.ApplicationClientInitialContextFactory.getApplicationContext(ApplicationClientInitialContextFactory.java:124)
         ... 20 more
    Caused by: oracle.oc4j.rmi.OracleRemoteException: Connection refused; nested exception is:
         javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused]
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.lookupResourceFinder(ApplicationClientResourceFinder.java:110)
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.getFinder(ApplicationClientResourceFinder.java:123)
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.getLocation(ApplicationClientResourceFinder.java:75)
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.getEjbBinding(ApplicationClientResourceFinder.java:38)
         at com.oracle.naming.J2EEContext.addEJBReferenceEntries(J2EEContext.java:515)
         at com.oracle.naming.J2EEContext.create(J2EEContext.java:97)
         ... 21 more
    Caused by: javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused]
         at com.evermind.server.rmi.RMIClient.lookup(RMIClient.java:292)
         at com.evermind.server.rmi.RMIClientContext.lookup(RMIClientContext.java:51)
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.lookupResourceFinder(ApplicationClientResourceFinder.java:101)
         ... 26 more
    Caused by: java.net.ConnectException: Connection refused
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:428)
         at java.net.Socket.connect(Socket.java:507)
         at java.net.Socket.connect(Socket.java:457)
         at java.net.Socket.<init>(Socket.java:365)
         at java.net.Socket.<init>(Socket.java:207)
         at com.evermind.server.rmi.RMIClientConnection.createSocket(RMIClientConnection.java:682)
         at oracle.oc4j.rmi.ClientSocketRmiTransport.createNetworkConnection(ClientSocketRmiTransport.java:58)
         at oracle.oc4j.rmi.ClientRmiTransport.connectToServer(ClientRmiTransport.java:78)
         at oracle.oc4j.rmi.ClientSocketRmiTransport.connectToServer(ClientSocketRmiTransport.java:68)
         at com.evermind.server.rmi.RMIClientConnection.connect(RMIClientConnection.java:646)
         at com.evermind.server.rmi.RMIClientConnection.sendLookupRequest(RMIClientConnection.java:190)
         at com.evermind.server.rmi.RMIClientConnection.lookup(RMIClientConnection.java:174)
         at com.evermind.server.rmi.RMIClient.lookup(RMIClient.java:283)
         ... 28 more
    ---- Embedded exception
    java.lang.InstantiationException: Error communicating with server: Connection refused; nested exception is:
         javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused]
         at com.oracle.naming.J2EEContext.create(J2EEContext.java:104)
         at oracle.j2ee.naming.ApplicationClientInitialContextFactory.getApplicationContext(ApplicationClientInitialContextFactory.java:124)
         at oracle.j2ee.naming.ApplicationClientInitialContextFactory.getInitialContext(ApplicationClientInitialContextFactory.java:117)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at oracle.oc4j.admin.jmx.client.CoreRemoteMBeanServer.fetchMBeanServerEjbRemote(CoreRemoteMBeanServer.java:468)
         at oracle.oc4j.admin.jmx.client.CoreRemoteMBeanServer.<init>(CoreRemoteMBeanServer.java:161)
         at oracle.oc4j.admin.jmx.client.RemoteMBeanServer.<init>(RemoteMBeanServer.java:128)
         at oracle.oc4j.admin.jmx.client.RemoteMBeanServer.getMBeanServer(RemoteMBeanServer.java:158)
         at oracle.oc4j.admin.jmx.client.ClientMBeanServerProxyFactory.getMBeanServer(ClientMBeanServerProxyFactory.java:68)
         at oracle.oc4j.admin.jmx.remote.rmi.RMIJMXConnectorImpl.getConnector(RMIJMXConnectorImpl.java:190)
         at oracle.oc4j.admin.jmx.remote.JMXConnectorImpl.connect(JMXConnectorImpl.java:400)
         at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:248)
         at oracle.jdevimpl.cm.dt.J2EEConnectionWrapper._getJMXConnector(J2EEConnectionWrapper.java:269)
         at oracle.jdevimpl.cm.dt.J2EEConnectionWrapper.getPresentation(J2EEConnectionWrapper.java:76)
         at oracle.jdevimpl.cm.dt.browser.j2ee.J2EEBrowser.openConnectionBrowser(J2EEBrowser.java:75)
         at oracle.jdeveloper.cm.dt.ConnectionNode$NodeOpen.doWork(ConnectionNode.java:423)
         at oracle.ide.dialogs.ProgressRunnable.run(ProgressRunnable.java:159)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:551)
         at java.lang.Thread.run(Thread.java:613)
    Caused by: oracle.oc4j.rmi.OracleRemoteException: Connection refused; nested exception is:
         javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused]
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.lookupResourceFinder(ApplicationClientResourceFinder.java:110)
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.getFinder(ApplicationClientResourceFinder.java:123)
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.getLocation(ApplicationClientResourceFinder.java:75)
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.getEjbBinding(ApplicationClientResourceFinder.java:38)
         at com.oracle.naming.J2EEContext.addEJBReferenceEntries(J2EEContext.java:515)
         at com.oracle.naming.J2EEContext.create(J2EEContext.java:97)
         ... 21 more
    Caused by: javax.naming.CommunicationException: Connection refused [Root exception is java.net.ConnectException: Connection refused]
         at com.evermind.server.rmi.RMIClient.lookup(RMIClient.java:292)
         at com.evermind.server.rmi.RMIClientContext.lookup(RMIClientContext.java:51)
         at oracle.oc4j.deployment.ApplicationClientResourceFinder.lookupResourceFinder(ApplicationClientResourceFinder.java:101)
         ... 26 more
    Caused by: java.net.ConnectException: Connection refused
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:428)
         at java.net.Socket.connect(Socket.java:507)
         at java.net.Socket.connect(Socket.java:457)
         at java.net.Socket.<init>(Socket.java:365)
         at java.net.Socket.<init>(Socket.java:207)
         at com.evermind.server.rmi.RMIClientConnection.createSocket(RMIClientConnection.java:682)
         at oracle.oc4j.rmi.ClientSocketRmiTransport.createNetworkConnection(ClientSocketRmiTransport.java:58)
         at oracle.oc4j.rmi.ClientRmiTransport.connectToServer(ClientRmiTransport.java:78)
         at oracle.oc4j.rmi.ClientSocketRmiTransport.connectToServer(ClientSocketRmiTransport.java:68)
         at com.evermind.server.rmi.RMIClientConnection.connect(RMIClientConnection.java:646)
         at com.evermind.server.rmi.RMIClientConnection.sendLookupRequest(RMIClientConnection.java:190)
         at com.evermind.server.rmi.RMIClientConnection.lookup(RMIClientConnection.java:174)
         at com.evermind.server.rmi.RMIClient.lookup(RMIClient.java:283)
         ... 28 more

    Caused by: java.net.ConnectException: Connection refused
    Is the Oracle application server running?

  • Untrusted server cert chain - while connecting with ldap

    Hi All,
    I am getting the following error while running a standalone java program in windows 2000+jdk1.3 environment to connect with LDAP.
    javax.naming.CommunicationException: hostname:636 [Root exception is ja
    vax.net.ssl.SSLException: untrusted server cert chain]
    javax.naming.CommunicationException: hostname:636. Root exception is j
    avax.net.ssl.SSLException: untrusted server cert chain
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA12275)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.a(DashoA12275)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(DashoA12
    275)
    at com.sun.net.ssl.internal.ssl.Handshaker.process_record(DashoA12275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA12275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA12275)
    at com.sun.net.ssl.internal.ssl.AppOutputStream.write(DashoA12275)
    at java.io.OutputStream.write(Unknown Source)
    at com.sun.jndi.ldap.Connection.<init>(Unknown Source)
    at com.sun.jndi.ldap.LdapClient.<init>(Unknown Source)
    at com.sun.jndi.ldap.LdapCtx.connect(Unknown Source)
    at com.sun.jndi.ldap.LdapCtx.<init>(Unknown Source)
    at com.sun.jndi.ldap.LdapCtxFactory.getInitialContext(Unknown Source)
    at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
    at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
    at javax.naming.InitialContext.init(Unknown Source)
    at javax.naming.InitialContext.<init>(Unknown Source)
    at javax.naming.directory.InitialDirContext.<init>(Unknown Source)
    at Test2.getProxyDirContext(Test2.java:66)
    at Test2.main(Test2.java:40)
    Any help would be appreciated
    Thanks in Advance
    Somu

    This got resolved when in the code the following
    System.setProperty("javax.net.ssl.tmrustStore", CertFileName);
    where cert file name is the filename with complete path.the file is a CA certificate of the LDAP server
    in X509 format

  • Problems with AS 10g and OID

    Hello everyone,
    we got problems with starting OC4J_bi_forms component in AS control.
    database: 10g R2 (10.2.0.1)
    forms and reports: 10g (10.1.2.0.2.)
    designer: 10g (10.1.2.0.2.)
    1. we tried to start component in AS control but we get this error:
    The following components were not started:
    OC4J : home - time out while waiting for a managed process to start
    OC4J : OC4J_BI_Forms - time out while waiting for a managed process to start
    OC4J : OC4J_Portal - time out while waiting for a managed process to start
    For more information, look at the logs using the related link below.
    Related Link Error Logs
    2. then we check the error file that describes problems with OID:
    Error displaying Log Files page. Failed to initialize configuration management user session.. The OracleAS Repository API threw an exception when obtaining the connect string to the Metadata Repository
    Resolution:
    Check the exception thrown by the Repository API for resolution information.
    Some common causes of this problem are as follows:
    OID is not running or unavailable
    the ias.properties file is misconfigured with incorrect OID connection information
    OID permissions are incorrectly defined
    Base Exception:
    oracle.ias.repository.schema.SchemaException
    Unable to establish connection to the Oracle Internet Directory Server ldap://server_xy:389/. Base Exception : javax.naming.CommunicationException: server_xy:389 [Root exception is java.net.ConnectException: Connection refused: connect]. Unable to establish connection to the Oracle Internet Directory Server ldap://server_xy:389/. Base Exception : javax.naming.CommunicationException: server_xy:389 [Root exception is java.net.ConnectException: Connection refused: connect]
    3. we check the status with opmnctl status, all components are down
    4. then we tried to start components manually with opmnctl stopall/startall
    but the problem isn't solved.
    Any help?

    hello Jacco,
    thank you very much for your help, we are now able to start oc4j_bi_forms.
    We follow your advice, at the end we had to change ODS password with oidpasswd to ias_admin password.
    Now all components are started.
    We now must solve only one problem:
    All AS components are started, but when in Application Server Control we click link for
    J2EE Applications we get this error:
    An error was encountered while loading page. Failed to initialize configuration management user session.. The OracleAS Repository API threw an exception when obtaining the connect string to the Metadata Repository
    Resolution:
    Check the exception thrown by the Repository API for resolution information.
    Some common causes of this problem are as follows:
    OID is not running or unavailable
    the ias.properties file is misconfigured with incorrect OID connection information
    OID permissions are incorrectly defined
    Base Exception:
    oracle.ias.repository.schema.SchemaException
    Unable to establish connection to the Oracle Internet Directory Server ldap://server_xy:389/. Base Exception : javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials]. Unable to establish connection to the Oracle Internet Directory Server ldap://server_xy:389/. Base Exception : javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials]
    Thanks for your help one more time.

  • List Of Values not getting displayed in BI launchpad

    Hello All,
    When i am running the report in BI launchpad, List of values are not displaying . throwing below error.
    Detail Error:
    com.businessobjects.sdk.core.server.CommunicationException$UnexpectedServerException: while trying to invoke the method com.businessobjects.mds.olap.protocol.bics.BICSClient.getCube() of a null object loaded from field com.sap.sl.proxyconsumption.services.olapaccessservice.BICSDiscoverServer.bicsClient of an object loaded from local variable 'this'
    @The same report is working fine in WEBI Rich client.
    I am using 4.1 SPO3 Patch 2
    Please Help on this.
    Thanks,
    Ramesh

    Hi,Supriya!
    We are having problem looking like that (After report had been made if I click Refresh button and wait for Values for prompts - the same error message appears).
    My user is in admin group and if log as Administrator - nothing changes.
    Could you give me advice?

  • Logging configuration is missing or invalid for target

    Hi,
    I am getting this error while starting the SOA Server
    HTTP to server: '[2001:0:cf2e:3096:30be:1076:3f57:fefc]', port: '7001'
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:314)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:404)
    at weblogic.net.http.HttpClient.New(HttpClient.java:240)
    at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:17
    2)
    at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.
    getDataAsStream(HttpDataTransferHandler.java:75)
    Truncated. see log file for complete stacktrace
    >
    java.net.ConnectException: Tried all: '1' addresses, but could not connect over
    HTTP to server: '[2001:0:cf2e:3096:30be:1076:3f57:fefc]', port: '7001'
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:314)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:404)
    at weblogic.net.http.HttpClient.New(HttpClient.java:240)
    at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:17
    2)
    at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.
    getDataAsStream(HttpDataTransferHandler.java:75)
    at weblogic.deploy.service.datatransferhandlers.DataHandlerManager$Remot
    eDataTransferHandler.getDataAsStream(DataHandlerManager.java:153)
    at weblogic.deploy.internal.targetserver.datamanagement.AppDataUpdate.do
    Download(AppDataUpdate.java:39)
    at weblogic.deploy.internal.targetserver.datamanagement.DataUpdate.downl
    oad(DataUpdate.java:56)
    at weblogic.deploy.internal.targetserver.datamanagement.Data.prepareData
    Update(Data.java:97)
    at weblogic.deploy.internal.targetserver.BasicDeployment.prepareDataUpda
    te(BasicDeployment.java:682)
    at weblogic.deploy.internal.targetserver.BasicDeployment.stageFilesForSt
    atic(BasicDeployment.java:725)
    at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeploy
    ment.java:104)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(Dep
    loymentAdapter.java:39)
    at weblogic.management.deploy.internal.DeploymentAdapter.prepare(Deploym
    entAdapter.java:187)
    at weblogic.management.deploy.internal.AppTransition$1.transitionApp(App
    Transition.java:21)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionA
    pps(ConfiguredDeployments.java:233)
    at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(Con
    figuredDeployments.java:165)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(Conf
    iguredDeployments.java:122)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(De
    ploymentServerService.java:173)
    at weblogic.management.deploy.internal.DeploymentServerService.start(Dep
    loymentServerService.java:89)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    <Aug 27, 2009 12:15:16 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'usermessagingdriver-email' due to error weblogic.managemen
    t.DeploymentException: Exception occured while downloading files.
    weblogic.management.DeploymentException: Exception occured while downloading fil
    es
    at weblogic.deploy.internal.targetserver.datamanagement.AppDataUpdate.do
    Download(AppDataUpdate.java:43)
    at weblogic.deploy.internal.targetserver.datamanagement.DataUpdate.downl
    oad(DataUpdate.java:56)
    at weblogic.deploy.internal.targetserver.datamanagement.Data.prepareData
    Update(Data.java:97)
    at weblogic.deploy.internal.targetserver.BasicDeployment.prepareDataUpda
    te(BasicDeployment.java:682)
    at weblogic.deploy.internal.targetserver.BasicDeployment.stageFilesForSt
    atic(BasicDeployment.java:725)
    Truncated. see log file for complete stacktrace
    java.net.ConnectException: Tried all: '1' addresses, but could not connect over
    HTTP to server: '[2001:0:cf2e:3096:30be:1076:3f57:fefc]', port: '7001'
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:314)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:404)
    at weblogic.net.http.HttpClient.New(HttpClient.java:240)
    at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:17
    2)
    at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.
    getDataAsStream(HttpDataTransferHandler.java:75)
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:15:17 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'soa-infra' due to error weblogic.management.DeploymentExce
    ption: [J2EE:160149]Error while processing library references. Unresolved applic
    ation library references, defined in weblogic-application.xml: [Extension-Name:
    adf.oracle.domain, exact-match: false], [Extension-Name: oracle.sdp.messaging, e
    xact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: adf.oracle.domain, exact-match: false], [Exten
    sion-Name: oracle.sdp.messaging, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:609)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:185)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:53)
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:15:18 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'worklistapp' due to error weblogic.management.DeploymentEx
    ception: [J2EE:160149]Error while processing library references. Unresolved appl
    ication library references, defined in weblogic-application.xml: [Extension-Name
    : adf.oracle.domain, exact-match: false], [Extension-Name: oracle.jsp.next, exac
    t-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: adf.oracle.domain, exact-match: false], [Exten
    sion-Name: oracle.jsp.next, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:609)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:185)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:53)
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:15:20 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'b2bui' due to error weblogic.management.DeploymentExceptio
    n: [J2EE:160149]Error while processing library references. Unresolved applicatio
    n library references, defined in weblogic-application.xml: [Extension-Name: adf.
    oracle.domain, exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: adf.oracle.domain, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:609)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:185)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:53)
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:15:20 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'DefaultToDoTaskFlow' due to error weblogic.management.Depl
    oymentException: [J2EE:160149]Error while processing library references. Unresol
    ved application library references, defined in weblogic-application.xml: [Extens
    ion-Name: adf.oracle.domain, Implementation-Version: 11.1.1.1.0, exact-match: fa
    lse], [Extension-Name: oracle.jsp.next, exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: adf.oracle.domain, Implementation-Version: 11.
    1.1.1.0, exact-match: false], [Extension-Name: oracle.jsp.next, exact-match: fal
    se].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:609)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:185)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:53)
    Truncated. see log file for complete stacktrace
    >
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    Aug 27, 2009 12:15:47 PM oracle.wsm.common.logging.WsmMessageLogger logSevere
    SEVERE: Failure in looking up EJB component QueryService#oracle.wsm.policymanage
    r.ejb.IStringQueryServiceRemote.
    <Aug 27, 2009 12:16:29 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to ADMIN>
    <Aug 27, 2009 12:16:34 PM IST> <Warning> <Log Management> <BEA-170011> <The LogB
    roadcaster on this server failed to broadcast log messages to the admin server.
    The Admin server may not be running. Message broadcasts to the admin server will
    be disabled.>
    <Aug 27, 2009 12:17:11 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to RESUMING>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    3]" is now listening on fe80:0:0:0:39b9:eee1:8736:8262:8001 for protocols iiop,
    t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    4]" is now listening on fe80:0:0:0:30be:1076:3f57:fefc:8001 for protocols iiop,
    t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    7]" is now listening on 0:0:0:0:0:0:0:1:8001 for protocols iiop, t3, ldap, snmp,
    http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    1]" is now listening on 192.168.1.3:8001 for protocols iiop, t3, ldap, snmp, htt
    p.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default"
    is now listening on 2001:0:cf2e:3096:30be:1076:3f57:fefc:8001 for protocols iio
    p, t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    5]" is now listening on fe80:0:0:0:c931:e3ad:23b7:a24c:8001 for protocols iiop,
    t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    2]" is now listening on fe80:0:0:0:39e8:36d5:9f8b:f988:8001 for protocols iiop,
    t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    6]" is now listening on fe80:0:0:0:0:5efe:c0a8:103:8001 for protocols iiop, t3,
    ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    8]" is now listening on 127.0.0.1:8001 for protocols iiop, t3, ldap, snmp, http.
    >
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <WebLogicServer> <BEA-000357> <Started W
    ebLogic Independent Managed Server "soa_server1" for domain "domain1" running in
    Development Mode>
    <Aug 27, 2009 12:17:16 PM IST> <Warning> <Server> <BEA-002611> <Hostname "Metamo
    rph26-PC", maps to multiple IP addresses: 192.168.1.3, fe80:0:0:0:30be:1076:3f57
    :fefc%11, fe80:0:0:0:c931:e3ad:23b7:a24c%13, fe80:0:0:0:0:5efe:c0a8:103%14, 2001
    :0:cf2e:3096:30be:1076:3f57:fefc>
    <Aug 27, 2009 12:19:24 PM IST> <Warning> <JMX> <BEA-149509> <Unable to establish
    JMX Connectivity with the Adminstration Server AdminServer at service:jmx:t3://
    [2001:0:cf2e:3096:30be:1076:3f57:fefc]:7001/jndi/weblogic.management.mbeanserver
    s.domainruntime.
    java.io.IOException
    at weblogic.management.remote.common.ClientProviderBase.makeConnection(C
    lientProviderBase.java:187)
    at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(
    ClientProviderBase.java:81)
    at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnec
    torFactory.java:338)
    at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFacto
    ry.java:247)
    at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainR
    untimeService.getDomainMBeanServerConnection(RegisterWithDomainRuntimeService.ja
    va:206)
    Truncated. see log file for complete stacktrace
    javax.naming.CommunicationException [Root exception is java.net.ConnectException
    : t3://[2001:0:cf2e:3096:30be:1076:3f57:fefc]:7001: Destination unreachable; nes
    ted exception is:
    java.net.ConnectException: Connection timed out: connect; No available r
    outer to destination]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(Exceptio
    nTranslator.java:40)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLIni
    tialContextFactoryDelegate.java:783)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:367)
    at weblogic.jndi.Environment.getContext(Environment.java:315)
    at weblogic.jndi.Environment.getContext(Environment.java:285)
    Truncated. see log file for complete stacktrace
    java.net.ConnectException: t3://[2001:0:cf2e:3096:30be:1076:3f57:fefc]:7001: Des
    tination unreachable; nested exception is:
    java.net.ConnectException: Connection timed out: connect; No available r
    outer to destination
    at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:216)
    at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:170)
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLI
    nitialContextFactoryDelegate.java:400)
    at weblogic.jndi.Environment.getInitialReference(Environment.java:245)
    Truncated. see log file for complete stacktrace
    java.rmi.ConnectException: Destination unreachable; nested exception is:
    java.net.ConnectException: Connection timed out: connect; No available r
    outer to destination
    at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:464)
    at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:315)
    at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java
    :251)
    at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:194)t
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:238
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:20:06 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to RUNNING>
    <Aug 27, 2009 12:20:06 PM IST> <Notice> <WebLogicServer> <BEA-000360> <Server st
    arted in RUNNING mode>
    I have reinstall it again and again but the same exception is coming.Please help me out.
    Thanks
    Ap

    It seem that you are missing libraries to start the application:
    Error while processing library references. Unresolved applic
    +ation library references, defined in weblogic-application.xml: [Extension-Name:+
    adf.oracle.domain, exact-match: false], [Extension-Name: *oracle.sdp.messaging*, e+
    +xact-match: false]..+
    weblogic.management.DeploymentException: J2EE:160149Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    +application.xml: Extension-Name: adf.oracle.domain, exact-match: false, [Exten+
    sion-Name: oracle.sdp.messaging, exact-match: false].
    Either you haven't installed the libraries or you have installed them to the Admin server and need to activate them on the managed server. You should be able to see if they are installed if you look at the deployments overview in the weblogic console. I found this blog entry usefull when I needed to install the libraries for adf:
    http://one-size-doesnt-fit-all.blogspot.com/2009/01/configuring-weblogic-server.html
    If they are installed you might want to check each of them if they are assigned to you managed server target. You can select them in the deployment overview and choose the target option. There should be a check mark at the server you deployed your application to.
    Best regards,
    Sturla

Maybe you are looking for

  • Ipad 1 not appearing in itunes. I am running 10.6.8 and have itunes 10.3.1

    I have been given a first generation ipad and it will not appear in itunes. I have 10.6.8 installed with itunes 10.3.1. I connected the cable to the USB port in the back of the computer and when i connect to the ipad there is the audible sound when a

  • Sorting A Table Based on single Column

    Hi, I wrote the piece of code to sort a webdynpro Table. wdContext.nodeKMAccess().sortElements(      new Comparator()      public int compare(Object x, Object y)      int iX,iY;      IPrivateDownloadKMHitsReportView.IKMAccessElement rx = (IPrivateDow

  • Checking for Pending Changes when a region changes

    Hello community, I developed my whole application using a main page Template, which includes a region. This way, we have a main menu and the region gets updated with every different taskflow as the user navigates through. The problem is, I don't get

  • ALE-IDOC Error -Function module not allowed: ZIDOC_INPUT_MATCLASS

    Hello all, I am having a requirement to enhace bd10  to suit for material master.For that i have written a Z-function module to at inbound side. Function module has coading for extended segments and z processing code is created for the same. The issu

  • USB Webcam when using Bootcamp to run WindowsXP?

    Is it possible to use an external webcam, e.g., Logitech's, and able to use it on the iMac running WindowsXP with Bootcamp? I'm planning to use it with MSN Messanger 7.5. Thanks. I just wish that Microsoft will come out with a crossplatform Messanger