Im Stuck, error in my server (j2se socket) with j2me (socket)

I dunt understand, previous worked, now (2.3beta wireless toolkit) doenst work anymore, u guys can help me?
SERVER CODE J2SE
package com.pc.jwolf.server.testes;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
public class Teste01 {
     public Teste01() throws IOException {
          ServerSocket s = new ServerSocket(3131);
          Socket sx = s.accept();
          DataInputStream input = new DataInputStream(sx.getInputStream());
          DataOutputStream output = new DataOutputStream(sx.getOutputStream());
          output.flush();
          int c = 0;
          StringBuffer b = new StringBuffer();
          while((c=input.read()) != -1) b.append((char) c);
          System.out.println(new String(b));
     public static void main(String[] args) {
          try {
               new Teste01();
          } catch (IOException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
}MOBILE CODE (J2ME) CLDC 1.1 Profile 2.0
import java.io.DataInputStream;
import java.io.DataOutputStream;
import javax.microedition.io.Connector;
import javax.microedition.io.SocketConnection;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;
public class Midlet extends MIDlet {
     protected void startApp() throws MIDletStateChangeException {
          // TODO Auto-generated method stub
          try {
               SocketConnection sc = (SocketConnection) Connector
                         .open("socket://127.0.0.1:3131");
               DataInputStream input = sc.openDataInputStream();
               DataOutputStream out = sc.openDataOutputStream();
               out.flush();
               out.writeUTF("HELLO WORLD!!!!!!");
               out.flush();
          } catch (Exception e) {
               // TODO: handle exception
               e.printStackTrace();
     protected void pauseApp() {
          // TODO Auto-generated method stub
     protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
          // TODO Auto-generated method stub
}My server cant read the message... whats wrong?
Tkz.

Hi,
I the exact same problem. I didn't quite understand what you meant by closing the socket. When i close the socket on the server side before I enter the whole look it throws an exception. Could please help out and maybe paste a little code to explain further.
Thank you

Similar Messages

  • Error starting ORMI-Server.  Unable to bind socket: Address already in use:

    hi,
    I run the folowing command "start_oc4j.bat" to start Oc4j.
    It starts successfully.
    Then I start "BPEL PM Server".
    I get the following error,
    "Error starting ORMI-Server. Unable to bind socket: Address already in use: JVM_Bind".
    I understand the above errror because both of them are trying to bind to the same port. And both of them are trying to start ORMI server. Can some one suggest how to get rid of this problem.
    I tried giving different port numbers for them, but that did not work. Let me know, how to over come this problem.
    with regards
    shaila

    You may have another OC4J running on your computer.
    You should change the port number in the file config/rmi.xml.

  • Error starting ORMI-Server. Uable to bind socket

    Hi,
    I get the following error whenever I start my Application Server on Linux machine.
    If I deploy the EJB application onto a OC4J instance, the server is refusing the connection by throwing Connection Refused error.
    Any insight about this issue will be helpful.
    Thanks,
    Mohan
    04/07/08 17:14:42 Error starting ORMI-Server. Unable to bind socket: Address already in use
    04/07/08 17:14:44 Oracle Application Server Containers for J2EE 10g (9.0.4.0.0) initialized
    04/07/08 17:14:44 java.lang.NullPointerException
    04/07/08 17:14:44 at com.evermind.server.rmi.RMIServer.run(RMIServer.java:470)
    04/07/08 17:14:44 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Releasabl
    eResourcePooledExecutor.java:186)
    04/07/08 17:14:44 at java.lang.Thread.run(Thread.java:534)

    Hi Avi,
    of course you are right that the standalone OC4J ist not the same as an OC4J instance within the Oracle Application Server though from my point of view many J2EE-Server related questions or problems regarding the EJB- and or WEB-container could be answered/handled same or equally.
    That's why I'm a little bit irritated by your statement. From a forum user's perspective I'd hate it to follow eg all those Forms and Reports service discussions if I were a Java Developer or Deployer. So I would like to see all posts regarding the OC4J-Container here (no matter if standalone or inside OAS). Nevertheless everybody should clearly indicate the exact product version including the distinction beetween standalone and OAS.
    Just my 0.2 about this. What do others think?
    Avi, if you really want all discussion about OAS including OC4J topics to happen within the "Application Server - General" forum, I'd suggest you add a forum description which makes that clear.
    Well, if one can persuade you to not follow such a strict separation as I argued against, it could be still beneficial to add a meaningful forum description (eg. to remind people of the distinction between standalone OC4J and OAS.
    Thoughts?
    Regards,
    Eric

  • "Error Starting OMI-Server. Unable to bind socket.Permission denied. Listen

    Hi All,
    I Installed Forms 1o-g successfully on my mishon ( Version windows vista), when i try to connect Forms i got error
    like this *"Error Starting OMI-Server. Unable to bind socket.Permission denied. Listen*
    Plz Anyone help....
    Thanks
    sa.....

    Which version of Windows Vista? Bear in mind that Vista home edition is not supported by Oracle (I think for all products). If that is the case, you should be upgrading your OS to business or ultimate edition.
    If that is not the case, please get in touch with Oracle support. Not much is available on internet or in forums (as you seem to have posted this in Forms forum as well).

  • Error starting ORMI-Server. Unable to bind socket...

    One of our BPEL App Servers was moved from a local network to a LAN. I believe it's IP was changed. When we start it with opmnctl startall we get the following error message:
    bq. Error starting ORMI-Server. Unable to bind socket: Cannot assign requested address
    There does not seem to be a resource issue with regard to ports. A netstat -p doesn't show any potential port conflicts. In a WEB search I came across the following suggested check:
    bq. Solution: \\ *A) Check if your IP address or hostname is changed or if there is a conflict of resources in the network*
    Can someone explain what needs to be fixed if the IP Address or hostname of the BPEL App Server has changed? What files need to be corrected to get the install to startup.

    You may have another OC4J running on your computer.
    You should change the port number in the file config/rmi.xml.

  • Win socket with applet socket by byte type data network

    Server is windock
    Client is applet
    How do i receive and send byte type data..
    What i do using sock type?
    UDP? just i use Inputstream, Outputstream?
    and i some warring..
    Packet Buffering...
    how do i?
    plz help me...

    Hi
    Search the Forum for "socket", start reading other people questions and answers, i am sure that after spending few hours you will find some answers.
    Noah

  • Error Starting ORMI-Server

    Hi
    I am using 10g Enterprise Edition on Linux Advance Server 3.0 and Enterprise Manager.
    I get the following error when starting up each Container I have created.
    04/01/14 10:25:56 Error starting ORMI-Server. Unable to bind socket: Address already in use
    04/01/14 10:25:59 java.lang.NullPointerException
    04/01/14 10:25:59 at com.evermind.server.rmi.RMIServer.run(RMIServer.java:470)
    04/01/14 10:25:59 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
    04/01/14 10:25:59 at java.lang.Thread.run(Thread.java:534)
    I changed the port number ranges via EM and in "opmn.xml" to limit each container to its own range, but no success.
    Even i set the specific port for each service.
    M. Tahir.

    hi ramesh,
    this is sateesh. I only posted the above request
    before i found the solution. but with different
    trials i got that at last.
    --sateesh(TCS)Hi Sateesh,
    i'm using the Oracle 10g AS (9.0.4) on RedHat Linux 3.0 Advanced Server.
    I've formatted my machine, installed redhat and then 10g AS. There are no other softwares installed on my machine.
    After installation, I've created an Instace of OC4J server using IAS console, started the instance and got a message saying my instance has been started. But when i look at the log file in %ORACLE_HOME%/opmn/logs i got a message saying "Error starting ORMI-Server. Unable to bind socket: Address already in use".
    I've searched this forum for this and did all the kinds of modifications suggested by others and found no success. U said that u've tried other way and found the solution. Could you please help me out with the solution. I've tried stopping the default server instance being created at the time of 10 gAS installation. When i looked at the ports in use for the application server, its listing different ports for JMS, RMI and AJP but the same port for Oracle HTTP Server as 7778.
    P.S.: this is not only for sateesh, but for any one who could help me out with the solution.
    Please help me ASAP as its urgent for me and I've spent last 5 days for this.
    Any kind of help regarding this would be highly appreciated.
    Thanks,
    Balakrishna

  • Who Can help me? About "Error 500--Internal Server Error"

    Dear,brothers,
              I can run AdminMain in "http://192.9.100.3:7001/AdminMain". But when I run
              pooltest in
              "http://192.9.100.3:7001/pooltest". It cannot work.It displays:
              Error 500--Internal Server Error
              From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              10.5.1 500 Internal Server Error
              The server encountered an unexpected condition which prevented it from
              fulfilling the request.
              When I see the weblogic.log,there are some information about it:
              Wed Jun 28 20:03:51 MDT 2000:<E> <IIOPSocket> failed to configure user for
              iiop protocol
              Wed Jun 28 20:03:56 MDT 2000:<E> <ServletContext-General> Error casting
              servlet: examples.jdbc.oracle.simpleselect
              java.lang.ClassCastException:
              at
              weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java
              :382)
              at weblogic.servlet.internal.ServletStubImpl.createInstances(Compiled Code)
              at
              weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.jav
              a:338)
              at
              weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:16
              4)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :99)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:742)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:686)
              at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
              Manager.java:247)
              at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:361)
              at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
              at weblogic.kernel.ExecuteThread.run(Compiled Code)
              Wed Jun 28 20:03:56 MDT 2000:<E> <ServletContext-General> Servlet failed
              with Exception
              javax.servlet.ServletException: Servlet class:
              examples.jdbc.oracle.simpleselect does not implement javax.servlet.Servlet
              at
              weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java
              :385)
              at weblogic.servlet.internal.ServletStubImpl.createInstances(Compiled Code)
              at
              weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.jav
              a:338)
              at
              weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:16
              4)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :99)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:742)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:686)
              at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
              Manager.java:247)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
              at weblogic.kernel.ExecuteThread.run(Compiled Code)
              

    Get the TNSNAMES.ORA file of your database and copy it in Discoverer Home (i.e., home where you installed Discoverer Administrator, usually BIToolsHome_1/network/admin). Then login to Discoverer Administrator using a new database user (usually EUL_US) which you might have created as part of installation. Once logged in, it will prompt you to create an EUL. Please follow Discoverer Installation Document.

  • Ping error in RWB for J2SE Adapter Engine

    Hi,
    we have several external J2SE adapter engines and they function great other than from a monitoring perspective. In RWB "Ping Status" I'm getting the following:
    HTTP request failed. Error code: "401". Error message: "Authorization Required"
    Suggestions?
    Cheers,
    Mattias

    <u>This is not an answer to your question.</u>
    I've tried to get an answer for: how to register J2SE adapter with Integration Server ?
    I tried using SLDAccess service on J2SE adapter with no luck (with this J2SE Adapter Engine is registered in the SLD). My J2SE adapter was never available in the configuration means, in the communication channel ex: file adapter, for the adapter engine drop down all I have is Integration Server, my J2SE adapter was never listed there.
    If you know an answer please post.
    thanks
    SKM<u></u>

  • Error starting managed server with JRockit VM

    I getting this error when i start the server with Jrockit VM 3.1 with -Xthinthreads
    option on. The OS is NT. Any clues , please ?
    exception: couldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824) - with nested exception:
    [java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort
    e parameter is incorrect.
    D:\i252\services>runtxnserver
    JRockit build 3.1.4-CROSIS-20020429-1505, Thin Threads, Generational Concurr
    Garbage Collector, started.
    [JRockit] Starting Management Server on port 7090
    Starting WebLogic Server ....
    Connecting to http://ocncat2:7991...
    <May 10, 2002 11:50:59 AM PDT> <Error> <NT Performance Pack> <Problem on fd:
    4', socket: 'weblogic.rjvm.t3.T3JVMConnection@111'
    java.io.IOException: couldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824)
    at weblogic.socket.NTSocketMuxer.registerSockInIoPort(Native Method)
    35c4a
    at weblogic.socket.NTSocketMuxer.register(Compiled Code)@23e34e90
    at weblogic.rjvm.t3.T3JVMConnection.createConnection(Compiled Code)@
    2410
    at weblogic.rjvm.Protocol.createConnection(Compiled Code)@23e321b0
    at weblogic.rjvm.ConnectionManager.findOrCreateConnection(Compiled C
    @23e31b90
    at weblogic.rjvm.ConnectionManager.bootstrap(Compiled Code)@23e315b0
    at weblogic.rjvm.ConnectionManager.bootstrap(Compiled Code)@23e30d00
    at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(Compiled Cod
    3e30810
    at weblogic.rjvm.RJVMManager.findOrCreate(Compiled Code)@23e307b0
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(Compiled Code)@
    0660
    at weblogic.rjvm.RJVMFinder.findOrCreate(Compiled Code)@23e3001c
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(Compiled Code)@23d7fa00
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(C
    led Code)@23d7ec10
    at weblogic.jndi.Environment.getContext(Compiled Code)@23d7e600
    at weblogic.jndi.Environment.getInitialContext(Compiled Code)@23d7e5
    at weblogic.management.Admin.initializeRemoteAdminHome(Compiled Code
    d7db70
    at weblogic.management.Admin.start(Compiled Code)@23d7c060
    at weblogic.t3.srvr.T3Srvr.initialize(Compiled Code)@23590d00
    at weblogic.t3.srvr.T3Srvr.run(Compiled Code)@23590240
    at weblogic.Server.main(Compiled Code)@23590050
    --- End of stack trace
    >
    <May 10, 2002 11:51:00 AM PDT> <Emergency> <Configuration Management> <Error
    tected attempting to connect to admin server at http://ocncat2:7991 during i
    alization of managed server ( null:7551 ). The reported error was: < java.io
    xception: couldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824) > This condition generally results when the managed and
    n servers are using the same listen address and port.>
    <May 10, 2002 11:51:00 AM PDT> <Emergency> <Server> <Unable to initialize th
    rver: 'Fatal initialization exception
    Throwable: weblogic.management.configuration.ConfigurationException: java.io
    xception: couldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824) - with nested exception:
    [java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort
    e parameter is incorrect.
    (error 87, fd 824)]
    java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort:
    parameter is incorrect.
    (error 87, fd 824)
    at weblogic.socket.NTSocketMuxer.register(Compiled Code)@23e34e90
    at weblogic.rjvm.t3.T3JVMConnection.createConnection(Compiled Code)@
    2410
    at weblogic.rjvm.Protocol.createConnection(Compiled Code)@23e321b0
    at weblogic.rjvm.ConnectionManager.findOrCreateConnection(Compiled C
    @23e31b90
    at weblogic.rjvm.ConnectionManager.bootstrap(Compiled Code)@23e315b0
    at weblogic.rjvm.ConnectionManager.bootstrap(Compiled Code)@23e30d00
    at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(Compiled Cod
    3e30810
    at weblogic.rjvm.RJVMManager.findOrCreate(Compiled Code)@23e307b0
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(Compiled Code)@
    0660
    at weblogic.rjvm.RJVMFinder.findOrCreate(Compiled Code)@23e3001c
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(Compiled Code)@23d7fa00
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(C
    led Code)@23d7ec10
    at weblogic.jndi.Environment.getContext(Compiled Code)@23d7e600
    at weblogic.jndi.Environment.getInitialContext(Compiled Code)@23d7e5
    at weblogic.management.Admin.initializeRemoteAdminHome(Compiled Code
    d7db70
    at weblogic.management.Admin.start(Compiled Code)@23d7c060
    at weblogic.t3.srvr.T3Srvr.initialize(Compiled Code)@23590d00
    at weblogic.t3.srvr.T3Srvr.run(Compiled Code)@23590240
    at weblogic.Server.main(Compiled Code)@23590050
    --- End of stack trace
    --------------- nested within: ------------------
    weblogic.management.configuration.ConfigurationException: java.io.IOExceptio
    ouldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824) - with nested exception:
    [java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort
    e parameter is incorrect.
    (error 87, fd 824)]
    at weblogic.management.Admin.initializeRemoteAdminHome(Compiled Code
    d7db70
    at weblogic.management.Admin.start(Compiled Code)@23d7c060
    at weblogic.t3.srvr.T3Srvr.initialize(Compiled Code)@23590d00
    at weblogic.t3.srvr.T3Srvr.run(Compiled Code)@23590240
    at weblogic.Server.main(Compiled Code)@23590050
    --- End of stack trace
    '>
    The WebLogic Server did not start up properly.
    Exception raised: weblogic.management.configuration.ConfigurationException:
    .io.IOException: couldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824) - with nested exception:
    [java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort
    e parameter is incorrect.
    (error 87, fd 824)]
    java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort:
    parameter is incorrect.
    (error 87, fd 824)
    at weblogic.socket.NTSocketMuxer.register(Compiled Code)@23e34e90
    at weblogic.rjvm.t3.T3JVMConnection.createConnection(Compiled Code)@
    2410
    at weblogic.rjvm.Protocol.createConnection(Compiled Code)@23e321b0
    at weblogic.rjvm.ConnectionManager.findOrCreateConnection(Compiled C
    @23e31b90
    at weblogic.rjvm.ConnectionManager.bootstrap(Compiled Code)@23e315b0
    at weblogic.rjvm.ConnectionManager.bootstrap(Compiled Code)@23e30d00
    at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(Compiled Cod
    3e30810
    at weblogic.rjvm.RJVMManager.findOrCreate(Compiled Code)@23e307b0
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(Compiled Code)@
    0660
    at weblogic.rjvm.RJVMFinder.findOrCreate(Compiled Code)@23e3001c
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(Compiled Code)@23d7fa00
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(C
    led Code)@23d7ec10
    at weblogic.jndi.Environment.getContext(Compiled Code)@23d7e600
    at weblogic.jndi.Environment.getInitialContext(Compiled Code)@23d7e5
    at weblogic.management.Admin.initializeRemoteAdminHome(Compiled Code
    d7db70
    at weblogic.management.Admin.start(Compiled Code)@23d7c060
    at weblogic.t3.srvr.T3Srvr.initialize(Compiled Code)@23590d00
    at weblogic.t3.srvr.T3Srvr.run(Compiled Code)@23590240
    at weblogic.Server.main(Compiled Code)@23590050
    --- End of stack trace
    --------------- nested within: ------------------
    weblogic.management.configuration.ConfigurationException: java.io.IOExceptio
    ouldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824) - with nested exception:
    [java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort
    e parameter is incorrect.
    (error 87, fd 824)]
    at weblogic.management.Admin.initializeRemoteAdminHome(Compiled Code
    d7db70
    at weblogic.management.Admin.start(Compiled Code)@23d7c060
    at weblogic.t3.srvr.T3Srvr.initialize(Compiled Code)@23590d00
    at weblogic.t3.srvr.T3Srvr.run(Compiled Code)@23590240
    at weblogic.Server.main(Compiled Code)@23590050
    --- End of stack trace

    I found the solution . The reason for this is that JRockit's High Performance Thread
    System uses asynchrounous I/O "under the hood". Weblogic's Native I/O is also asynchronous.
    The two asynchronous I/O systems clash and the result is the error you see.
    There are two ways around this problem. Either disable JRockit's High Performance
    Thread System (or thinthreads) by using the -Xnativethreads command line flag, or
    disable Weblogic's Native I/O.
    For Weblogic 6.0 and higher, edit the config.xml file. Find the line saying NativeIOEnabled="true"
    and change this to NativeIOEnabled="false".
    For Weblogic 5.1 you edit the file weblogic.properties and change the line weblogic.system.nativeIO.enable=true
    to
    weblogic.system.nativeIO.enable=false
    "Manoj jayadevan" <[email protected]> wrote:
    >
    I getting this error when i start the server with Jrockit VM 3.1 with -Xthinthreads
    option on. The OS is NT. Any clues , please ?
    exception: couldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824) - with nested exception:
    [java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort
    e parameter is incorrect.
    D:\i252\services>runtxnserver
    JRockit build 3.1.4-CROSIS-20020429-1505, Thin Threads, Generational Concurr
    Garbage Collector, started.
    [JRockit] Starting Management Server on port 7090
    Starting WebLogic Server ....
    Connecting to http://ocncat2:7991...
    <May 10, 2002 11:50:59 AM PDT> <Error> <NT Performance Pack> <Problem on
    fd:
    4', socket: 'weblogic.rjvm.t3.T3JVMConnection@111'
    java.io.IOException: couldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824)
    at weblogic.socket.NTSocketMuxer.registerSockInIoPort(Native Method)
    35c4a
    at weblogic.socket.NTSocketMuxer.register(Compiled Code)@23e34e90
    at weblogic.rjvm.t3.T3JVMConnection.createConnection(Compiled Code)@
    2410
    at weblogic.rjvm.Protocol.createConnection(Compiled Code)@23e321b0
    at weblogic.rjvm.ConnectionManager.findOrCreateConnection(Compiled
    C
    @23e31b90
    at weblogic.rjvm.ConnectionManager.bootstrap(Compiled Code)@23e315b0
    at weblogic.rjvm.ConnectionManager.bootstrap(Compiled Code)@23e30d00
    at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(Compiled
    Cod
    3e30810
    at weblogic.rjvm.RJVMManager.findOrCreate(Compiled Code)@23e307b0
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(Compiled Code)@
    0660
    at weblogic.rjvm.RJVMFinder.findOrCreate(Compiled Code)@23e3001c
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(Compiled Code)@23d7fa00
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(C
    led Code)@23d7ec10
    at weblogic.jndi.Environment.getContext(Compiled Code)@23d7e600
    at weblogic.jndi.Environment.getInitialContext(Compiled Code)@23d7e5
    at weblogic.management.Admin.initializeRemoteAdminHome(Compiled
    Code
    d7db70
    at weblogic.management.Admin.start(Compiled Code)@23d7c060
    at weblogic.t3.srvr.T3Srvr.initialize(Compiled Code)@23590d00
    at weblogic.t3.srvr.T3Srvr.run(Compiled Code)@23590240
    at weblogic.Server.main(Compiled Code)@23590050
    --- End of stack trace
    >
    <May 10, 2002 11:51:00 AM PDT> <Emergency> <Configuration Management> <Error
    tected attempting to connect to admin server at http://ocncat2:7991 during
    i
    alization of managed server ( null:7551 ). The reported error was: < java.io
    xception: couldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824) > This condition generally results when the managed
    and
    n servers are using the same listen address and port.>
    <May 10, 2002 11:51:00 AM PDT> <Emergency> <Server> <Unable to initialize
    th
    rver: 'Fatal initialization exception
    Throwable: weblogic.management.configuration.ConfigurationException: java.io
    xception: couldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824) - with nested exception:
    [java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort
    e parameter is incorrect.
    (error 87, fd 824)]
    java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort:
    parameter is incorrect.
    (error 87, fd 824)
    at weblogic.socket.NTSocketMuxer.register(Compiled Code)@23e34e90
    at weblogic.rjvm.t3.T3JVMConnection.createConnection(Compiled Code)@
    2410
    at weblogic.rjvm.Protocol.createConnection(Compiled Code)@23e321b0
    at weblogic.rjvm.ConnectionManager.findOrCreateConnection(Compiled
    C
    @23e31b90
    at weblogic.rjvm.ConnectionManager.bootstrap(Compiled Code)@23e315b0
    at weblogic.rjvm.ConnectionManager.bootstrap(Compiled Code)@23e30d00
    at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(Compiled
    Cod
    3e30810
    at weblogic.rjvm.RJVMManager.findOrCreate(Compiled Code)@23e307b0
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(Compiled Code)@
    0660
    at weblogic.rjvm.RJVMFinder.findOrCreate(Compiled Code)@23e3001c
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(Compiled Code)@23d7fa00
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(C
    led Code)@23d7ec10
    at weblogic.jndi.Environment.getContext(Compiled Code)@23d7e600
    at weblogic.jndi.Environment.getInitialContext(Compiled Code)@23d7e5
    at weblogic.management.Admin.initializeRemoteAdminHome(Compiled
    Code
    d7db70
    at weblogic.management.Admin.start(Compiled Code)@23d7c060
    at weblogic.t3.srvr.T3Srvr.initialize(Compiled Code)@23590d00
    at weblogic.t3.srvr.T3Srvr.run(Compiled Code)@23590240
    at weblogic.Server.main(Compiled Code)@23590050
    --- End of stack trace
    --------------- nested within: ------------------
    weblogic.management.configuration.ConfigurationException: java.io.IOExceptio
    ouldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824) - with nested exception:
    [java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort
    e parameter is incorrect.
    (error 87, fd 824)]
    at weblogic.management.Admin.initializeRemoteAdminHome(Compiled
    Code
    d7db70
    at weblogic.management.Admin.start(Compiled Code)@23d7c060
    at weblogic.t3.srvr.T3Srvr.initialize(Compiled Code)@23590d00
    at weblogic.t3.srvr.T3Srvr.run(Compiled Code)@23590240
    at weblogic.Server.main(Compiled Code)@23590050
    --- End of stack trace
    '>
    The WebLogic Server did not start up properly.
    Exception raised: weblogic.management.configuration.ConfigurationException:
    .io.IOException: couldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824) - with nested exception:
    [java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort
    e parameter is incorrect.
    (error 87, fd 824)]
    java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort:
    parameter is incorrect.
    (error 87, fd 824)
    at weblogic.socket.NTSocketMuxer.register(Compiled Code)@23e34e90
    at weblogic.rjvm.t3.T3JVMConnection.createConnection(Compiled Code)@
    2410
    at weblogic.rjvm.Protocol.createConnection(Compiled Code)@23e321b0
    at weblogic.rjvm.ConnectionManager.findOrCreateConnection(Compiled
    C
    @23e31b90
    at weblogic.rjvm.ConnectionManager.bootstrap(Compiled Code)@23e315b0
    at weblogic.rjvm.ConnectionManager.bootstrap(Compiled Code)@23e30d00
    at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(Compiled
    Cod
    3e30810
    at weblogic.rjvm.RJVMManager.findOrCreate(Compiled Code)@23e307b0
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(Compiled Code)@
    0660
    at weblogic.rjvm.RJVMFinder.findOrCreate(Compiled Code)@23e3001c
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(Compiled Code)@23d7fa00
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(C
    led Code)@23d7ec10
    at weblogic.jndi.Environment.getContext(Compiled Code)@23d7e600
    at weblogic.jndi.Environment.getInitialContext(Compiled Code)@23d7e5
    at weblogic.management.Admin.initializeRemoteAdminHome(Compiled
    Code
    d7db70
    at weblogic.management.Admin.start(Compiled Code)@23d7c060
    at weblogic.t3.srvr.T3Srvr.initialize(Compiled Code)@23590d00
    at weblogic.t3.srvr.T3Srvr.run(Compiled Code)@23590240
    at weblogic.Server.main(Compiled Code)@23590050
    --- End of stack trace
    --------------- nested within: ------------------
    weblogic.management.configuration.ConfigurationException: java.io.IOExceptio
    ouldn't initialize IOPort: The parameter is incorrect.
    (error 87, fd 824) - with nested exception:
    [java.lang.RuntimeException: java.io.IOException: couldn't initialize IOPort
    e parameter is incorrect.
    (error 87, fd 824)]
    at weblogic.management.Admin.initializeRemoteAdminHome(Compiled
    Code
    d7db70
    at weblogic.management.Admin.start(Compiled Code)@23d7c060
    at weblogic.t3.srvr.T3Srvr.initialize(Compiled Code)@23590d00
    at weblogic.t3.srvr.T3Srvr.run(Compiled Code)@23590240
    at weblogic.Server.main(Compiled Code)@23590050
    --- End of stack trace

  • SQLDeveloper tool script execution aborts with Error report: No more data to read from socket

    Hello,
    Strange behaviour of  the SQLdeveloper tool while executing script with typical DDLs like:
    Create Table,
    Alter Table
    Create Trigger ( use of :new and : old attributes in tehe body of trigger ).
    Insert Into....
    Scripts works ok from time to time.
    But sometimes coincidentally aborts with the error :
    Error report:
    No more data to read from socket
    Do not understand where is the problem.
    Scripts works ok when executed in SQL*Plus on server ( where Oracle RDBMS resides ).
    The version of SQLDeveloper is
    Version 3.2.20.09 Build MAIN-09.87
    The version of RDBMS is  11.2.0.2.0 .
    Thanx for any reference or direction or hint for upgrade or experience.
    Greetings,

    Welcome to the forum!
    Please provide the 4 digit Oracle version (result of SELECT * FROM V$VERSION) for the source and target servers; 10g and 11g are not versions. You also mention sql developer so what is the exact version you are using?
    >
    If delete the "OF out_a.ALLOCATION_ID" of the for update clause of CURSOR exist_allocation, this prolbem will not happen, and the code is comple succesfully on sql developer for oracle 10g.
    >
    Please clarify what works and what doesn't work because your statements are both incorrect and misleading.
    You can't delete the "OF out_a.ALLOCATION_ID" of the for update clause or you would get a syntax error by leaving FOR UPDATE OF with nothing specified after it.
    Also you original statement said
    >
    But when compile a package which is fine on oracle 10g
    >
    But now you say that if you delete the "OF..." the problem doesn't happen and the code compiles on 10g.
    Does the original code compile on 10g or not? Does it compile on 11g or not? After the original code is migrated to 11g does it compile? That is, the code is there can you manually compile it?

  • SUP-Error creating Unwired Server Connection connection to MyUnwiredServer

    Hi all,
    I've installed the SUP 1.5.2 and selected the Evaulatiuon (30 day trial) and my Unwired Server cannot start. When i try to test the connection in Enterprise Explorer -> Unwired Servers -> My Unwired Server i get the error.
    com.sybase.uep.admin.client.AdminException: com.sybase.djc.SystemException: Error: Connecting to host: HOSTNAME.DOMAIN_NAME, port: 2000.
         at com.sybase.sup.admin.client.impl.AdminContext.initialize(AdminContext.java:106)
         at com.sybase.sup.admin.client.impl.AdminContext.getInstance(AdminContext.java:40)
         at com.sybase.sup.admin.client.impl.ServerConnectionImpl.<init>(ServerConnectionImpl.java:22)
         at com.sybase.sup.admin.client.impl.ServerConnectionImpl.<init>(ServerConnectionImpl.java:29)
         at com.sybase.uep.admin.client.ServerConnectionManager.ping(ServerConnectionManager.java:191)
         at com.sybase.uep.admin.client.ServerConnectionManager.updateConnectionProperties(ServerConnectionManager.java:98)
         at com.sybase.uep.admin.client.ServerConnectionManager.clusterConnect(ServerConnectionManager.java:68)
         at com.sybase.uep.datasources.uepprofile.UEPServerConnection.<init>(UEPServerConnection.java:59)
         at com.sybase.uep.datasources.uepprofile.UEPConnectionFactory.createConnection(UEPConnectionFactory.java:16)
         at org.eclipse.datatools.connectivity.internal.ConnectionFactoryProvider.createConnection(Unknown Source)
         at org.eclipse.datatools.connectivity.internal.ConnectionProfile.createConnection(Unknown Source)
         at org.eclipse.datatools.connectivity.internal.ManagedConnection.createConnection(Unknown Source)
         at org.eclipse.datatools.connectivity.internal.CreateConnectionJob.run(Unknown Source)
         at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    Caused by: com.sybase.djc.SystemException: Error: Connecting to host: HOSTNAME.DOMAIN_NAME, port: 2000.
         at com.sybase.djc.rmi.iiop.client.Connection.init(Connection.java:619)
         at com.sybase.djc.rmi.iiop.client.Connection.getInstance(Connection.java:65)
         at com.sybase.djc.rmi.iiop.client.ConnectionPool.iiopConnection(ConnectionPool.java:455)
         at com.sybase.djc.rmi.iiop.client.ConnectionPool.newConnection(ConnectionPool.java:410)
         at com.sybase.djc.rmi.iiop.client.ConnectionPool.get(ConnectionPool.java:152)
         at com.sybase.djc.rmi.iiop.client.ConnectionPool_DJC.get(ConnectionPool_DJC.java:30)
         at com.sybase.djc.rmi.iiop.ObjectRef.$connect(ObjectRef.java:275)
         at com.sybase.djc.org.omg.CosNaming.iiop_stubs.NamingContext._is_a(NamingContext.java:60)
         at com.sybase.djc.rmi.iiop.client.ClientNamingContext.init(ClientNamingContext.java:697)
         at com.sybase.djc.rmi.iiop.client.ClientNamingContext.getInstance(ClientNamingContext.java:76)
         at com.sybase.sup.admin.client.impl.AdminContext.initialize(AdminContext.java:99)
         ... 13 more
    Caused by: java.net.ConnectException: Connection refused: connect
         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:366)
         at java.net.Socket.connect(Socket.java:525)
         at java.net.Socket.connect(Socket.java:475)
         at java.net.Socket.<init>(Socket.java:372)
         at java.net.Socket.<init>(Socket.java:186)
         at com.sybase.djc.rmi.iiop.client.Connection.init(Connection.java:607)
         ... 23 more
    When starting  the service manually in Control Panel -> Admin Tools -> Services i get error:
    Could not start the SybaseUnwiredPlatformHOST_NAMEServer1 service.
    All others services has started successfully.
    I assume i'm not able to connect to the unwired server becuase the service is not started and i've got no idea why the service can't start. Can someone give me a direction as to what could be the problem.
    Thank you.

    hi all
    Even I have encountered the same difficulty while configuring the Unwired server connection properties. I am using SUP 2.0
    The ping failed and i got  an exception as..
    com.sybase.uep.admin.client.AdminException: com.sybase.djc.SystemException: Error: Connecting to host: 208.44.114.154, port: 2000.
         at com.sybase.sup.admin.client.impl.AdminContext.initialize(AdminContext.java:89)
         at com.sybase.sup.admin.client.impl.AdminContext.getInstance(AdminContext.java:35)
         at com.sybase.sup.admin.client.impl.ServerConnectionImpl.<init>(ServerConnectionImpl.java:22)
         at com.sybase.sup.admin.client.impl.ServerConnectionImpl.<init>(ServerConnectionImpl.java:29)
         at com.sybase.uep.admin.client.ServerConnectionManager.ping(ServerConnectionManager.java:191)
         at com.sybase.uep.admin.client.ServerConnectionManager.updateConnectionProperties(ServerConnectionManager.java:98)
         at com.sybase.uep.admin.client.ServerConnectionManager.clusterConnect(ServerConnectionManager.java:68)
         at com.sybase.uep.datasources.uepprofile.UEPServerConnection.checkCompatibility(UEPServerConnection.java:88)
         at com.sybase.uep.datasources.uepprofile.UEPServerConnection.<init>(UEPServerConnection.java:58)
         at com.sybase.uep.datasources.uepprofile.UEPConnectionFactory.createConnection(UEPConnectionFactory.java:16)
         at org.eclipse.datatools.connectivity.internal.ConnectionFactoryProvider.createConnection(Unknown Source)
         at org.eclipse.datatools.connectivity.internal.ConnectionProfile.createConnection(Unknown Source)
         at org.eclipse.datatools.connectivity.ui.PingJob.createTestConnection(Unknown Source)
         at org.eclipse.datatools.connectivity.ui.PingJob.run(Unknown Source)
         at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
    Caused by: com.sybase.djc.SystemException: Error: Connecting to host: 208.44.114.154, port: 2000.
         at com.sybase.djc.rmi.iiop.client.Connection.init(Connection.java:619)
         at com.sybase.djc.rmi.iiop.client.Connection.getInstance(Connection.java:65)
         at com.sybase.djc.rmi.iiop.client.ConnectionPool.iiopConnection(ConnectionPool.java:455)
         at com.sybase.djc.rmi.iiop.client.ConnectionPool.newConnection(ConnectionPool.java:410)
         at com.sybase.djc.rmi.iiop.client.ConnectionPool.get(ConnectionPool.java:152)
         at com.sybase.djc.rmi.iiop.client.ConnectionPool_DJC.get(ConnectionPool_DJC.java:30)
         at com.sybase.djc.rmi.iiop.ObjectRef.$connect(ObjectRef.java:275)
         at com.sybase.djc.org.omg.CosNaming.iiop_stubs.NamingContext._is_a(NamingContext.java:60)
         at com.sybase.djc.rmi.iiop.client.ClientNamingContext.init(ClientNamingContext.java:697)
         at com.sybase.djc.rmi.iiop.client.ClientNamingContext.getInstance(ClientNamingContext.java:76)
         at com.sybase.sup.admin.client.impl.AdminContext.initialize(AdminContext.java:82)
         ... 14 more
    Caused by: java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
         at java.net.Socket.connect(Socket.java:529)
         at java.net.Socket.connect(Socket.java:478)
         at java.net.Socket.<init>(Socket.java:375)
         at java.net.Socket.<init>(Socket.java:189)
         at com.sybase.djc.rmi.iiop.client.Connection.init(Connection.java:607)
         ... 24 more
    Please help

  • Java.io.IOException: Error writing to server after installing SP17

    After installing SP17 in production, we are seeing message in AE failing with com.sap.aii.af.ra.ms.api.RecoverableException: java.io.IOException: Error writing to server.
    The messages don't make it to IS and are stuck in AE.
    We've checked pipeline url / sm59 entry for INTEGRATION_DIRECTORY_HMI using user - XIISUSER, we did a full cache refresh.
    They all appear to be set correctly.
    We'll take any ideas and suggestions.
    Thank you.

    Yes...we have been working all night on this. The FM did create an entry but it does no look like its recognising.
    This is what we see in the Adapter messaging tool.
    2006-09-18 13:28:24 Error Returning synchronous error notification to calling application: Received HTTP response code 401 : Unauthorized.
    2006-09-18 13:28:24 Error Transmitting the message using connection http://host:8176/sap/xi/engine?type=entry failed, due to: Received HTTP response code 401 : Unauthorized.
    2006-09-18 13:28:24 Error The message status set to FAIL.
    2006-09-18 13:28:24 Error Returning to application. Exception: Received HTTP response code 401 : Unauthorized
    Any help?

  • Complier error concerning Client Server Application. Error in the server

    Hi I am trying to implement a client server application that will carry out basic calculations. However I am recienving this compiler error within the server class.
    unreported exception java.io.IOException; must be caught or delcared to be thrown.
    The code is pasted below.
    Your help would be much appreciated.
    Kind Regards
    Ridha
    import java.io.*;
    import java.net.*;
    import java.util.Hashtable;
    public class Server
        public static void main(String []args)
            ServerSocket calcServer = null;
            try
                // Create a socket on server
                //ServerSocket ss = new ServerSocket(7);
                calcServer = new ServerSocket(7);
            catch (IOException e)
                System.out.println("Could not listen on port: 7.");
                System.exit(1);
            System.out.println("The Server is Running");
            // When clients connets, make the link and carry on
            Socket clientSocket = null;
            try
             clientSocket = calcServer.accept();
            catch (IOException e)
             System.err.println("Accept Failed");
             System.exit(1);
                // hashtable to manage list of online and offline users
                //Hashtable tOnlineUsers = new Hashtable(10);
                //Hashtable tOfflineUsers = new Hashtable(10);
                // Now start accepting connections from clients in a while loop
                // The server should run in an infinite loop
                 // to get data to and from server
    InputStream in = clientSocket.getInputStream(); < my error is here
                    BufferedReader br = new BufferedReader(new InputStreamReader(in));
                    OutputStream out = clientSocket.getOutputStream();
                    PrintWriter pr = new PrintWriter(out, true);
                while(true)
                    Worker w = new Worker(clientSocket);
                    w.start();
                }   // End of while
            }// End of main()
    }   // End of class

    well, using my superb powers of reasoning and deduction, I can say that this is a lemon entry, watson. the line you kindly highlighted can potentially throw an IOException which you are not dealing with. deal with it

  • OBIEE BI Server Error 500 - Internal Server Error

    Hi,
    When start up bi_server from EM do that without problem, but In browser (http://localhost:9704/analytics) shows:
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.1 500 Internal Server Error
    The server encountered an unexpected condition which prevented it from fulfilling the request.
    In wls console shows:
    <01/06/2014 16h'47 ART> <Error> <Default> <J2EE JMX-46335> <Access attribute MBean denied.  MBean: oracle.as.management.mbeans.register:type=opmnInfoCenter  Getter para el atributo InstanceNames
    Detail: Access denied. Required roles: Admin, Operator, Monitor, executing subject: principals=[] java.lang.SecurityException: Access denied. Required roles: Admin, Operator, Monitor, executing subject: principals=[]
    java.lang.SecurityException: Access denied. Required roles: Admin, Operator, Monitor, executing subject: principals=[]
            at oracle.as.jmx.framework.wls.spi.security.WLSMBeanSecurityHelper.isInWlsGlobalSecurityRoles(WLSMBeanSecurityHelper.java:245)
            at oracle.as.jmx.framework.wls.spi.security.WLSMBeanSecurityHelper.checkRuntimeMBeanDefaultAccess(WLSMBeanSecurityHelper.java:213)
            at oracle.as.jmx.framework.wls.spi.security.WLSRuntimeMBeanSecurityInterceptor.checkDefaultAccess(WLSRuntimeMBeanSecurityInterceptor.java:56)
            at oracle.as.jmx.framework.generic.spi.security.AbstractMBeanSecurityInterceptor.checkAccess(AbstractMBeanSecurityInterceptor.java:335)
            at oracle.as.jmx.framework.generic.spi.security.AbstractMBeanSecurityInterceptor.checkAttributeAccess(AbstractMBeanSecurityInterceptor.java:251)
            at oracle.as.jmx.framework.generic.spi.security.AbstractMBeanSecurityInterceptor.internalGetAttribute(AbstractMBeanSecurityInterceptor.java:126)
            at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doGetAttribute(AbstractMBeanInterceptor.java:86)
            at oracle.security.jps.ee.jmx.JpsJmxInterceptor$GetAttributeDelegator.delegate(JpsJmxInterceptor.java:843)
            at oracle.security.jps.ee.jmx.JpsJmxInterceptor$7.run(JpsJmxInterceptor.java:747)
            at java.security.AccessController.doPrivileged(Native Method)        at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
            at oracle.security.jps.ee.jmx.JpsJmxInterceptor.jpsInternalInvoke(JpsJmxInterceptor.java:768)
            at oracle.security.jps.ee.jmx.JpsJmxInterceptor.internalGetAttribute(JpsJmxInterceptor.java:230)
            at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doGetAttribute(AbstractMBeanInterceptor.java:86)
            at oracle.as.jmx.framework.generic.spi.interceptors.ContextClassLoaderMBeanInterceptor.internalGetAttribute(ContextClassLoaderMBeanInterceptor.java:66)
            at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doGetAttribute(AbstractMBeanInterceptor.java:86)
            at oracle.as.jmx.framework.generic.spi.interceptors.MBeanRestartInterceptor.internalGetAttribute(MBeanRestartInterceptor.java:67)
            at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doGetAttribute(AbstractMBeanInterceptor.java:86)
            at oracle.as.jmx.framework.generic.spi.interceptors.LoggingMBeanInterceptor.internalGetAttribute(LoggingMBeanInterceptor.java:291)
            at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doGetAttribute(AbstractMBeanInterceptor.java:86)
            at oracle.as.jmx.framework.standardmbeans.spi.OracleStandardEmitterMBean.getAttribute(OracleStandardEmitterMBean.java:716)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:666)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:638)
            at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326)
            at java.security.AccessController.doPrivileged(Native Method)
            at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324)
            at weblogic.management.mbeanservers.internal.JMXContextInterceptor.getAttribute(JMXContextInterceptor.java:157)
            at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326)
            at java.security.AccessController.doPrivileged(Native Method)
             at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324)
            at weblogic.management.mbeanservers.internal.SecurityInterceptor.getAttribute(SecurityInterceptor.java:299)
            at weblogic.management.jmx.mbeanserver.WLSMBeanServer.getAttribute(WLSMBeanServer.java:279)
            at oracle.as.jmx.framework.generic.BaseMBeanServerInterceptor.getAttribute(BaseMBeanServerInterceptor.java:185)
            at oracle.dms.opmn.app.OpmnDiscoverer.gatherAddresses(OpmnDiscoverer.java:87)
            at oracle.dms.address.AddressBook$DiscoverAddressTask.call(AddressBook.java:814)
            at oracle.dms.address.AddressBook$DiscoverAddressTask.call(AddressBook.java:786)
            at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
            at java.util.concurrent.FutureTask.run(FutureTask.java:138)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
            at oracle.dms.aggregator.DmsThreadFactory$1$1.run(DmsThreadFactory.java:56)
            at java.security.AccessController.doPrivileged(Native Method)  at oracle.dms.aggregator.DmsThreadFactory$1.run(DmsThreadFactory.java:51)     at java.lang.Thread.run(Thread.java:662)
    >
    Looks like a security problem, a few times asked me user and pass when start wls but never again do that. Now start up without ask me user and password.
    When wls start for first time when was intalled bi_server work fine.
    Thanks

    I solve previus exception but i get new one
    [2014-06-01T18:45:30.816-03:00] [AdminServer] [ERROR] [] [oracle.as.management.mbeans.opmn] [tid: Thread-95] [userId: smartin] [ecid: f7e45c65a7f286c6:73c14de4:146595d311c:-8000-000000000000007a,1:24227] [APP: NonJ2EEManagement] OPMN.queryProcessStatus failed with the following exception[[ oracle.as.management.opmn.optic.OpticBadConnectException: Could not get secure socket for host C3P0 and port 9501 at oracle.as.management.opmn.optic.OpmnSSL.getSecureSocket(OpmnSSL.java:52) at oracle.as.management.opmn.optic.OpmnPhone.dialOpmn(OpmnPhone.java:733) at oracle.as.management.opmn.optic.OpmnPhone.getSocketForCall(OpmnPhone.java:455) at oracle.as.management.opmn.optic.OpmnPhone.makePhoneCall(OpmnPhone.java:315) at oracle.as.management.opmn.optic.OpmnPhone.request(OpmnPhone.java:270) at oracle.as.management.opmn.optic.OpmnQuery.getBuf(OpmnQuery.java:482) at oracle.as.management.opmn.optic.OpmnQuery.getDom(OpmnQuery.java:602) at oracle.as.management.opmn.optic.OpmnQuery.getProc(OpmnQuery.java:750) at oracle.as.management.mbeans.opmn.Opmn.queryProcessStatus(Opmn.java:328) at oracle.as.management.mbeans.opmn.Opmn.getStatus(Opmn.java:85) at oracle.as.management.mbeans.opmn.Opmn.getStatus(Opmn.java:75) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:93) at com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:27) at com.sun.jmx.mbeanserver.MBeanIntrospector.invokeM(MBeanIntrospector.java:208) at com.sun.jmx.mbeanserver.PerInterface.getAttribute(PerInterface.java:65) at com.sun.jmx.mbeanserver.MBeanSupport.getAttribute(MBeanSupport.java:216) at javax.management.StandardMBean.getAttribute(StandardMBean.java:358) at oracle.as.jmx.framework.standardmbeans.spi.OracleStandardEmitterMBean.doGetAttribute(OracleStandardEmitterMBean.java:737) at oracle.adf.mbean.share.AdfMBeanInterceptor.internalGetAttribute(AdfMBeanInterceptor.java:72) at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doGetAttribute(AbstractMBeanInterceptor.java:86) at oracle.as.jmx.framework.generic.spi.security.AbstractMBeanSecurityInterceptor.internalGetAttribute(AbstractMBeanSecurityInterceptor.java:127) at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doGetAttribute(AbstractMBeanInterceptor.java:86) at oracle.security.jps.ee.jmx.JpsJmxInterceptor$GetAttributeDelegator.delegate(JpsJmxInterceptor.java:843) at oracle.security.jps.ee.jmx.JpsJmxInterceptor$7.run(JpsJmxInterceptor.java:747) at java.security.AccessController.doPrivileged(Native Method) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.jmx.JpsJmxInterceptor.jpsInternalInvoke(JpsJmxInterceptor.java:768) at oracle.security.jps.ee.jmx.JpsJmxInterceptor.internalGetAttribute(JpsJmxInterceptor.java:230) at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doGetAttribute(AbstractMBeanInterceptor.java:86) at oracle.as.jmx.framework.generic.spi.interceptors.ContextClassLoaderMBeanInterceptor.internalGetAttribute(ContextClassLoaderMBeanInterceptor.java:66) at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doGetAttribute(AbstractMBeanInterceptor.java:86) at oracle.as.jmx.framework.generic.spi.interceptors.MBeanRestartInterceptor.internalGetAttribute(MBeanRestartInterceptor.java:67) at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doGetAttribute(AbstractMBeanInterceptor.java:86) at oracle.as.jmx.framework.generic.spi.interceptors.LoggingMBeanInterceptor.internalGetAttribute(LoggingMBeanInterceptor.java:291) at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doGetAttribute(AbstractMBeanInterceptor.java:86) at oracle.as.jmx.framework.standardmbeans.spi.OracleStandardEmitterMBean.getAttribute(OracleStandardEmitterMBean.java:716) at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:666) at com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:638) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324) at weblogic.management.mbeanservers.internal.JMXContextInterceptor.getAttribute(JMXContextInterceptor.java:157) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324) at weblogic.management.mbeanservers.internal.SecurityInterceptor.getAttribute(SecurityInterceptor.java:299) at weblogic.management.jmx.mbeanserver.WLSMBeanServer.getAttribute(WLSMBeanServer.java:279) at weblogic.management.mbeanservers.domainruntime.internal.ManagedMBeanServerConnection.getAttribute(ManagedMBeanServerConnection.java:304) at weblogic.management.mbeanservers.domainruntime.internal.FederatedMBeanServerInterceptor.getAttribute(FederatedMBeanServerInterceptor.java:308) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324) at weblogic.management.mbeanservers.internal.JMXContextInterceptor.getAttribute(JMXContextInterceptor.java:157) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324) at weblogic.management.mbeanservers.internal.SecurityInterceptor.getAttribute(SecurityInterceptor.java:299) at weblogic.management.jmx.mbeanserver.WLSMBeanServer.getAttribute(WLSMBeanServer.java:279) at oracle.as.jmx.framework.generic.BaseMBeanServerInterceptor.getAttribute(BaseMBeanServerInterceptor.java:185) at oracle.bi.management.adminservices.opmn.OpmnProcessController._isOpmnRunningWithProcesses(OpmnProcessController.java:636) at oracle.bi.management.adminservices.opmn.OpmnProcessController.startThreadProcesses(OpmnProcessController.java:304) at oracle.bi.management.adminservices.opmn.OpmnProcessController.startAll(OpmnProcessController.java:220) at oracle.bi.management.adminservices.model.impl.ProcessManagerProxyImpl.startAll(ProcessManagerProxyImpl.java:144) at oracle.bi.management.adminservices.mbeans.impl.BIInstanceMBeanImpl.startSystemComponents(BIInstanceMBeanImpl.java:409) at oracle.bi.management.adminservices.mbeans.impl.BIInstanceMBeanImpl.localStart(BIInstanceMBeanImpl.java:307) at oracle.bi.management.adminservices.mbeans.impl.BIInstanceMBeanImpl.start(BIInstanceMBeanImpl.java:246) at oracle.bi.management.adminservices.mbeans.impl.BIInstanceMBeanImpl.start(BIInstanceMBeanImpl.java:284) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at oracle.as.jmx.framework.standardmbeans.spi.OracleStandardEmitterMBean.doInvoke(OracleStandardEmitterMBean.java:1012) at oracle.adf.mbean.share.AdfMBeanInterceptor.internalInvoke(AdfMBeanInterceptor.java:104) at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doInvoke(AbstractMBeanInterceptor.java:252) at oracle.as.jmx.framework.generic.spi.security.AbstractMBeanSecurityInterceptor.internalInvoke(AbstractMBeanSecurityInterceptor.java:190) at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doInvoke(AbstractMBeanInterceptor.java:252) at oracle.security.jps.ee.jmx.JpsJmxInterceptor$2.run(JpsJmxInterceptor.java:358) at java.security.AccessController.doPrivileged(Native Method) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.jmx.JpsJmxInterceptor.internalInvoke(JpsJmxInterceptor.java:374) at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doInvoke(AbstractMBeanInterceptor.java:252) at oracle.as.jmx.framework.generic.spi.interceptors.ContextClassLoaderMBeanInterceptor.internalInvoke(ContextClassLoaderMBeanInterceptor.java:103) at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doInvoke(AbstractMBeanInterceptor.java:252) at oracle.as.jmx.framework.generic.spi.interceptors.MBeanRestartInterceptor.internalInvoke(MBeanRestartInterceptor.java:116) at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doInvoke(AbstractMBeanInterceptor.java:252) at oracle.as.jmx.framework.generic.spi.interceptors.LoggingMBeanInterceptor.internalInvoke(LoggingMBeanInterceptor.java:524) at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doInvoke(AbstractMBeanInterceptor.java:252) at oracle.as.jmx.framework.standardmbeans.spi.OracleStandardEmitterMBean.invoke(OracleStandardEmitterMBean.java:924) at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:836) at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:761) at weblogic.management.mbeanservers.domainruntime.internal.FederatedMBeanServerInterceptor.invoke(FederatedMBeanServerInterceptor.java:349) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447) at weblogic.management.mbeanservers.internal.JMXContextInterceptor.invoke(JMXContextInterceptor.java:263) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447) at weblogic.management.mbeanservers.internal.SecurityMBeanMgmtOpsInterceptor.invoke(SecurityMBeanMgmtOpsInterceptor.java:65) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447) at weblogic.management.mbeanservers.internal.SecurityInterceptor.invoke(SecurityInterceptor.java:444) at weblogic.management.jmx.mbeanserver.WLSMBeanServer.invoke(WLSMBeanServer.java:323) at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11$1.run(JMXConnectorSubjectForwarder.java:663) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11.run(JMXConnectorSubjectForwarder.java:661) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363) at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder.invoke(JMXConnectorSubjectForwarder.java:654) at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1427) at javax.management.remote.rmi.RMIConnectionImpl.access$200(RMIConnectionImpl.java:72) at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1265) at java.security.AccessController.doPrivileged(Native Method) at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1367) at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:788) at javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source) at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174) at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:222) at javax.management.remote.rmi.RMIConnectionImpl_1035_WLStub.invoke(Unknown Source) at javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection.invoke(RMIConnector.java:993) at weblogic.management.remote.wlx.ClientProvider$WLXMBeanServerConnectionWrapper.invoke(ClientProvider.java:291) at weblogic.management.remote.wlx.ClientProvider$WLXMBeanServerConnectionWrapper.invoke(ClientProvider.java:291) at oracle.sysman.emai.model.bi.impl.JmxUtil.invokeMethod(JmxUtil.java:184) at oracle.sysman.emai.model.bi.impl.InstanceMBeanHelper.start(InstanceMBeanHelper.java:126) at oracle.sysman.emai.model.bi.impl.InstanceModelAdaptor.start(InstanceModelAdaptor.java:319) at oracle.sysman.emai.view.bi.SystemStartStopView.start(SystemStartStopView.java:46) at oracle.sysman.emai.view.bi.AvailabilityView.startAllComponents(AvailabilityView.java:255) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at oracle.sysman.emas.sdk.progress.WorkWrapper.run(WorkWrapper.java:96) at java.lang.Thread.run(Thread.java:662) Caused by: java.net.ConnectException: Connection refused: connect at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351) at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213) at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366) at java.net.Socket.connect(Socket.java:529) at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:564) at com.sun.net.ssl.internal.ssl.SSLSocketImpl.(SSLSocketImpl.java:365) at com.sun.net.ssl.internal.ssl.SSLSocketFactoryImpl.createSocket(SSLSocketFactoryImpl.java:71) at oracle.as.management.opmn.optic.OpmnSSL.getSecureSocket(OpmnSSL.java:48) ... 141 more

Maybe you are looking for

  • Calling Glassfish jdbc Datasorce in EJB 3.0 with @Resource annotation.

    I tried EJB 3.0 with netbeans and glassfish and "{color:#ff0000}+_ORACLE_+{color}". I wanted to link the oracle database to GLASSFISH server and I followed the instructions.After I clicked 'ping' button, it displayed as *{color:#339966}'PING SUCCEED"

  • MacBook Pro/Thunderbolt Monitor blanking out

    I have a MacBook Pro with 2 Thunderbolt monitors.  My system is connected up like this: MacBook Pro (running in clamshell mode) -------> Thunderbolt Port on MBP -------> Thunderbolt Display ------> Built in Display Thunderbolt Cable ------>Thunderbol

  • Uploading Product category from csv file

    Hi Experts, I have a csv file contianing the product categories. I have to upload that product category to the standalone SRM system. How can i achieve the same? Please help. Thanks in Advance. Regards, Prashant

  • Information on 10G 10.2.0.1  64bit on Windows

    Thanks for taking my questions! Our campus is moving to peoplesoft and I was just asked to have a 64bit version of Oracle 10g up and running by June 6th. This database is just a demo db and this maybe just another install - I'm not sure. The problem

  • BPML for IS-Media

    Hi Experts We are trying to use Business Process Master List for SAP IS-Media. When checking this link https://implementationcontent.sap.com/bpr ,able to see things but when trying to open Display document ,nothing is opening up in Business Process n